From d749e8504562b03d21c2c9b7664e0f085ad103c8 Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Tue, 24 Feb 2026 10:41:47 +0100 Subject: [PATCH 01/57] code: initial changes to run_solver.py to include hipo --- runner/run_solver.py | 354 ++++++++++++++++++------------------------- 1 file changed, 145 insertions(+), 209 deletions(-) diff --git a/runner/run_solver.py b/runner/run_solver.py index 8d0c7547..10f1502a 100644 --- a/runner/run_solver.py +++ b/runner/run_solver.py @@ -1,6 +1,6 @@ import collections.abc import json -import os +import tempfile import subprocess import sys import time @@ -9,17 +9,27 @@ from time import perf_counter from traceback import format_exc +import linopy import pandas as pd -from linopy import solvers -from linopy.solvers import SolverName +from linopy.solvers import SolverName, Highs +import logging + +logger = logging.getLogger(__name__) + +# HiGHS is not available in the 2020 environment that we use to run GLPK +try: + import highspy +except ModuleNotFoundError: + highspy = None class HighsVariant(str, Enum): - HIPO = "highs-hipo" - HIPO_32 = "highs-hipo-32" - HIPO_64 = "highs-hipo-64" - HIPO_128 = "highs-hipo-128" - HIPO_IPM = "highs-ipm" + HIPO = "hipo" + HIPO_32 = "hipo-32" + HIPO_64 = "hipo-64" + HIPO_128 = "hipo-128" + IPM = "ipm" + SIMPLEX = "simplex" # cli args returns a list of command line arguments for the HiGHS binary. def cli_args(self) -> collections.abc.Iterable[str]: @@ -49,19 +59,26 @@ def options(self) -> str: return "\n".join(f"{k} = {v}" for k, v in options.items()) -# HiGHS is not available in the 2020 environment that we use to run GLPK -try: - import highspy -except ModuleNotFoundError: - highspy = None - - -def get_solver(solver_name): - solver_name = solver_name.lower() - solver_enum = SolverName(solver_name) - - solver_class = getattr(solvers, solver_enum.name) - +def set_seed_options(name_of_solver: str) -> dict[str, int | float]: + """ + Sets solver-specific seed and tolerance options for reproducibility. + + This function returns a dictionary of solver configuration parameters that + control random seed initialization and MIP (Mixed-Integer Programming) gap + tolerance. + + Parameters + ---------- + name_of_solver : str + Name of the optimization solver. Supported solvers include: "highs", + "glpk", "gurobi", "scip", "cbc", "cplex", "knitro", and "xpress". + + Returns + ------- + dict[str, int | float] + A dictionary mapping solver-specific parameter names to their values. + Returns an empty dictionary if the solver name is not recognized. + """ mip_gap = 1e-4 # Tolerance for the relative duality gap for MILPs seed_options = { "highs": {"random_seed": 0, "mip_rel_gap": mip_gap}, @@ -81,39 +98,98 @@ def get_solver(solver_name): }, "xpress": {"miprelgapnotify": mip_gap, "randomseed": 0}, } + if name_of_solver in seed_options.keys(): + return seed_options[name_of_solver] + else: + logger.info("No seed options found for solver '%s'. Returning empty options.", name_of_solver) + return dict() + + +def set_solver_options(name_of_solver: str, variant_highs: str | None) -> dict[str, int | float]: + """ + Sets solver-specific options for reproducibility. + + This function returns a dictionary of solver configuration parameters that + control specific solver behaviors, such as the block size for HiGHS variants. + + Parameters + ---------- + name_of_solver : str + Name of the optimization solver. Supported solvers include: "highs", + "glpk", "gurobi", "scip", "cbc", "cplex", "knitro", and "xpress". + variant_highs : str | None + Additional information about the solver type, used to determine specific options for HiGHS variants. + + Returns + ------- + dict[str, int | float] + A dictionary mapping solver-specific parameter names to their values. + Returns an empty dictionary if the solver name is not recognized. + """ + + if name_of_solver == "highs": + if variant_highs and "hipo" in variant_highs: + + return set_solver_options(name_of_solver, variant_highs) + else: + return dict() + + + options = { + "highs-hipo-32": {"hipo_block_size": 32}, + "highs-hipo-64": {"hipo_block_size": 64}, + "highs-hipo-128": {"hipo_block_size": 128}, + } + if name_of_solver in options.keys(): + return options[name_of_solver] + else: + logger.info("No specific options found for solver '%s'. Returning empty options.", name_of_solver) + return dict() + + +def get_solver(name_solver: str, variant_highs: str) -> linopy.solvers: + solver_enum = SolverName(name_solver) + + solver_class = getattr(linopy.solvers, solver_enum.name) + + # Get seed options + seed_options = set_seed_options(name_solver) - return solver_class(**seed_options.get(solver_name, {})) + # Get other solver options if needed (e.g., for HiGHS variants) + solver_options = set_solver_options(name_solver, variant_highs) + return solver_class(**seed_options, **solver_options) -def is_mip_problem(solver_model, solver_name): + +def is_mip_problem(solver_model, name_solver: str) -> bool: """ Determines if a given solver model is a Mixed Integer Programming (MIP) problem. """ - if solver_name == "scip": + if name_solver == "scip": if solver_model.getNIntVars() > 0 or solver_model.getNBinVars() > 0: return True return False - elif solver_name == "gurobi": + elif name_solver == "gurobi": return solver_model.IsMIP - elif solver_name == "highs": + elif name_solver == "highs": info = solver_model.getInfo() return info.mip_node_count >= 0 - elif solver_name == "cplex": + elif name_solver == "cplex": # Check if any variables are integer or binary var_types = solver_model.variables.get_types() return any(t in ("I", "B") for t in var_types) - elif solver_name == "xpress": + elif name_solver == "xpress": return solver_model.getAttrib("mipents") > 0 - elif solver_name in {"glpk", "cbc"}: + elif name_solver in {"glpk", "cbc"}: # These solvers do not provide a solver model in the solver result, # so MIP problem detection is not possible. # TODO preprocess benchmarks and add this info to metadata return False - elif solver_name == "knitro": + elif name_solver == "knitro": # Knitro is not designed for MILP problems return False else: - raise NotImplementedError(f"The solver '{solver_name}' is not supported.") + raise NotImplementedError(f"The solver '{name_solver}' is not supported.") def calculate_integrality_violation( @@ -129,28 +205,28 @@ def calculate_integrality_violation( return max((p - p.round()).abs()) -def get_duality_gap(solver_model, solver_name: str): +def get_duality_gap(solver_model, name_solver: str): """Retrieve the duality gap for the given solver model, if available.""" - if solver_name == "scip": + if name_solver == "scip": return solver_model.getGap() - elif solver_name == "gurobi": + elif name_solver == "gurobi": return solver_model.MIPGap - elif solver_name == "highs": + elif name_solver == "highs": return getattr(solver_model.getInfo(), "mip_gap", None) - elif solver_name == "cbc": + elif name_solver == "cbc": return getattr(solver_model, "mip_gap", None) - elif solver_name == "glpk": + elif name_solver == "glpk": # GLPK does not have a way to retrieve the duality gap from python return None - elif solver_name == "cplex": + elif name_solver == "cplex": return solver_model.solution.MIP.get_mip_relative_gap() - elif solver_name == "xpress": + elif name_solver == "xpress": return solver_model.controls.miprelgapnotify - elif solver_name == "knitro": + elif name_solver == "knitro": # Knitro duality gap retrieval not implemented yet return None else: - raise NotImplementedError(f"The solver '{solver_name}' is not supported.") + raise NotImplementedError(f"The solver '{name_solver}' is not supported.") def get_milp_metrics(input_file, solver_result): @@ -206,184 +282,34 @@ def get_reported_runtime(solver_name, solver_model) -> float | None: return None -def run_highs_hipo_solver(input_file, solver_version, highs_variant: HighsVariant): +def run_highs_solver(input_fn: str, solution_fn: Path, highs_variant: HighsVariant) -> None: """ - Run the HiGHS-HiPO solver directly using the binary with variant-specific arguments + Run the HiGHS solver, differentiating between IPX and HiPO """ - import tempfile - - # check if we are root - if os.getuid() == 0: - # VM path - highs_hipo_binary = "/opt/highs-hipo-workspace/HiGHS/build/bin/highs" - else: - highs_hipo_binary = f"{os.getenv('HOME')}/oet/solver-benchmark/highs-installs/highs-hipo-workspace/HiGHS/build/bin/highs" - - solution_dir = Path(__file__).parent / "solutions" - solution_dir.mkdir(parents=True, exist_ok=True) - logs_dir = Path(__file__).parent / "logs" - logs_dir.mkdir(parents=True, exist_ok=True) - - output_filename = f"{Path(input_file).stem}-{solver_name}-{solver_version}" - solution_fn = solution_dir / f"{output_filename}.sol" - log_fn = logs_dir / f"{output_filename}.log" - - try: + if "hipo" in highs_variant.value.casefold(): + # Running HiPO variant of HiGHS with tempfile.NamedTemporaryFile( - mode="w", - prefix=highs_variant.value, - suffix=".options", - delete=False, - delete_on_close=False, + mode="w", + prefix=highs_variant.value, + suffix=".options", + delete=False, + delete_on_close=False, ) as options_file: options_file.write(highs_variant.options()) options_file.flush() - solver_args = list(highs_variant.cli_args()) - solver_args.append(f"--options_file={options_file.name}") - - command = [ - highs_hipo_binary, - *solver_args, - str(Path(input_file).resolve()), - f"--solution_file={solution_fn}", - ] - - # Run the command and capture the output - start_time = time.perf_counter() - try: - print(f"running command {command}") - result = subprocess.run( - command, - capture_output=True, - text=True, - check=False, - encoding="utf-8", - ) - runtime = time.perf_counter() - start_time - - # Write stdout and stderr to log file - with open(log_fn, "w") as f: - f.write(f"Command: {' '.join(command)}\n") - f.write(f"Return code: {result.returncode}\n\n") - f.write("STDOUT:\n") - f.write(result.stdout) - f.write("\n\nSTDERR:\n") - f.write(result.stderr) - - if result.returncode != 0: - return { - "runtime": runtime, - "reported_runtime": runtime, - "status": "ER", - "condition": "Error", - "objective": None, - "duality_gap": None, - "max_integrality_violation": None, - } - else: - # Parse HiGHS output to extract objective value - objective = None - model_status = "ER" - for line in reversed(result.stdout.splitlines()): - if objective is None: - # Old format: - if "Objective value" in line and ":" in line: - try: - objective = float(line.split(":")[-1].strip()) - except (ValueError, IndexError): - pass - # New format: " - elif "(objective)" in line: - try: - objective = float(line.split("(objective)")[0].strip()) - except (ValueError, IndexError): - pass - - if model_status == "ER": - # Old format: - if "Model status" in line and ":" in line: - try: - model_status = line.split(":")[-1].strip() - except (ValueError, IndexError): - pass - # New format: - elif line.strip().startswith("Status") and ":" not in line: - try: - parts = line.split() - if len(parts) >= 2: - status_value = parts[-1] - if status_value in [ - "Optimal", - "Infeasible", - "Unbounded", - ]: - model_status = status_value - except (ValueError, IndexError): - pass - - # Break early once we've found both values - if objective is not None and model_status != "ER": - break - - if objective is not None and model_status in ["Optimal", "Infeasible"]: - status = "ok" - else: - status = "warning" - - return { - "runtime": runtime, - "reported_runtime": runtime, - "status": status, - # Model status : Optimal - "condition": model_status, - "objective": objective, - "duality_gap": None, # Not available from command line output - "max_integrality_violation": None, # Not available from command line output - } - except Exception as e: - runtime = time.perf_counter() - start_time - # Write error to log file - with open(log_fn, "w") as f: - f.write(f"Command: {' '.join(command)}\n") - f.write(f"Exception: {str(e)}\n") - - return { - "runtime": runtime, - "reported_runtime": runtime, - "status": "error", - "condition": "Error", - "objective": None, - "duality_gap": None, - "max_integrality_violation": None, - } - finally: - pass - # Clean up temporary options file - # if options_file is not None: - # try: - # os.unlink(options_file.name) - # except OSError: - # pass + solver_args = list(highs_variant.cli_args()) + solver_args.append(f"--options_file={options_file.name}") + solver_args.append(f"--solution_file={solution_fn}") + + solver = Highs() -def main(solver_name, input_file, solver_version): +def main(solver_name, input_file, solver_version, highs_solver_variant: str) -> None: problem_file = Path(input_file) - # Handle highs-hipo solver variants separately - try: - highs_variant = HighsVariant(solver_name.lower()) - results = run_highs_hipo_solver(input_file, solver_version, highs_variant) - print(json.dumps(results)) - return - except ValueError as e: - # re-raise the error if it isn't expected. - # we want to continue only if the error is about invalid HighsVariant - if "is not a valid HighsVariant" not in str(e): - raise e - - solver = get_solver(solver_name) + solver = get_solver(solver_name, highs_solver_variant) solution_dir = Path(__file__).parent / "solutions" solution_dir.mkdir(parents=True, exist_ok=True) @@ -439,7 +365,17 @@ def main(solver_name, input_file, solver_version): print("Usage: python run_solver.py ") sys.exit(1) - solver_name = sys.argv[1] + solver_name = sys.argv[1].casefold() input_file = sys.argv[2] solver_version = sys.argv[3] - main(solver_name, input_file, solver_version) + + # If the solver is HiGHS, we need to ask the user for the variant they want to run + highs_solver_variant: str = "" + if solver_name == "highs": + print("Available HiGHS variants:", ", ".join([v.value for v in HighsVariant])) + highs_solver_variant = input("Please enter a HiGHS variant: ").strip().casefold() + if highs_solver_variant not in [v.value for v in HighsVariant]: + print(f"Invalid HiGHS variant: {highs_solver_variant}") + sys.exit(1) + + main(solver_name, input_file, solver_version, highs_solver_variant) From 10d7dbda94ec386fbcfdb1d4371a348d356c724e Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Tue, 24 Feb 2026 12:55:13 +0100 Subject: [PATCH 02/57] code: new set_solver_options --- runner/run_solver.py | 42 ++++++++++++++++++++---------------------- 1 file changed, 20 insertions(+), 22 deletions(-) diff --git a/runner/run_solver.py b/runner/run_solver.py index 10f1502a..f553730b 100644 --- a/runner/run_solver.py +++ b/runner/run_solver.py @@ -1,9 +1,7 @@ import collections.abc import json import tempfile -import subprocess import sys -import time from enum import Enum from pathlib import Path from time import perf_counter @@ -24,12 +22,11 @@ class HighsVariant(str, Enum): - HIPO = "hipo" + IPX = "ipx" + SIMPLEX = "simplex" HIPO_32 = "hipo-32" HIPO_64 = "hipo-64" HIPO_128 = "hipo-128" - IPM = "ipm" - SIMPLEX = "simplex" # cli args returns a list of command line arguments for the HiGHS binary. def cli_args(self) -> collections.abc.Iterable[str]: @@ -105,7 +102,7 @@ def set_seed_options(name_of_solver: str) -> dict[str, int | float]: return dict() -def set_solver_options(name_of_solver: str, variant_highs: str | None) -> dict[str, int | float]: +def set_solver_options(name_solver: str, variant_highs: str | None) -> dict[str, int | str]: """ Sets solver-specific options for reproducibility. @@ -114,7 +111,7 @@ def set_solver_options(name_of_solver: str, variant_highs: str | None) -> dict[s Parameters ---------- - name_of_solver : str + name_solver : str Name of the optimization solver. Supported solvers include: "highs", "glpk", "gurobi", "scip", "cbc", "cplex", "knitro", and "xpress". variant_highs : str | None @@ -122,28 +119,29 @@ def set_solver_options(name_of_solver: str, variant_highs: str | None) -> dict[s Returns ------- - dict[str, int | float] + dict[str, int | str] A dictionary mapping solver-specific parameter names to their values. Returns an empty dictionary if the solver name is not recognized. """ - if name_of_solver == "highs": - if variant_highs and "hipo" in variant_highs: - - return set_solver_options(name_of_solver, variant_highs) + if name_solver == "highs": + if "hipo" in variant_highs: + if variant_highs == HighsVariant.HIPO_32: + return {"hipo_block_size": 64, "solver": "hipo"} + elif variant_highs == HighsVariant.HIPO_64: + return {"hipo_block_size": 64, "solver": "hipo"} + elif variant_highs == HighsVariant.HIPO_128: + return {"hipo_block_size": 128, "solver": "hipo"} + else: + logger.info("No specific options found for HiGHS variant '%s'. Returning default options.") + return {"hipo_block_size": 64, "solver": "hipo"} + elif variant_highs == HighsVariant.IPX or variant_highs == HighsVariant.SIMPLEX: + return {"solver": variant_highs} else: + logger.info("No specific options found for HiGHS variant '%s'. Returning empty options.", variant_highs) return dict() - - - options = { - "highs-hipo-32": {"hipo_block_size": 32}, - "highs-hipo-64": {"hipo_block_size": 64}, - "highs-hipo-128": {"hipo_block_size": 128}, - } - if name_of_solver in options.keys(): - return options[name_of_solver] else: - logger.info("No specific options found for solver '%s'. Returning empty options.", name_of_solver) + logger.info("No specific options found for solver '%s'. Returning empty options.", name_solver) return dict() From 0fa9a434f5cd76bcd60fbc9f4ebe1249388446d1 Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Tue, 24 Feb 2026 14:35:12 +0100 Subject: [PATCH 03/57] code: new changes for run_solver.py --- runner/run_benchmarks.py | 2 +- runner/run_solver.py | 386 ++++++++++++++++++++++----------------- runner/utils.py | 37 ++++ 3 files changed, 258 insertions(+), 167 deletions(-) diff --git a/runner/run_benchmarks.py b/runner/run_benchmarks.py index e04cee15..b328b4e2 100644 --- a/runner/run_benchmarks.py +++ b/runner/run_benchmarks.py @@ -16,7 +16,7 @@ import psutil import requests import yaml -from run_solver import HighsVariant +from utils import HighsVariant def get_conda_package_versions(solvers, env_name=None): diff --git a/runner/run_solver.py b/runner/run_solver.py index f553730b..6564e7ca 100644 --- a/runner/run_solver.py +++ b/runner/run_solver.py @@ -1,15 +1,14 @@ -import collections.abc +import argparse import json -import tempfile -import sys from enum import Enum from pathlib import Path from time import perf_counter from traceback import format_exc +from typing import Any import linopy import pandas as pd -from linopy.solvers import SolverName, Highs +from linopy.solvers import SolverName import logging logger = logging.getLogger(__name__) @@ -20,40 +19,25 @@ except ModuleNotFoundError: highspy = None +SUPPORTED_SOLVERS = ["highs", "glpk", "gurobi", "scip", "cbc", "cplex", "knitro", "xpress"] -class HighsVariant(str, Enum): + +class HighsSolverVariant(str, Enum): + """ + Enumeration of supported HiGHS solver variants. + + Attributes + ---------- + IPX : str + Interior Point Solver (IPX) variant of HiGHS. + SIMPLEX : str + Simplex variant of HiGHS. + HIPO : str + HiPO variant of HiGHS. + """ IPX = "ipx" SIMPLEX = "simplex" - HIPO_32 = "hipo-32" - HIPO_64 = "hipo-64" - HIPO_128 = "hipo-128" - - # cli args returns a list of command line arguments for the HiGHS binary. - def cli_args(self) -> collections.abc.Iterable[str]: - args = { - "solver": "hipo", - "run_crossover": "choose", - } - if self == HighsVariant.HIPO_IPM: - args["solver"] = "ipx" - - return [f"--{k}={v}" for k, v in args.items()] - - # options returns the contents for the HiGHS options file. - # passed to the HiGHS binary via --options_file= - def options(self) -> str: - options = {} - match self: - case HighsVariant.HIPO_32: - options["hipo_block_size"] = 32 - case HighsVariant.HIPO_64: - options["hipo_block_size"] = 64 - case HighsVariant.HIPO_128: - options["hipo_block_size"] = 128 - case HighsVariant.HIPO: - options["hipo_block_size"] = 64 - options["hipo_metis_no2hop"] = "true" - return "\n".join(f"{k} = {v}" for k, v in options.items()) + HIPO = "hipo" def set_seed_options(name_of_solver: str) -> dict[str, int | float]: @@ -102,7 +86,7 @@ def set_seed_options(name_of_solver: str) -> dict[str, int | float]: return dict() -def set_solver_options(name_solver: str, variant_highs: str | None) -> dict[str, int | str]: +def set_solver_options(name_solver: str, variant_highs: str, hipo_block_size_value: int) -> dict[str, int | str]: """ Sets solver-specific options for reproducibility. @@ -114,8 +98,10 @@ def set_solver_options(name_solver: str, variant_highs: str | None) -> dict[str, name_solver : str Name of the optimization solver. Supported solvers include: "highs", "glpk", "gurobi", "scip", "cbc", "cplex", "knitro", and "xpress". - variant_highs : str | None - Additional information about the solver type, used to determine specific options for HiGHS variants. + variant_highs : str + Solver type, used to determine specific options for HiGHS variants. + hipo_block_size_value : int + Block size value for HiPO variant of HiGHS. This parameter is only relevant if the solver is HiGHS and the variant is a HiPO variant. Returns ------- @@ -125,27 +111,33 @@ def set_solver_options(name_solver: str, variant_highs: str | None) -> dict[str, """ if name_solver == "highs": - if "hipo" in variant_highs: - if variant_highs == HighsVariant.HIPO_32: - return {"hipo_block_size": 64, "solver": "hipo"} - elif variant_highs == HighsVariant.HIPO_64: - return {"hipo_block_size": 64, "solver": "hipo"} - elif variant_highs == HighsVariant.HIPO_128: - return {"hipo_block_size": 128, "solver": "hipo"} - else: - logger.info("No specific options found for HiGHS variant '%s'. Returning default options.") - return {"hipo_block_size": 64, "solver": "hipo"} - elif variant_highs == HighsVariant.IPX or variant_highs == HighsVariant.SIMPLEX: + if variant_highs == HighsSolverVariant.HIPO: + return {"hipo_block_size": hipo_block_size_value, "solver": "hipo"} + elif variant_highs == HighsSolverVariant.IPX or variant_highs == HighsSolverVariant.SIMPLEX: return {"solver": variant_highs} - else: - logger.info("No specific options found for HiGHS variant '%s'. Returning empty options.", variant_highs) - return dict() else: logger.info("No specific options found for solver '%s'. Returning empty options.", name_solver) return dict() -def get_solver(name_solver: str, variant_highs: str) -> linopy.solvers: +def get_solver(name_solver: str, variant_highs: str, hipo_block_size_value: int) -> linopy.solvers: + """ + Instantiate and configure a solver object based on the specified solver name and options. + + Parameters + ---------- + name_solver : str + Name of the optimization solver (e.g., "highs", "glpk", "gurobi"). + variant_highs : str + Variant of HiGHS to use (e.g., "simplex", "ipx", "hipo"). Only relevant if `name_solver` is "highs". + hipo_block_size_value : int + Block size for the HiPO variant of HiGHS. Only relevant if `variant_highs` is "hipo". + + Returns + ------- + Any + An instance of the solver class, configured with the appropriate options. + """ solver_enum = SolverName(name_solver) solver_class = getattr(linopy.solvers, solver_enum.name) @@ -154,14 +146,26 @@ def get_solver(name_solver: str, variant_highs: str) -> linopy.solvers: seed_options = set_seed_options(name_solver) # Get other solver options if needed (e.g., for HiGHS variants) - solver_options = set_solver_options(name_solver, variant_highs) + solver_options = set_solver_options(name_solver, variant_highs, hipo_block_size_value) return solver_class(**seed_options, **solver_options) -def is_mip_problem(solver_model, name_solver: str) -> bool: +def is_mip_problem(solver_model: Any, name_solver: str) -> bool: """ - Determines if a given solver model is a Mixed Integer Programming (MIP) problem. + Determine if the given solver model is a Mixed Integer Programming (MIP) problem. + + Parameters + ---------- + solver_model : Any + The solver's Python object or model instance. + name_solver : str + Name of the solver (e.g., "highs", "scip", "cbc", "gurobi", "cplex", "xpress", "glpk", "knitro"). + + Returns + ------- + bool + True if the problem is a MIP, False otherwise. """ if name_solver == "scip": if solver_model.getNIntVars() > 0 or solver_model.getNBinVars() > 0: @@ -203,8 +207,22 @@ def calculate_integrality_violation( return max((p - p.round()).abs()) -def get_duality_gap(solver_model, name_solver: str): - """Retrieve the duality gap for the given solver model, if available.""" +def get_duality_gap(solver_model: Any, name_solver: str) -> float | None: + """ + Retrieve the duality gap for the given solver model, if available. + + Parameters + ---------- + solver_model : Any + The solver's Python object or model instance. + name_solver : str + Name of the solver (e.g., "highs", "scip", "cbc", "gurobi", "cplex", "xpress", "glpk", "knitro"). + + Returns + ------- + float or None + The duality gap if available, otherwise None. + """ if name_solver == "scip": return solver_model.getGap() elif name_solver == "gurobi": @@ -224,90 +242,115 @@ def get_duality_gap(solver_model, name_solver: str): # Knitro duality gap retrieval not implemented yet return None else: - raise NotImplementedError(f"The solver '{name_solver}' is not supported.") + logger.info(f"The solver '{name_solver}' is not supported.") + return None + + +def get_milp_metrics(input_file: Path, solver_result: Any) -> tuple[float | None, float | None]: + """ + Compute MILP metrics (duality gap and max integrality violation) using HiGHS. + Parameters + ---------- + input_file : Path + Path to the input problem file. + solver_result : Any + The solver result object containing the solver model and solution. -def get_milp_metrics(input_file, solver_result): - """Uses HiGHS to read the problem file and compute max integrality violation and - duality gap. + Returns + ------- + tuple[float or None, float or None] + A tuple containing the duality gap and the maximum integrality violation. + Returns (None, None) if metrics cannot be computed. """ try: if highspy is not None: h = highspy.Highs() h.readModel(input_file) - integer_vars = { + integer_vars = pd.Series({ h.variableName(i) for i in range(h.numVariables) if h.getColIntegrality(i)[1] == highspy.HighsVarType.kInteger - } + }) if integer_vars: duality_gap = get_duality_gap(solver_result.solver_model, solver_name) max_integrality_violation = calculate_integrality_violation( integer_vars, solver_result.solution.primal ) return duality_gap, max_integrality_violation - except Exception: - print( + except ValueError: + raise ValueError( f"ERROR obtaining milp metrics for {input_file}: {format_exc()}", - file=sys.stderr, ) return None, None -def get_reported_runtime(solver_name, solver_model) -> float | None: - """Get the solving runtime as reported by the solver from the solver's Python object.""" - try: - match solver_name: - case "highs": - return solver_model.getRunTime() - case "scip": - return solver_model.getSolvingTime() - case "cbc": - return solver_model.runtime - case "gurobi": - return solver_model.Runtime - case "cplex": - return None - case "xpress": - return solver_model.getAttrib("time") - case "knitro": - return solver_model.reported_runtime - case _: - print(f"WARNING: cannot obtain reported runtime for {solver_name}") - return None - except Exception: - print(f"ERROR obtaining reported runtime: {format_exc()}", file=sys.stderr) - return None - - -def run_highs_solver(input_fn: str, solution_fn: Path, highs_variant: HighsVariant) -> None: - """ - Run the HiGHS solver, differentiating between IPX and HiPO +def get_reported_runtime(solver_name: str, solver_model: Any) -> float | None: """ + Get the solving runtime as reported by the solver from the solver's Python object. - if "hipo" in highs_variant.value.casefold(): - # Running HiPO variant of HiGHS - with tempfile.NamedTemporaryFile( - mode="w", - prefix=highs_variant.value, - suffix=".options", - delete=False, - delete_on_close=False, - ) as options_file: - options_file.write(highs_variant.options()) - options_file.flush() - - solver_args = list(highs_variant.cli_args()) - solver_args.append(f"--options_file={options_file.name}") - solver_args.append(f"--solution_file={solution_fn}") + Parameters + ---------- + solver_name : str + Name of the solver (e.g., "highs", "scip", "cbc", "gurobi", "cplex", "xpress", "knitro"). + solver_model : Any + The linopy Model instance containing runtime information. - solver = Highs() + Returns + ------- + float or None + The reported runtime in seconds, or None if not available. + """ + match solver_name: + case "highs": + return solver_model.getRunTime() + case "scip": + return solver_model.getSolvingTime() + case "cbc": + return solver_model.runtime + case "gurobi": + return solver_model.Runtime + case "cplex": + return None + case "xpress": + return solver_model.getAttrib("time") + case "knitro": + return solver_model.reported_runtime + case _: + logger.info(f"WARNING: cannot obtain reported runtime for {solver_name}") + return None + + +def main( + solver_name: str, + input_file: str, + solver_version: str, + highs_solver_variant: str, + hipo_block_size: int +) -> None: + """ + Run the specified solver on the given input file and collect results. + Parameters + ---------- + solver_name : str + Name of the solver to run (e.g., "highs", "glpk", "gurobi"). + input_file : str + Path to the input problem file. + solver_version : str + Version of the solver to use. + highs_solver_variant : str + Variant of HiGHS to run (only applicable if solver_name is "highs"). + hipo_block_size : int + Block size for HiPO variant of HiGHS (only applicable if solver_name is "highs" and highs_solver_variant is "hipo"). -def main(solver_name, input_file, solver_version, highs_solver_variant: str) -> None: + Returns + ------- + None + """ problem_file = Path(input_file) - solver = get_solver(solver_name, highs_solver_variant) + solver = get_solver(solver_name, highs_solver_variant, hipo_block_size) solution_dir = Path(__file__).parent / "solutions" solution_dir.mkdir(parents=True, exist_ok=True) @@ -320,60 +363,71 @@ def main(solver_name, input_file, solver_version, highs_solver_variant: str) -> solution_fn = solution_dir / f"{output_filename}.sol" log_fn = logs_dir / f"{output_filename}.log" - try: - # We measure runtime here and not of this entire script because lines like - # `import linopy` take a long (and varying) amount of time - start_time = perf_counter() - solver_result = solver.solve_problem( - problem_fn=problem_file, solution_fn=solution_fn, log_fn=log_fn - ) - runtime = perf_counter() - start_time + results = { + "runtime": None, + "reported_runtime": None, + "status": "ER", + "condition": None, + "objective": None, + "duality_gap": None, + "max_integrality_violation": None, + } - duality_gap, max_integrality_violation = get_milp_metrics( - input_file, solver_result - ) + # We measure runtime here and not of this entire script because lines like + # `import linopy` take a long (and varying) amount of time + start_time = perf_counter() + solver_result = solver.solve_problem( + problem_fn=problem_file, solution_fn=solution_fn, log_fn=log_fn + ) + runtime = perf_counter() - start_time + duality_gap, max_integrality_violation = get_milp_metrics( + problem_file, solver_result + ) + results.update({ + "runtime": runtime, + "reported_runtime": get_reported_runtime( + solver_name, solver_result.solver_model + ), + "status": solver_result.status.status.value, + "condition": solver_result.status.termination_condition.value, + "objective": solver_result.solution.objective, + "duality_gap": duality_gap, + "max_integrality_violation": max_integrality_violation, + }) + + logger.info(json.dumps(results)) + + +def parse_args() -> argparse.Namespace: + """ + Parse command-line arguments for the solver runner script. - results = { - "runtime": runtime, - "reported_runtime": get_reported_runtime( - solver_name, solver_result.solver_model - ), - "status": solver_result.status.status.value, - "condition": solver_result.status.termination_condition.value, - "objective": solver_result.solution.objective, - "duality_gap": duality_gap, - "max_integrality_violation": max_integrality_violation, - } - except Exception: - print(f"ERROR running solver: {format_exc()}", file=sys.stderr) - results = { - "runtime": None, - "reported_runtime": None, - "status": "ER", - "condition": None, - "objective": None, - "duality_gap": None, - "max_integrality_violation": None, - } - print(json.dumps(results)) + Returns + ------- + argparse.Namespace + Namespace containing the parsed command-line arguments: + - solver_name (str): Name of the solver to run. + - solver_version (str): Version of the solver to run. + - input_file (str): Path to the input problem file. + - highs_solver_variant (str): Variant of HiGHS to run (only applicable if solver_name is 'highs'). + - hipo_block_size (int): Block size for HiPO variant of HiGHS (only applicable if solver_name is 'highs' and highs_solver_variant is 'hipo'). + """ + p = argparse.ArgumentParser() + p.add_argument( + "--solver_name", type=str, choices=SUPPORTED_SOLVERS, required=True, help="Name of the solver to run." + ) + p.add_argument("--solver_version", type=str, required=True, help="Version of the solver to run.") + p.add_argument("--input_file", type=str, required=True, help="Path to the input problem file.") + p.add_argument("--highs_solver_variant", type=str, choices=[v.value for v in HighsSolverVariant], help="Variant of HiGHS to run (only applicable if solver_name is 'highs').", default="simplex") + p.add_argument("--hipo_block_size", type=int, help="Block size for HiPO variant of HiGHS (only applicable if solver_name is 'highs' and highs_solver_variant is 'hipo').", default=128) + return p.parse_args() if __name__ == "__main__": - if len(sys.argv) != 4: - print("Usage: python run_solver.py ") - sys.exit(1) - - solver_name = sys.argv[1].casefold() - input_file = sys.argv[2] - solver_version = sys.argv[3] - - # If the solver is HiGHS, we need to ask the user for the variant they want to run - highs_solver_variant: str = "" - if solver_name == "highs": - print("Available HiGHS variants:", ", ".join([v.value for v in HighsVariant])) - highs_solver_variant = input("Please enter a HiGHS variant: ").strip().casefold() - if highs_solver_variant not in [v.value for v in HighsVariant]: - print(f"Invalid HiGHS variant: {highs_solver_variant}") - sys.exit(1) - - main(solver_name, input_file, solver_version, highs_solver_variant) + args = parse_args() + solver_name = args.solver_name + input_file = args.input_file + solver_version = args.solver_version + highs_solver_variant = args.highs_solver_variant + hipo_block_size = args.hipo_block_size + main(solver_name, input_file, solver_version, highs_solver_variant, hipo_block_size) diff --git a/runner/utils.py b/runner/utils.py index 499d4c24..da62ac31 100644 --- a/runner/utils.py +++ b/runner/utils.py @@ -1,6 +1,8 @@ +import collections import re import subprocess from concurrent.futures import ThreadPoolExecutor, as_completed +from enum import Enum from pathlib import Path import matplotlib.colors as mcolors @@ -12,6 +14,41 @@ from IPython.display import display from matplotlib.patches import Patch + +class HighsVariant(str, Enum): + HIPO = "highs-hipo" + HIPO_32 = "highs-hipo-32" + HIPO_64 = "highs-hipo-64" + HIPO_128 = "highs-hipo-128" + HIPO_IPM = "highs-ipm" + + # cli args returns a list of command line arguments for the HiGHS binary. + def cli_args(self) -> collections.abc.Iterable[str]: + args = { + "solver": "hipo", + "run_crossover": "choose", + } + if self == HighsVariant.HIPO_IPM: + args["solver"] = "ipx" + + return [f"--{k}={v}" for k, v in args.items()] + + # options returns the contents for the HiGHS options file. + # passed to the HiGHS binary via --options_file= + def options(self) -> str: + options = {} + match self: + case HighsVariant.HIPO_32: + options["hipo_block_size"] = 32 + case HighsVariant.HIPO_64: + options["hipo_block_size"] = 64 + case HighsVariant.HIPO_128: + options["hipo_block_size"] = 128 + case HighsVariant.HIPO: + options["hipo_block_size"] = 64 + options["hipo_metis_no2hop"] = "true" + return "\n".join(f"{k} = {v}" for k, v in options.items()) + # ---------- Monitor in-progress runs ---------- From b5047ce0360deb44734705ce50a7aaee4b57f8bf Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Tue, 24 Feb 2026 14:39:23 +0100 Subject: [PATCH 04/57] include pre-commit --- runner/run_solver.py | 115 +++++++++++++++++++++++++++++++------------ runner/utils.py | 1 + 2 files changed, 85 insertions(+), 31 deletions(-) diff --git a/runner/run_solver.py b/runner/run_solver.py index 6564e7ca..abe98385 100644 --- a/runner/run_solver.py +++ b/runner/run_solver.py @@ -1,5 +1,6 @@ import argparse import json +import logging from enum import Enum from pathlib import Path from time import perf_counter @@ -9,7 +10,6 @@ import linopy import pandas as pd from linopy.solvers import SolverName -import logging logger = logging.getLogger(__name__) @@ -19,7 +19,16 @@ except ModuleNotFoundError: highspy = None -SUPPORTED_SOLVERS = ["highs", "glpk", "gurobi", "scip", "cbc", "cplex", "knitro", "xpress"] +SUPPORTED_SOLVERS = [ + "highs", + "glpk", + "gurobi", + "scip", + "cbc", + "cplex", + "knitro", + "xpress", +] class HighsSolverVariant(str, Enum): @@ -35,6 +44,7 @@ class HighsSolverVariant(str, Enum): HIPO : str HiPO variant of HiGHS. """ + IPX = "ipx" SIMPLEX = "simplex" HIPO = "hipo" @@ -82,11 +92,16 @@ def set_seed_options(name_of_solver: str) -> dict[str, int | float]: if name_of_solver in seed_options.keys(): return seed_options[name_of_solver] else: - logger.info("No seed options found for solver '%s'. Returning empty options.", name_of_solver) + logger.info( + "No seed options found for solver '%s'. Returning empty options.", + name_of_solver, + ) return dict() -def set_solver_options(name_solver: str, variant_highs: str, hipo_block_size_value: int) -> dict[str, int | str]: +def set_solver_options( + name_solver: str, variant_highs: str, hipo_block_size_value: int +) -> dict[str, int | str]: """ Sets solver-specific options for reproducibility. @@ -113,14 +128,22 @@ def set_solver_options(name_solver: str, variant_highs: str, hipo_block_size_val if name_solver == "highs": if variant_highs == HighsSolverVariant.HIPO: return {"hipo_block_size": hipo_block_size_value, "solver": "hipo"} - elif variant_highs == HighsSolverVariant.IPX or variant_highs == HighsSolverVariant.SIMPLEX: + elif ( + variant_highs == HighsSolverVariant.IPX + or variant_highs == HighsSolverVariant.SIMPLEX + ): return {"solver": variant_highs} else: - logger.info("No specific options found for solver '%s'. Returning empty options.", name_solver) + logger.info( + "No specific options found for solver '%s'. Returning empty options.", + name_solver, + ) return dict() -def get_solver(name_solver: str, variant_highs: str, hipo_block_size_value: int) -> linopy.solvers: +def get_solver( + name_solver: str, variant_highs: str, hipo_block_size_value: int +) -> linopy.solvers: """ Instantiate and configure a solver object based on the specified solver name and options. @@ -146,7 +169,9 @@ def get_solver(name_solver: str, variant_highs: str, hipo_block_size_value: int) seed_options = set_seed_options(name_solver) # Get other solver options if needed (e.g., for HiGHS variants) - solver_options = set_solver_options(name_solver, variant_highs, hipo_block_size_value) + solver_options = set_solver_options( + name_solver, variant_highs, hipo_block_size_value + ) return solver_class(**seed_options, **solver_options) @@ -246,7 +271,9 @@ def get_duality_gap(solver_model: Any, name_solver: str) -> float | None: return None -def get_milp_metrics(input_file: Path, solver_result: Any) -> tuple[float | None, float | None]: +def get_milp_metrics( + input_file: Path, solver_result: Any +) -> tuple[float | None, float | None]: """ Compute MILP metrics (duality gap and max integrality violation) using HiGHS. @@ -267,11 +294,13 @@ def get_milp_metrics(input_file: Path, solver_result: Any) -> tuple[float | None if highspy is not None: h = highspy.Highs() h.readModel(input_file) - integer_vars = pd.Series({ - h.variableName(i) - for i in range(h.numVariables) - if h.getColIntegrality(i)[1] == highspy.HighsVarType.kInteger - }) + integer_vars = pd.Series( + { + h.variableName(i) + for i in range(h.numVariables) + if h.getColIntegrality(i)[1] == highspy.HighsVarType.kInteger + } + ) if integer_vars: duality_gap = get_duality_gap(solver_result.solver_model, solver_name) max_integrality_violation = calculate_integrality_violation( @@ -326,7 +355,7 @@ def main( input_file: str, solver_version: str, highs_solver_variant: str, - hipo_block_size: int + hipo_block_size: int, ) -> None: """ Run the specified solver on the given input file and collect results. @@ -383,17 +412,19 @@ def main( duality_gap, max_integrality_violation = get_milp_metrics( problem_file, solver_result ) - results.update({ - "runtime": runtime, - "reported_runtime": get_reported_runtime( - solver_name, solver_result.solver_model - ), - "status": solver_result.status.status.value, - "condition": solver_result.status.termination_condition.value, - "objective": solver_result.solution.objective, - "duality_gap": duality_gap, - "max_integrality_violation": max_integrality_violation, - }) + results.update( + { + "runtime": runtime, + "reported_runtime": get_reported_runtime( + solver_name, solver_result.solver_model + ), + "status": solver_result.status.status.value, + "condition": solver_result.status.termination_condition.value, + "objective": solver_result.solution.objective, + "duality_gap": duality_gap, + "max_integrality_violation": max_integrality_violation, + } + ) logger.info(json.dumps(results)) @@ -414,12 +445,34 @@ def parse_args() -> argparse.Namespace: """ p = argparse.ArgumentParser() p.add_argument( - "--solver_name", type=str, choices=SUPPORTED_SOLVERS, required=True, help="Name of the solver to run." + "--solver_name", + type=str, + choices=SUPPORTED_SOLVERS, + required=True, + help="Name of the solver to run.", + ) + p.add_argument( + "--solver_version", + type=str, + required=True, + help="Version of the solver to run.", + ) + p.add_argument( + "--input_file", type=str, required=True, help="Path to the input problem file." + ) + p.add_argument( + "--highs_solver_variant", + type=str, + choices=[v.value for v in HighsSolverVariant], + help="Variant of HiGHS to run (only applicable if solver_name is 'highs').", + default="simplex", + ) + p.add_argument( + "--hipo_block_size", + type=int, + help="Block size for HiPO variant of HiGHS (only applicable if solver_name is 'highs' and highs_solver_variant is 'hipo').", + default=128, ) - p.add_argument("--solver_version", type=str, required=True, help="Version of the solver to run.") - p.add_argument("--input_file", type=str, required=True, help="Path to the input problem file.") - p.add_argument("--highs_solver_variant", type=str, choices=[v.value for v in HighsSolverVariant], help="Variant of HiGHS to run (only applicable if solver_name is 'highs').", default="simplex") - p.add_argument("--hipo_block_size", type=int, help="Block size for HiPO variant of HiGHS (only applicable if solver_name is 'highs' and highs_solver_variant is 'hipo').", default=128) return p.parse_args() diff --git a/runner/utils.py b/runner/utils.py index da62ac31..1239fdb7 100644 --- a/runner/utils.py +++ b/runner/utils.py @@ -49,6 +49,7 @@ def options(self) -> str: options["hipo_metis_no2hop"] = "true" return "\n".join(f"{k} = {v}" for k, v in options.items()) + # ---------- Monitor in-progress runs ---------- From bf52db683f9026cbd8624891c8022264aa8e2899 Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Tue, 24 Feb 2026 17:00:24 +0100 Subject: [PATCH 05/57] code: changes to run_solver.py --- runner/run_solver.py | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/runner/run_solver.py b/runner/run_solver.py index abe98385..5e16d357 100644 --- a/runner/run_solver.py +++ b/runner/run_solver.py @@ -173,7 +173,13 @@ def get_solver( name_solver, variant_highs, hipo_block_size_value ) - return solver_class(**seed_options, **solver_options) + kwargs = {} + if seed_options: + kwargs.update(seed_options) + if solver_options: + kwargs.update(solver_options) + + return solver_class(**kwargs) def is_mip_problem(solver_model: Any, name_solver: str) -> bool: @@ -409,9 +415,9 @@ def main( problem_fn=problem_file, solution_fn=solution_fn, log_fn=log_fn ) runtime = perf_counter() - start_time - duality_gap, max_integrality_violation = get_milp_metrics( - problem_file, solver_result - ) + #duality_gap, max_integrality_violation = get_milp_metrics( + # problem_file, solver_result + #) results.update( { "runtime": runtime, @@ -421,12 +427,11 @@ def main( "status": solver_result.status.status.value, "condition": solver_result.status.termination_condition.value, "objective": solver_result.solution.objective, - "duality_gap": duality_gap, - "max_integrality_violation": max_integrality_violation, + # "duality_gap": duality_gap, + # "max_integrality_violation": max_integrality_violation, } ) - - logger.info(json.dumps(results)) + print(json.dumps(results)) def parse_args() -> argparse.Namespace: From 869cb3e1402c9d50e1f9896304280f1a92ed60fd Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Tue, 24 Feb 2026 21:31:22 +0100 Subject: [PATCH 06/57] code: include new seed_options --- runner/run_solver.py | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/runner/run_solver.py b/runner/run_solver.py index 5e16d357..8d7e1eaf 100644 --- a/runner/run_solver.py +++ b/runner/run_solver.py @@ -74,7 +74,7 @@ def set_seed_options(name_of_solver: str) -> dict[str, int | float]: seed_options = { "highs": {"random_seed": 0, "mip_rel_gap": mip_gap}, "glpk": {"seed": 0, "mipgap": mip_gap}, - "gurobi": {"seed": 0, "MIPGap": mip_gap}, + "gurobi": {"seed": 0, "MIPGap": mip_gap, "Crossover": 0}, "scip": {"randomization/randomseedshift": 0, "limits/gap": mip_gap}, "cbc": { "randomCbcSeed": 1, # 0 indicates time of day @@ -83,11 +83,17 @@ def set_seed_options(name_of_solver: str) -> dict[str, int | float]: "cplex": { "randomseed": 0, "mip.tolerances.mipgap": mip_gap, + "solutiontype": 2, }, "knitro": { - "KN_PARAM_MS_SEED": 1066, + "ms_seed": 1066, + "bar_maxcrossit": 0, + }, + "xpress": { + "miprelgapnotify": mip_gap, + "randomseed": 0, + "crossover": 0, }, - "xpress": {"miprelgapnotify": mip_gap, "randomseed": 0}, } if name_of_solver in seed_options.keys(): return seed_options[name_of_solver] From 12aa41c6710d8744b14b2d08331e9dae001efb7b Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Tue, 24 Feb 2026 21:31:41 +0100 Subject: [PATCH 07/57] code: include new seed_options --- runner/run_solver.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/runner/run_solver.py b/runner/run_solver.py index 8d7e1eaf..d2a1172b 100644 --- a/runner/run_solver.py +++ b/runner/run_solver.py @@ -421,9 +421,9 @@ def main( problem_fn=problem_file, solution_fn=solution_fn, log_fn=log_fn ) runtime = perf_counter() - start_time - #duality_gap, max_integrality_violation = get_milp_metrics( + # duality_gap, max_integrality_violation = get_milp_metrics( # problem_file, solver_result - #) + # ) results.update( { "runtime": runtime, @@ -433,8 +433,8 @@ def main( "status": solver_result.status.status.value, "condition": solver_result.status.termination_condition.value, "objective": solver_result.solution.objective, - # "duality_gap": duality_gap, - # "max_integrality_violation": max_integrality_violation, + # "duality_gap": duality_gap, + # "max_integrality_violation": max_integrality_violation, } ) print(json.dumps(results)) From 248b064cf479054a0e88ccdba22a4b52b1506296 Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Wed, 25 Feb 2026 11:55:49 +0100 Subject: [PATCH 08/57] code: add crossover choose --- runner/run_solver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runner/run_solver.py b/runner/run_solver.py index d2a1172b..3e47fa92 100644 --- a/runner/run_solver.py +++ b/runner/run_solver.py @@ -133,7 +133,7 @@ def set_solver_options( if name_solver == "highs": if variant_highs == HighsSolverVariant.HIPO: - return {"hipo_block_size": hipo_block_size_value, "solver": "hipo"} + return {"hipo_block_size": hipo_block_size_value, "solver": "hipo", "run_crossover": "choose"} elif ( variant_highs == HighsSolverVariant.IPX or variant_highs == HighsSolverVariant.SIMPLEX From fe0ad68e92000bc0e1a81b5b4b598d4d5225d657 Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Wed, 25 Feb 2026 13:41:07 +0100 Subject: [PATCH 09/57] code: modify run_solver.py --- runner/run_solver.py | 182 +++++++++++++++++++++++++------------------ 1 file changed, 106 insertions(+), 76 deletions(-) diff --git a/runner/run_solver.py b/runner/run_solver.py index 3e47fa92..c2e3c59b 100644 --- a/runner/run_solver.py +++ b/runner/run_solver.py @@ -34,23 +34,31 @@ class HighsSolverVariant(str, Enum): """ Enumeration of supported HiGHS solver variants. + The solver variants are available at + https://ergo-code.github.io/HiGHS/stable/options/definitions/#option-solver. Attributes ---------- - IPX : str - Interior Point Solver (IPX) variant of HiGHS. - SIMPLEX : str - Simplex variant of HiGHS. HIPO : str HiPO variant of HiGHS. + IPM : str + IPM variant of HiGHS. + IPX : str + IPX variant of HiGHS. + PDLP : str + PDLP variant of HiGHS. + SIMPLEX : str + SIMPLEX variant of HiGHS. """ + HIPO = "hipo" + IPM = "ipm" IPX = "ipx" + PDLP = "pdlp" SIMPLEX = "simplex" - HIPO = "hipo" -def set_seed_options(name_of_solver: str) -> dict[str, int | float]: +def set_seed_options(solver_name_val: str) -> dict[str, int | float]: """ Sets solver-specific seed and tolerance options for reproducibility. @@ -60,7 +68,7 @@ def set_seed_options(name_of_solver: str) -> dict[str, int | float]: Parameters ---------- - name_of_solver : str + solver_name_val : str Name of the optimization solver. Supported solvers include: "highs", "glpk", "gurobi", "scip", "cbc", "cplex", "knitro", and "xpress". @@ -95,18 +103,18 @@ def set_seed_options(name_of_solver: str) -> dict[str, int | float]: "crossover": 0, }, } - if name_of_solver in seed_options.keys(): - return seed_options[name_of_solver] + if solver_name_val in seed_options.keys(): + return seed_options[solver_name_val] else: logger.info( "No seed options found for solver '%s'. Returning empty options.", - name_of_solver, + solver_name_val, ) return dict() def set_solver_options( - name_solver: str, variant_highs: str, hipo_block_size_value: int + solver_name_val: str, variant_highs: str, hipo_block_size_val: int ) -> dict[str, int | str]: """ Sets solver-specific options for reproducibility. @@ -116,13 +124,15 @@ def set_solver_options( Parameters ---------- - name_solver : str + solver_name_val : str Name of the optimization solver. Supported solvers include: "highs", "glpk", "gurobi", "scip", "cbc", "cplex", "knitro", and "xpress". variant_highs : str Solver type, used to determine specific options for HiGHS variants. - hipo_block_size_value : int - Block size value for HiPO variant of HiGHS. This parameter is only relevant if the solver is HiGHS and the variant is a HiPO variant. + hipo_block_size_val : int + Block size value for HiPO variant of HiGHS. + This parameter is only relevant if the solver is HiGHS + and the variant is a HiPO variant. Returns ------- @@ -131,24 +141,30 @@ def set_solver_options( Returns an empty dictionary if the solver name is not recognized. """ - if name_solver == "highs": + if solver_name_val == "highs": if variant_highs == HighsSolverVariant.HIPO: - return {"hipo_block_size": hipo_block_size_value, "solver": "hipo", "run_crossover": "choose"} + return { + "hipo_block_size": hipo_block_size_val, + "solver": "hipo", + "run_crossover": "choose", + } elif ( - variant_highs == HighsSolverVariant.IPX + variant_highs == HighsSolverVariant.IPM + or variant_highs == HighsSolverVariant.IPX + or variant_highs == HighsSolverVariant.PDLP or variant_highs == HighsSolverVariant.SIMPLEX ): return {"solver": variant_highs} else: logger.info( "No specific options found for solver '%s'. Returning empty options.", - name_solver, + solver_name_val, ) return dict() def get_solver( - name_solver: str, variant_highs: str, hipo_block_size_value: int + name_solver: str, variant_highs: str, hipo_block_size_val: int ) -> linopy.solvers: """ Instantiate and configure a solver object based on the specified solver name and options. @@ -158,8 +174,8 @@ def get_solver( name_solver : str Name of the optimization solver (e.g., "highs", "glpk", "gurobi"). variant_highs : str - Variant of HiGHS to use (e.g., "simplex", "ipx", "hipo"). Only relevant if `name_solver` is "highs". - hipo_block_size_value : int + Variant of HiGHS to use. Only relevant if `name_solver` is "highs". + hipo_block_size_val : int Block size for the HiPO variant of HiGHS. Only relevant if `variant_highs` is "hipo". Returns @@ -176,7 +192,7 @@ def get_solver( # Get other solver options if needed (e.g., for HiGHS variants) solver_options = set_solver_options( - name_solver, variant_highs, hipo_block_size_value + name_solver, variant_highs, hipo_block_size_val ) kwargs = {} @@ -188,7 +204,7 @@ def get_solver( return solver_class(**kwargs) -def is_mip_problem(solver_model: Any, name_solver: str) -> bool: +def is_mip_problem(solver_model: Any, solver_name_val: str) -> bool: """ Determine if the given solver model is a Mixed Integer Programming (MIP) problem. @@ -196,7 +212,7 @@ def is_mip_problem(solver_model: Any, name_solver: str) -> bool: ---------- solver_model : Any The solver's Python object or model instance. - name_solver : str + solver_name_val : str Name of the solver (e.g., "highs", "scip", "cbc", "gurobi", "cplex", "xpress", "glpk", "knitro"). Returns @@ -204,31 +220,31 @@ def is_mip_problem(solver_model: Any, name_solver: str) -> bool: bool True if the problem is a MIP, False otherwise. """ - if name_solver == "scip": + if solver_name_val == "scip": if solver_model.getNIntVars() > 0 or solver_model.getNBinVars() > 0: return True return False - elif name_solver == "gurobi": + elif solver_name_val == "gurobi": return solver_model.IsMIP - elif name_solver == "highs": + elif solver_name_val == "highs": info = solver_model.getInfo() return info.mip_node_count >= 0 - elif name_solver == "cplex": + elif solver_name_val == "cplex": # Check if any variables are integer or binary var_types = solver_model.variables.get_types() return any(t in ("I", "B") for t in var_types) - elif name_solver == "xpress": + elif solver_name_val == "xpress": return solver_model.getAttrib("mipents") > 0 - elif name_solver in {"glpk", "cbc"}: + elif solver_name_val in {"glpk", "cbc"}: # These solvers do not provide a solver model in the solver result, # so MIP problem detection is not possible. # TODO preprocess benchmarks and add this info to metadata return False - elif name_solver == "knitro": + elif solver_name_val == "knitro": # Knitro is not designed for MILP problems return False else: - raise NotImplementedError(f"The solver '{name_solver}' is not supported.") + raise NotImplementedError(f"The solver '{solver_name_val}' is not supported.") def calculate_integrality_violation( @@ -244,7 +260,7 @@ def calculate_integrality_violation( return max((p - p.round()).abs()) -def get_duality_gap(solver_model: Any, name_solver: str) -> float | None: +def get_duality_gap(solver_model: Any, solver_name_val: str) -> float | None: """ Retrieve the duality gap for the given solver model, if available. @@ -252,7 +268,7 @@ def get_duality_gap(solver_model: Any, name_solver: str) -> float | None: ---------- solver_model : Any The solver's Python object or model instance. - name_solver : str + solver_name_val : str Name of the solver (e.g., "highs", "scip", "cbc", "gurobi", "cplex", "xpress", "glpk", "knitro"). Returns @@ -260,39 +276,41 @@ def get_duality_gap(solver_model: Any, name_solver: str) -> float | None: float or None The duality gap if available, otherwise None. """ - if name_solver == "scip": + if solver_name_val == "scip": return solver_model.getGap() - elif name_solver == "gurobi": + elif solver_name_val == "gurobi": return solver_model.MIPGap - elif name_solver == "highs": + elif solver_name_val == "highs": return getattr(solver_model.getInfo(), "mip_gap", None) - elif name_solver == "cbc": + elif solver_name_val == "cbc": return getattr(solver_model, "mip_gap", None) - elif name_solver == "glpk": + elif solver_name_val == "glpk": # GLPK does not have a way to retrieve the duality gap from python return None - elif name_solver == "cplex": + elif solver_name_val == "cplex": return solver_model.solution.MIP.get_mip_relative_gap() - elif name_solver == "xpress": + elif solver_name_val == "xpress": return solver_model.controls.miprelgapnotify - elif name_solver == "knitro": + elif solver_name_val == "knitro": # Knitro duality gap retrieval not implemented yet return None else: - logger.info(f"The solver '{name_solver}' is not supported.") + logger.info(f"The solver '{solver_name_val}' is not supported.") return None def get_milp_metrics( - input_file: Path, solver_result: Any + input_file_path: Path, solver_name_val: str, solver_result: Any ) -> tuple[float | None, float | None]: """ Compute MILP metrics (duality gap and max integrality violation) using HiGHS. Parameters ---------- - input_file : Path + input_file_path : Path Path to the input problem file. + solver_name_val : str + Name of the solver (e.g., "highs", "scip", "cbc", "gurobi", "cplex", "xpress", "glpk", "knitro"). solver_result : Any The solver result object containing the solver model and solution. @@ -305,7 +323,7 @@ def get_milp_metrics( try: if highspy is not None: h = highspy.Highs() - h.readModel(input_file) + h.readModel(input_file_path) integer_vars = pd.Series( { h.variableName(i) @@ -314,25 +332,27 @@ def get_milp_metrics( } ) if integer_vars: - duality_gap = get_duality_gap(solver_result.solver_model, solver_name) + duality_gap = get_duality_gap( + solver_result.solver_model, solver_name_val + ) max_integrality_violation = calculate_integrality_violation( integer_vars, solver_result.solution.primal ) return duality_gap, max_integrality_violation except ValueError: raise ValueError( - f"ERROR obtaining milp metrics for {input_file}: {format_exc()}", + f"ERROR obtaining milp metrics for {input_file_path}: {format_exc()}", ) return None, None -def get_reported_runtime(solver_name: str, solver_model: Any) -> float | None: +def get_reported_runtime(solver_name_val: str, solver_model: Any) -> float | None: """ Get the solving runtime as reported by the solver from the solver's Python object. Parameters ---------- - solver_name : str + solver_name_val : str Name of the solver (e.g., "highs", "scip", "cbc", "gurobi", "cplex", "xpress", "knitro"). solver_model : Any The linopy Model instance containing runtime information. @@ -342,7 +362,7 @@ def get_reported_runtime(solver_name: str, solver_model: Any) -> float | None: float or None The reported runtime in seconds, or None if not available. """ - match solver_name: + match solver_name_val: case "highs": return solver_model.getRunTime() case "scip": @@ -358,40 +378,44 @@ def get_reported_runtime(solver_name: str, solver_model: Any) -> float | None: case "knitro": return solver_model.reported_runtime case _: - logger.info(f"WARNING: cannot obtain reported runtime for {solver_name}") + logger.info( + f"WARNING: cannot obtain reported runtime for {solver_name_val}" + ) return None def main( - solver_name: str, - input_file: str, - solver_version: str, - highs_solver_variant: str, - hipo_block_size: int, + solver_name_val: str, + input_file_name: str, + solver_version_val: str, + highs_solver_variant_val: str, + hipo_block_size_val: int, ) -> None: """ Run the specified solver on the given input file and collect results. Parameters ---------- - solver_name : str + solver_name_val : str Name of the solver to run (e.g., "highs", "glpk", "gurobi"). - input_file : str - Path to the input problem file. - solver_version : str + input_file_name : str + Name to the input problem file. + solver_version_val : str Version of the solver to use. - highs_solver_variant : str - Variant of HiGHS to run (only applicable if solver_name is "highs"). - hipo_block_size : int - Block size for HiPO variant of HiGHS (only applicable if solver_name is "highs" and highs_solver_variant is "hipo"). + highs_solver_variant_val : str + Variant of HiGHS to run (only applicable if solver_name_val is "highs"). + hipo_block_size_val : int + Block size for HiPO variant of HiGHS + (only applicable if solver_name_val is "highs" + and highs_solver_variant_val is "hipo"). Returns ------- None """ - problem_file = Path(input_file) + problem_file = Path(input_file_name) - solver = get_solver(solver_name, highs_solver_variant, hipo_block_size) + solver = get_solver(solver_name_val, highs_solver_variant_val, hipo_block_size_val) solution_dir = Path(__file__).parent / "solutions" solution_dir.mkdir(parents=True, exist_ok=True) @@ -399,7 +423,9 @@ def main( logs_dir = Path(__file__).parent / "logs" logs_dir.mkdir(parents=True, exist_ok=True) - output_filename = f"{Path(input_file).stem}-{solver_name}-{solver_version}" + output_filename = ( + f"{Path(input_file_name).stem}-{solver_name_val}-{solver_version_val}" + ) solution_fn = solution_dir / f"{output_filename}.sol" log_fn = logs_dir / f"{output_filename}.log" @@ -421,20 +447,20 @@ def main( problem_fn=problem_file, solution_fn=solution_fn, log_fn=log_fn ) runtime = perf_counter() - start_time - # duality_gap, max_integrality_violation = get_milp_metrics( - # problem_file, solver_result - # ) + duality_gap, max_integrality_violation = get_milp_metrics( + problem_file, solver_name_val, solver_result + ) results.update( { "runtime": runtime, "reported_runtime": get_reported_runtime( - solver_name, solver_result.solver_model + solver_name_val, solver_result.solver_model ), "status": solver_result.status.status.value, "condition": solver_result.status.termination_condition.value, "objective": solver_result.solution.objective, - # "duality_gap": duality_gap, - # "max_integrality_violation": max_integrality_violation, + "duality_gap": duality_gap, + "max_integrality_violation": max_integrality_violation, } ) print(json.dumps(results)) @@ -452,7 +478,9 @@ def parse_args() -> argparse.Namespace: - solver_version (str): Version of the solver to run. - input_file (str): Path to the input problem file. - highs_solver_variant (str): Variant of HiGHS to run (only applicable if solver_name is 'highs'). - - hipo_block_size (int): Block size for HiPO variant of HiGHS (only applicable if solver_name is 'highs' and highs_solver_variant is 'hipo'). + - hipo_block_size (int): Block size for HiPO variant of HiGHS + (only applicable if solver_name is 'highs' and + highs_solver_variant is 'hipo'). """ p = argparse.ArgumentParser() p.add_argument( @@ -481,7 +509,9 @@ def parse_args() -> argparse.Namespace: p.add_argument( "--hipo_block_size", type=int, - help="Block size for HiPO variant of HiGHS (only applicable if solver_name is 'highs' and highs_solver_variant is 'hipo').", + help="Block size for HiPO variant of HiGHS " + "(only applicable if solver_name is 'highs' and " + "highs_solver_variant is 'hipo').", default=128, ) return p.parse_args() From ad2a0f296858ef00f223903b5c82711c5980b87e Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Wed, 25 Feb 2026 13:41:19 +0100 Subject: [PATCH 10/57] code: modify run_solver.py --- runner/run_solver.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/runner/run_solver.py b/runner/run_solver.py index c2e3c59b..c878256a 100644 --- a/runner/run_solver.py +++ b/runner/run_solver.py @@ -191,9 +191,7 @@ def get_solver( seed_options = set_seed_options(name_solver) # Get other solver options if needed (e.g., for HiGHS variants) - solver_options = set_solver_options( - name_solver, variant_highs, hipo_block_size_val - ) + solver_options = set_solver_options(name_solver, variant_highs, hipo_block_size_val) kwargs = {} if seed_options: From 1bdfd17791eb38dd9483a319c1721c81cfb22a32 Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Wed, 25 Feb 2026 15:03:55 +0100 Subject: [PATCH 11/57] code: new update --- runner/run_solver.py | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/runner/run_solver.py b/runner/run_solver.py index c878256a..8e4f9126 100644 --- a/runner/run_solver.py +++ b/runner/run_solver.py @@ -246,7 +246,7 @@ def is_mip_problem(solver_model: Any, solver_name_val: str) -> bool: def calculate_integrality_violation( - integer_vars: pd.Series, primal_values: pd.Series + integer_vars: set, primal_values: pd.Series ) -> float: """Calculate the maximum integrality violation from primal values. We only care about Integer vars, not SemiContinuous or SemiInteger, following the code in @@ -321,14 +321,12 @@ def get_milp_metrics( try: if highspy is not None: h = highspy.Highs() - h.readModel(input_file_path) - integer_vars = pd.Series( - { - h.variableName(i) - for i in range(h.numVariables) - if h.getColIntegrality(i)[1] == highspy.HighsVarType.kInteger - } - ) + h.readModel(input_file_path.as_posix()) + integer_vars = { + h.variableName(i) + for i in range(h.numVariables) + if h.getColIntegrality(i)[1] == highspy.HighsVarType.kInteger + } if integer_vars: duality_gap = get_duality_gap( solver_result.solver_model, solver_name_val From e1b375e37ccb685c459b7729454a7d8197a6edd7 Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Wed, 25 Feb 2026 15:35:51 +0100 Subject: [PATCH 12/57] doc: add documentation on top of script --- runner/run_solver.py | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/runner/run_solver.py b/runner/run_solver.py index 8e4f9126..1f6b9edf 100644 --- a/runner/run_solver.py +++ b/runner/run_solver.py @@ -1,3 +1,42 @@ +""" +Solver Runner Script +==================== + +This script provides a unified interface to run various optimization solvers +(e.g., HiGHS, GLPK, Gurobi, SCIP, CBC, CPLEX, Knitro, Xpress) on a given input +problem file. It configures solver-specific options for reproducibility, +executes the solver, and collects key metrics such as runtime, duality gap, +and integrality violation. + +Features +-------- +- Supports multiple solvers with customizable options. +- Handles solver-specific seed and tolerance settings. +- Computes MILP metrics (duality gap, integrality violation) when applicable. +- Outputs results in JSON format. + +Example Usage +------------- +Run the script from the command line: + + python runner/run_solver.py \ + --solver_name highs \ + --solver_version 1.6.0 \ + --input_file path/to/problem.mps \ + --highs_solver_variant simplex \ + --hipo_block_size 128 + +Arguments +--------- +--solver_name Name of the solver to run (e.g., highs, glpk, gurobi, scip, cbc, cplex, knitro, xpress). +--solver_version Version of the solver to use. +--input_file Path to the input problem file (e.g., .mps, .lp). +--highs_solver_variant Variant of HiGHS to run (hipo, ipm, ipx, pdlp, simplex). Only for HiGHS. +--hipo_block_size Block size for HiPO variant of HiGHS (default: 128). + +See the function `parse_args()` for more details on arguments. +""" + import argparse import json import logging From 46131da1ac7836abfc0c78b8f0f456a2e0e2ee7d Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Wed, 25 Feb 2026 15:46:03 +0100 Subject: [PATCH 13/57] doc: update readme --- runner/README.md | 32 +++++++++++++++++++++++--------- runner/run_solver.py | 2 +- 2 files changed, 24 insertions(+), 10 deletions(-) diff --git a/runner/README.md b/runner/README.md index 92fb1e63..5545f28f 100644 --- a/runner/README.md +++ b/runner/README.md @@ -85,24 +85,38 @@ python run_benchmarks.py ../results/metadata.yaml 2024 --run_id "debug-run-001" Use `run_solver.py` to test a single solver on a single benchmark problem. This is useful for debugging: ```bash -python run_solver.py +python runner/run_solver.py \ + --solver_name \ + --solver_version \ + --input_file \ + --highs_solver_variant \ + --hipo_block_size ``` **Arguments:** -- `solver_name` - Solver name (highs, scip, cbc, gurobi, glpk) -- `input_file` - Path to benchmark problem file (.lp or .mps) -- `solver_version` - Solver version string (e.g., 1.10.0) +- `solver_name` - Name of the solver to run (e.g., `highs`, `glpk`, `gurobi`, `scip`, `cbc`, `cplex`, `knitro`, `xpress`). +- `solver_version` - Version of the solver to use. +- `input_file` - Path to the input problem file (e.g., `.mps`, `.lp`). +- `highs_solver_variant` - Variant of HiGHS to run (`hipo`, `ipm`, `ipx`, `pdlp`, `simplex` - default: `simplex`). Only for HiGHS. +- `hipo_block_size` - Block size for HiPO variant of HiGHS (default: `128`). Only for HiGHS with `hipo` solver variant. **Examples:** ```bash -# Test HiGHS -conda activate benchmark-2024 -python run_solver.py highs ./benchmarks/pypsa-eur-elec-op-2-1h.lp 1.10.0 +# Test HiGHS (simplex variant) +conda activate benchmark-2025 +python runner/run_solver.py \ + --solver_name highs \ + --solver_version 1.13.2.dev1 \ + --input_file ./benchmarks/pypsa-eur-elec-op-2-1h.lp \ + --highs_solver_variant simplex # Test SCIP -conda activate benchmark-2024 -python run_solver.py scip ./benchmarks/pypsa-eur-elec-op-2-1h.lp 9.2.2 +conda activate benchmark-2025 +python runner/run_solver.py \ + --solver_name scip \ + --solver_version 9.2.2 \ + --input_file ./benchmarks/pypsa-eur-elec-op-2-1h.lp ``` **Output:** diff --git a/runner/run_solver.py b/runner/run_solver.py index 1f6b9edf..6e56acc5 100644 --- a/runner/run_solver.py +++ b/runner/run_solver.py @@ -23,7 +23,7 @@ --solver_name highs \ --solver_version 1.6.0 \ --input_file path/to/problem.mps \ - --highs_solver_variant simplex \ + --highs_solver_variant hipo \ --hipo_block_size 128 Arguments From 64374c2a05dccb94bae8f6cd53df2fbea3593f66 Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Wed, 25 Feb 2026 16:53:05 +0100 Subject: [PATCH 14/57] code: update run_benchmarks.py --- runner/run_benchmarks.py | 64 ++++++++++++++++++++-------------------- 1 file changed, 32 insertions(+), 32 deletions(-) diff --git a/runner/run_benchmarks.py b/runner/run_benchmarks.py index b328b4e2..b40f2ff2 100644 --- a/runner/run_benchmarks.py +++ b/runner/run_benchmarks.py @@ -34,7 +34,7 @@ def get_conda_package_versions(solvers, env_name=None): installed_packages = {} for line in result.stdout.splitlines(): if not line.strip() or line.startswith( - "#" + "#" ): # Skip comments and empty lines continue parts = line.split() @@ -149,7 +149,7 @@ def csv_record(check=False, **kwargs): def write_csv_headers( - results_csv, mean_stddev_csv, headers=csv_record(check=False).keys() + results_csv, mean_stddev_csv, headers=csv_record(check=False).keys() ): # Initialize CSV files with headers with open(results_csv, mode="w", newline="") as file: @@ -179,15 +179,15 @@ def write_csv_headers( def write_csv_row( - results_csv, - benchmark_name, - metrics, - run_id, - timestamp, - vm_instance_type, - vm_zone, - hostname, - solver_benchmark_version, + results_csv, + benchmark_name, + metrics, + run_id, + timestamp, + vm_instance_type, + vm_zone, + hostname, + solver_benchmark_version, ): # NOTE: ensure the order is the same as the headers above with open(results_csv, mode="a", newline="") as file: @@ -254,9 +254,9 @@ def benchmark_solver(input_file, solver_name, timeout, solver_version): f"{timeout}s", "python", f"{Path(__file__).parent / 'run_solver.py'}", - solver_name, - input_file, - solver_version, + "--solver_name {}".format(solver_name), + "--input_file {}".format(input_file), + "--solver_version {}".format(solver_version), ] ) @@ -271,9 +271,9 @@ def benchmark_solver(input_file, solver_name, timeout, solver_version): # Append the stderr to the log file log_file = ( - Path(__file__).parent - / "logs" - / f"{Path(input_file).stem}-{solver_name}-{solver_version}.log" + Path(__file__).parent + / "logs" + / f"{Path(input_file).stem}-{solver_name}-{solver_version}.log" ) if log_file.exists: with open(log_file, "a") as f: @@ -447,13 +447,13 @@ def benchmark_highs_binary(): def main( - benchmark_yaml_path, - solvers, - year=None, - iterations=1, - reference_interval=0, # Default: disabled - append=False, - run_id=None, + benchmark_yaml_path, + solvers, + year=None, + iterations=1, + reference_interval=0, # Default: disabled + append=False, + run_id=None, ): # If no run_id is provided, generate one hostname = gethostname() @@ -546,13 +546,13 @@ def main( # TODO share this code with validate_urls.py gz = instance["URL"].endswith(".gz") base = instance["URL"][:-3] if gz else instance["URL"] - ext = base[base.rfind(".") :] + ext = base[base.rfind("."):] # If no dot was found, ext will be the full string; make it empty instead if "." not in ext: ext = "" ext += ".gz" if gz else "" benchmark_path = ( - benchmarks_folder / f"{benchmark_name}-{instance['Name']}{ext}" + benchmarks_folder / f"{benchmark_name}-{instance['Name']}{ext}" ) download_benchmark_file(instance["URL"], benchmark_path) @@ -590,11 +590,11 @@ def main( for solver in solvers: # TODO a hack to run only the latest version per solver on Ls if ( - benchmark["size_category"] == "L" - and year != "2025" - and not ( + benchmark["size_category"] == "L" + and year != "2025" + and not ( year == "2024" and solver == "cbc" - ) # Latest CBC release is in 2024 + ) # Latest CBC release is in 2024 ): print( f"WARNING: skipping {solver} in {year} because this benchmark instance is size L" @@ -605,7 +605,7 @@ def main( if solver in [ variant.value for variant in HighsVariant ] and ( # For py3.10 compatibility - year != "2025" or benchmark["class"] != "LP" + year != "2025" or benchmark["class"] != "LP" ): print( f"Solver {solver} is only available for LP benchmarks and year 2025." @@ -685,7 +685,7 @@ def main( time_since_last_run = current_time - last_reference_run if last_reference_run == 0 or time_since_last_run >= int( - reference_interval + reference_interval ): print( f"Running reference benchmark with HiGHS binary (interval: {reference_interval}s)...", From ac125ac006646e93e0dd810ee56feab4c96e7e12 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Wed, 25 Feb 2026 15:53:28 +0000 Subject: [PATCH 15/57] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- runner/run_benchmarks.py | 58 ++++++++++++++++++++-------------------- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/runner/run_benchmarks.py b/runner/run_benchmarks.py index b40f2ff2..f13cce5c 100644 --- a/runner/run_benchmarks.py +++ b/runner/run_benchmarks.py @@ -34,7 +34,7 @@ def get_conda_package_versions(solvers, env_name=None): installed_packages = {} for line in result.stdout.splitlines(): if not line.strip() or line.startswith( - "#" + "#" ): # Skip comments and empty lines continue parts = line.split() @@ -149,7 +149,7 @@ def csv_record(check=False, **kwargs): def write_csv_headers( - results_csv, mean_stddev_csv, headers=csv_record(check=False).keys() + results_csv, mean_stddev_csv, headers=csv_record(check=False).keys() ): # Initialize CSV files with headers with open(results_csv, mode="w", newline="") as file: @@ -179,15 +179,15 @@ def write_csv_headers( def write_csv_row( - results_csv, - benchmark_name, - metrics, - run_id, - timestamp, - vm_instance_type, - vm_zone, - hostname, - solver_benchmark_version, + results_csv, + benchmark_name, + metrics, + run_id, + timestamp, + vm_instance_type, + vm_zone, + hostname, + solver_benchmark_version, ): # NOTE: ensure the order is the same as the headers above with open(results_csv, mode="a", newline="") as file: @@ -271,9 +271,9 @@ def benchmark_solver(input_file, solver_name, timeout, solver_version): # Append the stderr to the log file log_file = ( - Path(__file__).parent - / "logs" - / f"{Path(input_file).stem}-{solver_name}-{solver_version}.log" + Path(__file__).parent + / "logs" + / f"{Path(input_file).stem}-{solver_name}-{solver_version}.log" ) if log_file.exists: with open(log_file, "a") as f: @@ -447,13 +447,13 @@ def benchmark_highs_binary(): def main( - benchmark_yaml_path, - solvers, - year=None, - iterations=1, - reference_interval=0, # Default: disabled - append=False, - run_id=None, + benchmark_yaml_path, + solvers, + year=None, + iterations=1, + reference_interval=0, # Default: disabled + append=False, + run_id=None, ): # If no run_id is provided, generate one hostname = gethostname() @@ -546,13 +546,13 @@ def main( # TODO share this code with validate_urls.py gz = instance["URL"].endswith(".gz") base = instance["URL"][:-3] if gz else instance["URL"] - ext = base[base.rfind("."):] + ext = base[base.rfind(".") :] # If no dot was found, ext will be the full string; make it empty instead if "." not in ext: ext = "" ext += ".gz" if gz else "" benchmark_path = ( - benchmarks_folder / f"{benchmark_name}-{instance['Name']}{ext}" + benchmarks_folder / f"{benchmark_name}-{instance['Name']}{ext}" ) download_benchmark_file(instance["URL"], benchmark_path) @@ -590,11 +590,11 @@ def main( for solver in solvers: # TODO a hack to run only the latest version per solver on Ls if ( - benchmark["size_category"] == "L" - and year != "2025" - and not ( + benchmark["size_category"] == "L" + and year != "2025" + and not ( year == "2024" and solver == "cbc" - ) # Latest CBC release is in 2024 + ) # Latest CBC release is in 2024 ): print( f"WARNING: skipping {solver} in {year} because this benchmark instance is size L" @@ -605,7 +605,7 @@ def main( if solver in [ variant.value for variant in HighsVariant ] and ( # For py3.10 compatibility - year != "2025" or benchmark["class"] != "LP" + year != "2025" or benchmark["class"] != "LP" ): print( f"Solver {solver} is only available for LP benchmarks and year 2025." @@ -685,7 +685,7 @@ def main( time_since_last_run = current_time - last_reference_run if last_reference_run == 0 or time_since_last_run >= int( - reference_interval + reference_interval ): print( f"Running reference benchmark with HiGHS binary (interval: {reference_interval}s)...", From 0507bcb3b4f06fcd231233478153a155f25cfb5b Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Thu, 26 Feb 2026 15:46:06 +0100 Subject: [PATCH 16/57] code: new unfinished changes --- runner/run_benchmarks.py | 3 +-- runner/run_solver.py | 50 ++++++++++------------------------------ runner/utils.py | 27 ++++++++++++++++++++++ 3 files changed, 40 insertions(+), 40 deletions(-) diff --git a/runner/run_benchmarks.py b/runner/run_benchmarks.py index b40f2ff2..5c27059a 100644 --- a/runner/run_benchmarks.py +++ b/runner/run_benchmarks.py @@ -16,7 +16,6 @@ import psutil import requests import yaml -from utils import HighsVariant def get_conda_package_versions(solvers, env_name=None): @@ -47,7 +46,7 @@ def get_conda_package_versions(solvers, env_name=None): for solver in solvers: # Handle highs-hipo variants as special cases - not conda packages if solver in [ - variant.value for variant in HighsVariant + variant.value for variant in HighsSolverVariants: ]: # For py3.10 compatibility solver_versions[solver] = get_highs_hipo_version() else: diff --git a/runner/run_solver.py b/runner/run_solver.py index 6e56acc5..9f87747b 100644 --- a/runner/run_solver.py +++ b/runner/run_solver.py @@ -40,7 +40,6 @@ import argparse import json import logging -from enum import Enum from pathlib import Path from time import perf_counter from traceback import format_exc @@ -49,6 +48,7 @@ import linopy import pandas as pd from linopy.solvers import SolverName +from utils import HighsSolverVariants logger = logging.getLogger(__name__) @@ -70,33 +70,6 @@ ] -class HighsSolverVariant(str, Enum): - """ - Enumeration of supported HiGHS solver variants. - The solver variants are available at - https://ergo-code.github.io/HiGHS/stable/options/definitions/#option-solver. - - Attributes - ---------- - HIPO : str - HiPO variant of HiGHS. - IPM : str - IPM variant of HiGHS. - IPX : str - IPX variant of HiGHS. - PDLP : str - PDLP variant of HiGHS. - SIMPLEX : str - SIMPLEX variant of HiGHS. - """ - - HIPO = "hipo" - IPM = "ipm" - IPX = "ipx" - PDLP = "pdlp" - SIMPLEX = "simplex" - - def set_seed_options(solver_name_val: str) -> dict[str, int | float]: """ Sets solver-specific seed and tolerance options for reproducibility. @@ -118,10 +91,11 @@ def set_seed_options(solver_name_val: str) -> dict[str, int | float]: Returns an empty dictionary if the solver name is not recognized. """ mip_gap = 1e-4 # Tolerance for the relative duality gap for MILPs + # TODO: remove extra configs that came from the K PR. seed_options = { "highs": {"random_seed": 0, "mip_rel_gap": mip_gap}, "glpk": {"seed": 0, "mipgap": mip_gap}, - "gurobi": {"seed": 0, "MIPGap": mip_gap, "Crossover": 0}, + "gurobi": {"seed": 0, "MIPGap": mip_gap}, "scip": {"randomization/randomseedshift": 0, "limits/gap": mip_gap}, "cbc": { "randomCbcSeed": 1, # 0 indicates time of day @@ -181,17 +155,17 @@ def set_solver_options( """ if solver_name_val == "highs": - if variant_highs == HighsSolverVariant.HIPO: + if variant_highs == HighsSolverVariants.HIPO: return { "hipo_block_size": hipo_block_size_val, "solver": "hipo", "run_crossover": "choose", } - elif ( - variant_highs == HighsSolverVariant.IPM - or variant_highs == HighsSolverVariant.IPX - or variant_highs == HighsSolverVariant.PDLP - or variant_highs == HighsSolverVariant.SIMPLEX + elif variant_highs in ( + HighsSolverVariants.IPM, + HighsSolverVariants.IPX, + HighsSolverVariants.PDLP, + HighsSolverVariants.SIMPLEX ): return {"solver": variant_highs} else: @@ -537,9 +511,9 @@ def parse_args() -> argparse.Namespace: p.add_argument( "--highs_solver_variant", type=str, - choices=[v.value for v in HighsSolverVariant], + choices=[v.value for v in HighsSolverVariants], help="Variant of HiGHS to run (only applicable if solver_name is 'highs').", - default="simplex", + required=False, ) p.add_argument( "--hipo_block_size", @@ -547,7 +521,7 @@ def parse_args() -> argparse.Namespace: help="Block size for HiPO variant of HiGHS " "(only applicable if solver_name is 'highs' and " "highs_solver_variant is 'hipo').", - default=128, + required=False, ) return p.parse_args() diff --git a/runner/utils.py b/runner/utils.py index b1d9afdb..f4d71ff9 100644 --- a/runner/utils.py +++ b/runner/utils.py @@ -15,6 +15,33 @@ from matplotlib.patches import Patch +class HighsSolverVariants(str, Enum): + """ + Enumeration of supported HiGHS solver variants. + The solver variants are available at + https://ergo-code.github.io/HiGHS/stable/options/definitions/#option-solver. + + Attributes + ---------- + HIPO : str + HiPO variant of HiGHS. + IPM : str + IPM variant of HiGHS. + IPX : str + IPX variant of HiGHS. + PDLP : str + PDLP variant of HiGHS. + SIMPLEX : str + SIMPLEX variant of HiGHS. + """ + + HIPO = "hipo" + IPM = "ipm" + IPX = "ipx" + PDLP = "pdlp" + SIMPLEX = "simplex" + + class HighsVariant(str, Enum): HIPO = "highs-hipo" HIPO_32 = "highs-hipo-32" From 7d287ca0d498f8dcd10728e21fda004b37c2aa30 Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Thu, 26 Feb 2026 17:55:30 +0100 Subject: [PATCH 17/57] code: update variable names --- runner/run_solver.py | 143 +++++++++++++++++++++---------------------- 1 file changed, 69 insertions(+), 74 deletions(-) diff --git a/runner/run_solver.py b/runner/run_solver.py index 9f87747b..14e09152 100644 --- a/runner/run_solver.py +++ b/runner/run_solver.py @@ -70,7 +70,7 @@ ] -def set_seed_options(solver_name_val: str) -> dict[str, int | float]: +def set_seed_options(solver_name: str) -> dict[str, int | float]: """ Sets solver-specific seed and tolerance options for reproducibility. @@ -80,7 +80,7 @@ def set_seed_options(solver_name_val: str) -> dict[str, int | float]: Parameters ---------- - solver_name_val : str + solver_name: str Name of the optimization solver. Supported solvers include: "highs", "glpk", "gurobi", "scip", "cbc", "cplex", "knitro", and "xpress". @@ -116,18 +116,18 @@ def set_seed_options(solver_name_val: str) -> dict[str, int | float]: "crossover": 0, }, } - if solver_name_val in seed_options.keys(): - return seed_options[solver_name_val] + if solver_name in seed_options.keys(): + return seed_options[solver_name] else: logger.info( "No seed options found for solver '%s'. Returning empty options.", - solver_name_val, + solver_name, ) return dict() def set_solver_options( - solver_name_val: str, variant_highs: str, hipo_block_size_val: int + solver_name: str, highs_variant: str, hipo_block_size: int ) -> dict[str, int | str]: """ Sets solver-specific options for reproducibility. @@ -137,12 +137,12 @@ def set_solver_options( Parameters ---------- - solver_name_val : str + solver_name: str Name of the optimization solver. Supported solvers include: "highs", "glpk", "gurobi", "scip", "cbc", "cplex", "knitro", and "xpress". - variant_highs : str + highs_variant : str Solver type, used to determine specific options for HiGHS variants. - hipo_block_size_val : int + hipo_block_size : int Block size value for HiPO variant of HiGHS. This parameter is only relevant if the solver is HiGHS and the variant is a HiPO variant. @@ -154,41 +154,41 @@ def set_solver_options( Returns an empty dictionary if the solver name is not recognized. """ - if solver_name_val == "highs": - if variant_highs == HighsSolverVariants.HIPO: + if solver_name == "highs": + if highs_variant == HighsSolverVariants.HIPO: return { - "hipo_block_size": hipo_block_size_val, + "hipo_block_size": hipo_block_size, "solver": "hipo", "run_crossover": "choose", } - elif variant_highs in ( + elif highs_variant in ( HighsSolverVariants.IPM, HighsSolverVariants.IPX, HighsSolverVariants.PDLP, HighsSolverVariants.SIMPLEX ): - return {"solver": variant_highs} + return {"solver": highs_variant} else: logger.info( "No specific options found for solver '%s'. Returning empty options.", - solver_name_val, + solver_name, ) return dict() def get_solver( - name_solver: str, variant_highs: str, hipo_block_size_val: int + solver_name: str, highs_variant: str, hipo_block_size: int ) -> linopy.solvers: """ Instantiate and configure a solver object based on the specified solver name and options. Parameters ---------- - name_solver : str + solver_name : str Name of the optimization solver (e.g., "highs", "glpk", "gurobi"). - variant_highs : str + highs_variant : str Variant of HiGHS to use. Only relevant if `name_solver` is "highs". - hipo_block_size_val : int + hipo_block_size : int Block size for the HiPO variant of HiGHS. Only relevant if `variant_highs` is "hipo". Returns @@ -196,15 +196,15 @@ def get_solver( Any An instance of the solver class, configured with the appropriate options. """ - solver_enum = SolverName(name_solver) + solver_enum = SolverName(solver_name) solver_class = getattr(linopy.solvers, solver_enum.name) # Get seed options - seed_options = set_seed_options(name_solver) + seed_options = set_seed_options(solver_name) # Get other solver options if needed (e.g., for HiGHS variants) - solver_options = set_solver_options(name_solver, variant_highs, hipo_block_size_val) + solver_options = set_solver_options(solver_name, highs_variant, hipo_block_size) kwargs = {} if seed_options: @@ -215,7 +215,7 @@ def get_solver( return solver_class(**kwargs) -def is_mip_problem(solver_model: Any, solver_name_val: str) -> bool: +def is_mip_problem(solver_model: Any, solver_name: str) -> bool: """ Determine if the given solver model is a Mixed Integer Programming (MIP) problem. @@ -223,7 +223,7 @@ def is_mip_problem(solver_model: Any, solver_name_val: str) -> bool: ---------- solver_model : Any The solver's Python object or model instance. - solver_name_val : str + solver_name : str Name of the solver (e.g., "highs", "scip", "cbc", "gurobi", "cplex", "xpress", "glpk", "knitro"). Returns @@ -231,31 +231,31 @@ def is_mip_problem(solver_model: Any, solver_name_val: str) -> bool: bool True if the problem is a MIP, False otherwise. """ - if solver_name_val == "scip": + if solver_name == "scip": if solver_model.getNIntVars() > 0 or solver_model.getNBinVars() > 0: return True return False - elif solver_name_val == "gurobi": + elif solver_name == "gurobi": return solver_model.IsMIP - elif solver_name_val == "highs": + elif solver_name == "highs": info = solver_model.getInfo() return info.mip_node_count >= 0 - elif solver_name_val == "cplex": + elif solver_name == "cplex": # Check if any variables are integer or binary var_types = solver_model.variables.get_types() return any(t in ("I", "B") for t in var_types) - elif solver_name_val == "xpress": + elif solver_name == "xpress": return solver_model.getAttrib("mipents") > 0 - elif solver_name_val in {"glpk", "cbc"}: + elif solver_name in {"glpk", "cbc"}: # These solvers do not provide a solver model in the solver result, # so MIP problem detection is not possible. # TODO preprocess benchmarks and add this info to metadata return False - elif solver_name_val == "knitro": + elif solver_name == "knitro": # Knitro is not designed for MILP problems return False else: - raise NotImplementedError(f"The solver '{solver_name_val}' is not supported.") + raise NotImplementedError(f"The solver '{solver_name}' is not supported.") def calculate_integrality_violation( @@ -271,7 +271,7 @@ def calculate_integrality_violation( return max((p - p.round()).abs()) -def get_duality_gap(solver_model: Any, solver_name_val: str) -> float | None: +def get_duality_gap(solver_model: Any, solver_name: str) -> float | None: """ Retrieve the duality gap for the given solver model, if available. @@ -279,7 +279,7 @@ def get_duality_gap(solver_model: Any, solver_name_val: str) -> float | None: ---------- solver_model : Any The solver's Python object or model instance. - solver_name_val : str + solver_name : str Name of the solver (e.g., "highs", "scip", "cbc", "gurobi", "cplex", "xpress", "glpk", "knitro"). Returns @@ -287,40 +287,40 @@ def get_duality_gap(solver_model: Any, solver_name_val: str) -> float | None: float or None The duality gap if available, otherwise None. """ - if solver_name_val == "scip": + if solver_name == "scip": return solver_model.getGap() - elif solver_name_val == "gurobi": + elif solver_name == "gurobi": return solver_model.MIPGap - elif solver_name_val == "highs": + elif solver_name == "highs": return getattr(solver_model.getInfo(), "mip_gap", None) - elif solver_name_val == "cbc": + elif solver_name == "cbc": return getattr(solver_model, "mip_gap", None) - elif solver_name_val == "glpk": + elif solver_name == "glpk": # GLPK does not have a way to retrieve the duality gap from python return None - elif solver_name_val == "cplex": + elif solver_name == "cplex": return solver_model.solution.MIP.get_mip_relative_gap() - elif solver_name_val == "xpress": + elif solver_name == "xpress": return solver_model.controls.miprelgapnotify - elif solver_name_val == "knitro": + elif solver_name == "knitro": # Knitro duality gap retrieval not implemented yet return None else: - logger.info(f"The solver '{solver_name_val}' is not supported.") + logger.info(f"The solver '{solver_name}' is not supported.") return None def get_milp_metrics( - input_file_path: Path, solver_name_val: str, solver_result: Any + input_file: Path, solver_name: str, solver_result: Any ) -> tuple[float | None, float | None]: """ Compute MILP metrics (duality gap and max integrality violation) using HiGHS. Parameters ---------- - input_file_path : Path + input_file : Path Path to the input problem file. - solver_name_val : str + solver_name : str Name of the solver (e.g., "highs", "scip", "cbc", "gurobi", "cplex", "xpress", "glpk", "knitro"). solver_result : Any The solver result object containing the solver model and solution. @@ -334,7 +334,7 @@ def get_milp_metrics( try: if highspy is not None: h = highspy.Highs() - h.readModel(input_file_path.as_posix()) + h.readModel(input_file.as_posix()) integer_vars = { h.variableName(i) for i in range(h.numVariables) @@ -342,7 +342,7 @@ def get_milp_metrics( } if integer_vars: duality_gap = get_duality_gap( - solver_result.solver_model, solver_name_val + solver_result.solver_model, solver_name ) max_integrality_violation = calculate_integrality_violation( integer_vars, solver_result.solution.primal @@ -350,18 +350,18 @@ def get_milp_metrics( return duality_gap, max_integrality_violation except ValueError: raise ValueError( - f"ERROR obtaining milp metrics for {input_file_path}: {format_exc()}", + f"ERROR obtaining milp metrics for {input_file}: {format_exc()}", ) return None, None -def get_reported_runtime(solver_name_val: str, solver_model: Any) -> float | None: +def get_reported_runtime(solver_name: str, solver_model: Any) -> float | None: """ Get the solving runtime as reported by the solver from the solver's Python object. Parameters ---------- - solver_name_val : str + solver_name : str Name of the solver (e.g., "highs", "scip", "cbc", "gurobi", "cplex", "xpress", "knitro"). solver_model : Any The linopy Model instance containing runtime information. @@ -371,7 +371,7 @@ def get_reported_runtime(solver_name_val: str, solver_model: Any) -> float | Non float or None The reported runtime in seconds, or None if not available. """ - match solver_name_val: + match solver_name: case "highs": return solver_model.getRunTime() case "scip": @@ -388,32 +388,32 @@ def get_reported_runtime(solver_name_val: str, solver_model: Any) -> float | Non return solver_model.reported_runtime case _: logger.info( - f"WARNING: cannot obtain reported runtime for {solver_name_val}" + f"WARNING: cannot obtain reported runtime for {solver_name}" ) return None def main( - solver_name_val: str, - input_file_name: str, - solver_version_val: str, - highs_solver_variant_val: str, - hipo_block_size_val: int, + solver_name: str, + input_file: str, + solver_version: str, + highs_solver_variant: str, + hipo_block_size: int, ) -> None: """ Run the specified solver on the given input file and collect results. Parameters ---------- - solver_name_val : str + solver_name: str Name of the solver to run (e.g., "highs", "glpk", "gurobi"). - input_file_name : str + input_file : str Name to the input problem file. - solver_version_val : str + solver_version : str Version of the solver to use. - highs_solver_variant_val : str + highs_solver_variant : str Variant of HiGHS to run (only applicable if solver_name_val is "highs"). - hipo_block_size_val : int + hipo_block_size : int Block size for HiPO variant of HiGHS (only applicable if solver_name_val is "highs" and highs_solver_variant_val is "hipo"). @@ -422,9 +422,9 @@ def main( ------- None """ - problem_file = Path(input_file_name) + problem_file = Path(input_file) - solver = get_solver(solver_name_val, highs_solver_variant_val, hipo_block_size_val) + solver = get_solver(solver_name, highs_solver_variant, hipo_block_size) solution_dir = Path(__file__).parent / "solutions" solution_dir.mkdir(parents=True, exist_ok=True) @@ -433,7 +433,7 @@ def main( logs_dir.mkdir(parents=True, exist_ok=True) output_filename = ( - f"{Path(input_file_name).stem}-{solver_name_val}-{solver_version_val}" + f"{Path(input_file).stem}-{solver_name}-{solver_version}" ) solution_fn = solution_dir / f"{output_filename}.sol" @@ -457,13 +457,13 @@ def main( ) runtime = perf_counter() - start_time duality_gap, max_integrality_violation = get_milp_metrics( - problem_file, solver_name_val, solver_result + problem_file, solver_name, solver_result ) results.update( { "runtime": runtime, "reported_runtime": get_reported_runtime( - solver_name_val, solver_result.solver_model + solver_name, solver_result.solver_model ), "status": solver_result.status.status.value, "condition": solver_result.status.termination_condition.value, @@ -528,9 +528,4 @@ def parse_args() -> argparse.Namespace: if __name__ == "__main__": args = parse_args() - solver_name = args.solver_name - input_file = args.input_file - solver_version = args.solver_version - highs_solver_variant = args.highs_solver_variant - hipo_block_size = args.hipo_block_size - main(solver_name, input_file, solver_version, highs_solver_variant, hipo_block_size) + main(args.solver_name, args.input_file, args.solver_version, args.highs_solver_variant, args.hipo_block_size) From 3586495b6b68940f3d3eb9bf52bac0b7ce908fcc Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Thu, 26 Feb 2026 16:56:13 +0000 Subject: [PATCH 18/57] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- runner/run_solver.py | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/runner/run_solver.py b/runner/run_solver.py index 14e09152..151c24c8 100644 --- a/runner/run_solver.py +++ b/runner/run_solver.py @@ -165,7 +165,7 @@ def set_solver_options( HighsSolverVariants.IPM, HighsSolverVariants.IPX, HighsSolverVariants.PDLP, - HighsSolverVariants.SIMPLEX + HighsSolverVariants.SIMPLEX, ): return {"solver": highs_variant} else: @@ -341,9 +341,7 @@ def get_milp_metrics( if h.getColIntegrality(i)[1] == highspy.HighsVarType.kInteger } if integer_vars: - duality_gap = get_duality_gap( - solver_result.solver_model, solver_name - ) + duality_gap = get_duality_gap(solver_result.solver_model, solver_name) max_integrality_violation = calculate_integrality_violation( integer_vars, solver_result.solution.primal ) @@ -387,9 +385,7 @@ def get_reported_runtime(solver_name: str, solver_model: Any) -> float | None: case "knitro": return solver_model.reported_runtime case _: - logger.info( - f"WARNING: cannot obtain reported runtime for {solver_name}" - ) + logger.info(f"WARNING: cannot obtain reported runtime for {solver_name}") return None @@ -432,9 +428,7 @@ def main( logs_dir = Path(__file__).parent / "logs" logs_dir.mkdir(parents=True, exist_ok=True) - output_filename = ( - f"{Path(input_file).stem}-{solver_name}-{solver_version}" - ) + output_filename = f"{Path(input_file).stem}-{solver_name}-{solver_version}" solution_fn = solution_dir / f"{output_filename}.sol" log_fn = logs_dir / f"{output_filename}.log" @@ -528,4 +522,10 @@ def parse_args() -> argparse.Namespace: if __name__ == "__main__": args = parse_args() - main(args.solver_name, args.input_file, args.solver_version, args.highs_solver_variant, args.hipo_block_size) + main( + args.solver_name, + args.input_file, + args.solver_version, + args.highs_solver_variant, + args.hipo_block_size, + ) From 4caec81c5aa9d29bbfecd54a866ef2d4b9833638 Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Thu, 26 Feb 2026 17:58:19 +0100 Subject: [PATCH 19/57] code: new updated changes --- runner/run_benchmarks.py | 14 +++++--------- runner/run_solver.py | 22 +++++++++++----------- 2 files changed, 16 insertions(+), 20 deletions(-) diff --git a/runner/run_benchmarks.py b/runner/run_benchmarks.py index 1eb12cc0..16f953ac 100644 --- a/runner/run_benchmarks.py +++ b/runner/run_benchmarks.py @@ -17,6 +17,8 @@ import requests import yaml +from runner.utils import HighsSolverVariants + def get_conda_package_versions(solvers, env_name=None): try: @@ -44,14 +46,8 @@ def get_conda_package_versions(solvers, env_name=None): name_to_pkg = {"highs": "highspy", "cbc": "coin-or-cbc"} solver_versions = {} for solver in solvers: - # Handle highs-hipo variants as special cases - not conda packages - if solver in [ - variant.value for variant in HighsSolverVariants: - ]: # For py3.10 compatibility - solver_versions[solver] = get_highs_hipo_version() - else: - package = name_to_pkg.get(solver, solver) - solver_versions[solver] = installed_packages.get(package, None) + package = name_to_pkg.get(solver, solver) + solver_versions[solver] = installed_packages.get(package, None) return solver_versions @@ -602,7 +598,7 @@ def main( # Restrict highs-hipo variants to 2025 and LPs only if solver in [ - variant.value for variant in HighsVariant + variant.value for variant in HighsSolverVariants ] and ( # For py3.10 compatibility year != "2025" or benchmark["class"] != "LP" ): diff --git a/runner/run_solver.py b/runner/run_solver.py index 14e09152..151c24c8 100644 --- a/runner/run_solver.py +++ b/runner/run_solver.py @@ -165,7 +165,7 @@ def set_solver_options( HighsSolverVariants.IPM, HighsSolverVariants.IPX, HighsSolverVariants.PDLP, - HighsSolverVariants.SIMPLEX + HighsSolverVariants.SIMPLEX, ): return {"solver": highs_variant} else: @@ -341,9 +341,7 @@ def get_milp_metrics( if h.getColIntegrality(i)[1] == highspy.HighsVarType.kInteger } if integer_vars: - duality_gap = get_duality_gap( - solver_result.solver_model, solver_name - ) + duality_gap = get_duality_gap(solver_result.solver_model, solver_name) max_integrality_violation = calculate_integrality_violation( integer_vars, solver_result.solution.primal ) @@ -387,9 +385,7 @@ def get_reported_runtime(solver_name: str, solver_model: Any) -> float | None: case "knitro": return solver_model.reported_runtime case _: - logger.info( - f"WARNING: cannot obtain reported runtime for {solver_name}" - ) + logger.info(f"WARNING: cannot obtain reported runtime for {solver_name}") return None @@ -432,9 +428,7 @@ def main( logs_dir = Path(__file__).parent / "logs" logs_dir.mkdir(parents=True, exist_ok=True) - output_filename = ( - f"{Path(input_file).stem}-{solver_name}-{solver_version}" - ) + output_filename = f"{Path(input_file).stem}-{solver_name}-{solver_version}" solution_fn = solution_dir / f"{output_filename}.sol" log_fn = logs_dir / f"{output_filename}.log" @@ -528,4 +522,10 @@ def parse_args() -> argparse.Namespace: if __name__ == "__main__": args = parse_args() - main(args.solver_name, args.input_file, args.solver_version, args.highs_solver_variant, args.hipo_block_size) + main( + args.solver_name, + args.input_file, + args.solver_version, + args.highs_solver_variant, + args.hipo_block_size, + ) From 0f46dfc02a3b86fb8af94faa18f41e8ebeeccd3f Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Fri, 27 Feb 2026 12:34:37 +0100 Subject: [PATCH 20/57] code: re-insert try-catch block --- runner/run_solver.py | 45 +++++++++++++++++++++++--------------------- 1 file changed, 24 insertions(+), 21 deletions(-) diff --git a/runner/run_solver.py b/runner/run_solver.py index 151c24c8..6822cbad 100644 --- a/runner/run_solver.py +++ b/runner/run_solver.py @@ -445,27 +445,30 @@ def main( # We measure runtime here and not of this entire script because lines like # `import linopy` take a long (and varying) amount of time - start_time = perf_counter() - solver_result = solver.solve_problem( - problem_fn=problem_file, solution_fn=solution_fn, log_fn=log_fn - ) - runtime = perf_counter() - start_time - duality_gap, max_integrality_violation = get_milp_metrics( - problem_file, solver_name, solver_result - ) - results.update( - { - "runtime": runtime, - "reported_runtime": get_reported_runtime( - solver_name, solver_result.solver_model - ), - "status": solver_result.status.status.value, - "condition": solver_result.status.termination_condition.value, - "objective": solver_result.solution.objective, - "duality_gap": duality_gap, - "max_integrality_violation": max_integrality_violation, - } - ) + try: + start_time = perf_counter() + solver_result = solver.solve_problem( + problem_fn=problem_file, solution_fn=solution_fn, log_fn=log_fn + ) + runtime = perf_counter() - start_time + duality_gap, max_integrality_violation = get_milp_metrics( + problem_file, solver_name, solver_result + ) + results.update( + { + "runtime": runtime, + "reported_runtime": get_reported_runtime( + solver_name, solver_result.solver_model + ), + "status": solver_result.status.status.value, + "condition": solver_result.status.termination_condition.value, + "objective": solver_result.solution.objective, + "duality_gap": duality_gap, + "max_integrality_violation": max_integrality_violation, + } + ) + except Exception as e: + logger.error(f"Error running solver: {e}") print(json.dumps(results)) From 61c2a43f6ca4c688d3de79779decc217b5ca106b Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Sat, 28 Feb 2026 03:06:03 +0100 Subject: [PATCH 21/57] code: updates to run_benchmarks.py --- runner/run_benchmarks.py | 8 +++++++- runner/run_solver.py | 5 +---- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/runner/run_benchmarks.py b/runner/run_benchmarks.py index 16f953ac..58b42c72 100644 --- a/runner/run_benchmarks.py +++ b/runner/run_benchmarks.py @@ -43,7 +43,13 @@ def get_conda_package_versions(solvers, env_name=None): installed_packages[parts[0]] = parts[1] # Map solver names to their conda package names - name_to_pkg = {"highs": "highspy", "cbc": "coin-or-cbc"} + name_to_pkg = { + "highs": "highspy", + "highs-hipo": "highspy", + "highs-ipm": "highspy", + "cbc": "coin-or-cbc", + "scip": "pyscipopt" + } solver_versions = {} for solver in solvers: package = name_to_pkg.get(solver, solver) diff --git a/runner/run_solver.py b/runner/run_solver.py index 6822cbad..cabd5f25 100644 --- a/runner/run_solver.py +++ b/runner/run_solver.py @@ -104,16 +104,13 @@ def set_seed_options(solver_name: str) -> dict[str, int | float]: "cplex": { "randomseed": 0, "mip.tolerances.mipgap": mip_gap, - "solutiontype": 2, }, "knitro": { "ms_seed": 1066, - "bar_maxcrossit": 0, }, "xpress": { "miprelgapnotify": mip_gap, "randomseed": 0, - "crossover": 0, }, } if solver_name in seed_options.keys(): @@ -379,7 +376,7 @@ def get_reported_runtime(solver_name: str, solver_model: Any) -> float | None: case "gurobi": return solver_model.Runtime case "cplex": - return None + return solver_model.get_time() case "xpress": return solver_model.getAttrib("time") case "knitro": From e177822911b2bd3047041c361c8efdbee6fff8ff Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Sat, 28 Feb 2026 03:06:20 +0100 Subject: [PATCH 22/57] code: updates to run_benchmarks.py --- runner/run_benchmarks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runner/run_benchmarks.py b/runner/run_benchmarks.py index 58b42c72..cf3bb9ab 100644 --- a/runner/run_benchmarks.py +++ b/runner/run_benchmarks.py @@ -48,7 +48,7 @@ def get_conda_package_versions(solvers, env_name=None): "highs-hipo": "highspy", "highs-ipm": "highspy", "cbc": "coin-or-cbc", - "scip": "pyscipopt" + "scip": "pyscipopt", } solver_versions = {} for solver in solvers: From 868c31d7d2b0c4ece218785d61e1a21f2ea24a3f Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Sun, 1 Mar 2026 23:48:26 +0100 Subject: [PATCH 23/57] code: unit tests get_conda_package_versions --- tests/test_run_benchmarks.py | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 tests/test_run_benchmarks.py diff --git a/tests/test_run_benchmarks.py b/tests/test_run_benchmarks.py new file mode 100644 index 00000000..e334e829 --- /dev/null +++ b/tests/test_run_benchmarks.py @@ -0,0 +1,36 @@ +"""Unit tests for the run_benchmarks module.""" +from unittest.mock import MagicMock, patch + +from runner.run_benchmarks import get_conda_package_versions + + +class TestRunBenchmarks: + + def test_get_conda_package_versions(self) -> None: + """Test the get_conda_package_versions function.""" + solvers_list = ["highs", "highs-hipo", "highs-ipm", "cbc", "scip"] + env_name = "benchmark-env" + # Simulate conda list output + conda_list_output = """ + # packages in environment at /opt/conda/envs/fake-env: + # + highspy 1.13.2.dev1 py39_0 + coin-or-cbc 2.10.12 py39_0 + pyscipopt 5.7.1 py39_0 + otherpkg 0.1.0 py39_0 + """ + mock_result = MagicMock() + mock_result.stdout = conda_list_output + mock_result.returncode = 0 + + expected_dict = { + "highs": "1.13.2.dev1", + "highs-hipo": "1.13.2.dev1", + "highs-ipm": "1.13.2.dev1", + "cbc": "2.10.12", + "scip": "5.7.1" + } + + with patch("subprocess.run", return_value=mock_result): + versions = get_conda_package_versions(solvers_list, env_name) + assert versions == expected_dict From ca27dc40bcba08bc3600b438e5644b7f398f4793 Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Sun, 1 Mar 2026 23:48:40 +0100 Subject: [PATCH 24/57] code: unit tests get_conda_package_versions --- tests/test_run_benchmarks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_run_benchmarks.py b/tests/test_run_benchmarks.py index e334e829..1c1c82b4 100644 --- a/tests/test_run_benchmarks.py +++ b/tests/test_run_benchmarks.py @@ -1,11 +1,11 @@ """Unit tests for the run_benchmarks module.""" + from unittest.mock import MagicMock, patch from runner.run_benchmarks import get_conda_package_versions class TestRunBenchmarks: - def test_get_conda_package_versions(self) -> None: """Test the get_conda_package_versions function.""" solvers_list = ["highs", "highs-hipo", "highs-ipm", "cbc", "scip"] @@ -28,7 +28,7 @@ def test_get_conda_package_versions(self) -> None: "highs-hipo": "1.13.2.dev1", "highs-ipm": "1.13.2.dev1", "cbc": "2.10.12", - "scip": "5.7.1" + "scip": "5.7.1", } with patch("subprocess.run", return_value=mock_result): From 19cd4634034b272a6663b45c6a7d2c7847d29f30 Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Mon, 2 Mar 2026 07:56:31 +0100 Subject: [PATCH 25/57] code: docstring and numpydoc to run_benchmarks.py --- runner/run_benchmarks.py | 120 +++++++++++++++++++++++++++++++-------- 1 file changed, 95 insertions(+), 25 deletions(-) diff --git a/runner/run_benchmarks.py b/runner/run_benchmarks.py index cf3bb9ab..85d2faa9 100644 --- a/runner/run_benchmarks.py +++ b/runner/run_benchmarks.py @@ -3,6 +3,7 @@ import datetime import gzip import json +import logging import os import re import shutil @@ -19,8 +20,30 @@ from runner.utils import HighsSolverVariants +logger = logging.getLogger(__name__) -def get_conda_package_versions(solvers, env_name=None): + +def get_conda_package_versions(solvers: list[str], env_name=None) -> dict[str, str]: + """ + Get the installed version of specified solver packages in a conda environment. + + Parameters + ---------- + solvers : list of str + List of solver names to query for package versions. + env_name : str, optional + Name of the conda environment to query. If None, uses the current active environment. + + Returns + ------- + solver_versions : dict + Dictionary mapping each solver name to its installed version string in the specified conda environment. + + Raises + ------ + ValueError + If the conda command fails to execute. + """ try: # List packages in the conda environment cmd = "conda list" @@ -61,11 +84,23 @@ def get_conda_package_versions(solvers, env_name=None): raise ValueError(f"Error executing conda command: {e.stderr or str(e)}") -def download_benchmark_file(url, dest_path: Path): - """Download a file from url and save it locally in the specified folder if it doesn't already exist. - - If the URL is on GCS (starting gs://), then this uses `gsutil` to download the file (requires authentication). - If the file is gzipped (.gz), it will be unzipped after downloading. +def download_benchmark_file(url: str, dest_path: Path) -> None: + """ + Download a file from a URL and save it locally, unzipping if necessary. + + Parameters + ---------- + url : str + The URL of the file to download. If the URL starts with 'gs://', `gsutil` is used for downloading. + dest_path : pathlib.Path + The local path where the downloaded file will be saved. If the file is gzipped (.gz), it will be unzipped after download. + + Notes + ----- + - If the file already exists at the destination (uncompressed), the download is skipped. + - For Google Cloud Storage URLs, requires `gsutil` and authentication. + - Automatically unzips `.gz` files after download and removes the compressed file. + - Creates the destination directory if it does not exist. """ # Ensure the destination folder exists os.makedirs(dest_path.parent, exist_ok=True) @@ -77,36 +112,62 @@ def download_benchmark_file(url, dest_path: Path): uncompressed_dest_path = dest_path if os.path.exists(uncompressed_dest_path): - print(f"File already exists at {uncompressed_dest_path}. Skipping download.") + logger.info( + "File already exists at {}. Skipping download.".format( + uncompressed_dest_path + ) + ) return if url.startswith("gs://"): # GCS file, so download using gsutil - print(f"Downloading {url} to {dest_path} using gsutil...", end="") + logger.info("Downloading {} to {} using gsutil...".format(url, dest_path)) cmd = ["gsutil", "cp", url, dest_path] _result = subprocess.run(cmd, capture_output=True, text=True, check=True) - print("done.") + logger.info("done.") else: # Perform the download with streaming to handle large files - print(f"Downloading {url} to {dest_path}...", end="") + logger.info("Downloading {} to {}...".format(url, dest_path)) with requests.get(url, stream=True) as response: response.raise_for_status() with open(dest_path, "wb") as f: for chunk in response.iter_content(chunk_size=8192): f.write(chunk) - print("done.") + logger.info("done.") if dest_path.suffix == ".gz": - print(f"Unzipping {dest_path}...") + logger.info("Unzipping {}...".format(dest_path)) with gzip.open(dest_path, "rb") as gz_file: uncompressed_file_path = dest_path.with_suffix("") with open(uncompressed_file_path, "wb") as uncompressed_file: shutil.copyfileobj(gz_file, uncompressed_file) os.remove(dest_path) - print(f"Unzipped to {uncompressed_file_path}.") + logger.info("Unzipped to {}.".format(uncompressed_file_path)) -def parse_memory(output): +def parse_memory(output: str) -> float: + """ + Parse the maximum resident set size (memory usage) from subprocess output. + + Parameters + ---------- + output : str + The output string from a subprocess, expected to contain a line with 'MaxResidentSetSizeKB='. + + Returns + ------- + memory_mb : float + The maximum resident set size in megabytes (MB). + + Raises + ------ + ValueError + If the memory usage line is not found in the output. + + Notes + ----- + - Assumes the memory usage is reported in kilobytes (KB) and converts it to megabytes (MB). + """ line = output.splitlines()[-1] if "MaxResidentSetSizeKB=" in line: parts = line.strip().split("=") @@ -236,7 +297,11 @@ def benchmark_solver(input_file, solver_name, timeout, solver_version): available_memory_bytes = psutil.virtual_memory().available memory_limit_bytes = int(available_memory_bytes * 0.95) memory_limit_mb = memory_limit_bytes / (1024 * 1024) - print(f"Setting memory limit to {memory_limit_mb:.2f} MB (95% of available memory)") + logger.info( + "Setting memory limit to {:.2f} MB (95% of available memory)".format( + memory_limit_mb + ) + ) command = ["systemd-run"] @@ -246,13 +311,15 @@ def benchmark_solver(input_file, solver_name, timeout, solver_version): command.extend( [ "--scope", - f"--property=MemoryMax={memory_limit_bytes}", # Set resident memory limit + "--property=MemoryMax={}".format( + memory_limit_bytes + ), # Set resident memory limit "--property=MemorySwapMax=0", # Disable swap to ensure only physical RAM is used "/usr/bin/time", "--format", "MaxResidentSetSizeKB=%M", "timeout", - f"{timeout}s", + "{}s".format(timeout), "python", f"{Path(__file__).parent / 'run_solver.py'}", "--solver_name {}".format(solver_name), @@ -597,8 +664,10 @@ def main( year == "2024" and solver == "cbc" ) # Latest CBC release is in 2024 ): - print( - f"WARNING: skipping {solver} in {year} because this benchmark instance is size L" + logger.info( + "WARNING: skipping {} in {} because this benchmark instance is size L".format( + solver, year + ) ) continue @@ -608,15 +677,16 @@ def main( ] and ( # For py3.10 compatibility year != "2025" or benchmark["class"] != "LP" ): - print( - f"Solver {solver} is only available for LP benchmarks and year 2025." - f" Current year: {year}, problem class: {benchmark['class']}. Skipping." + logger.info( + "Solver {} is only available for LP benchmarks and year 2025. Current year: {}, problem class: {}. Skipping.".format( + solver, year, benchmark["class"] + ) ) continue solver_version = solvers_versions.get(solver) if not solver_version: - print(f"Solver {solver} is not available. Skipping.") + logger.info("Solver {} is not available. Skipping.".format(solver)) continue metrics = {} @@ -743,7 +813,7 @@ def main( type=str, nargs="+", default=["highs", "scip", "cbc", "gurobi", "glpk"], - help="The list of solvers to run. Solvers not present in the active environment will be skipped. For 2025, highs variants are available: highs-hipo, highs-ipm, highs-hipo-32, highs-hipo-64, highs-hipo-128.", + help="The list of solvers to run. Solvers not present in the active environment will be skipped. For 2025, highs variants are available: highs-hipo, highs-ipm.", ) parser.add_argument( "--append", @@ -773,4 +843,4 @@ def main( run_id=args.run_id, ) # Print a message indicating completion - print("Benchmarking complete.") + logger.info("Benchmarking complete.") From 4c818d1ebc3495d05092c2c7c6d4f70fbf79c4dd Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Mon, 2 Mar 2026 11:13:34 +0100 Subject: [PATCH 26/57] code: add docstring numpydoc for benchmark_solver --- runner/run_benchmarks.py | 89 +++++++++++++++++++++++++++++++++++++++- 1 file changed, 88 insertions(+), 1 deletion(-) diff --git a/runner/run_benchmarks.py b/runner/run_benchmarks.py index 85d2faa9..44e664c0 100644 --- a/runner/run_benchmarks.py +++ b/runner/run_benchmarks.py @@ -1,3 +1,51 @@ +""" +Benchmark Runner Script +======================= + +This script automates the benchmarking of multiple optimization solvers +(e.g., HiGHS, GLPK, Gurobi, SCIP, CBC) on a set of +benchmark problem instances defined in a YAML configuration file. It manages +downloading benchmark files, running solvers in isolated environments with +resource limits, collecting metrics (runtime, memory, status, objective, etc.), +and writing results to CSV files for further analysis. + +Features +-------- +- Supports running multiple solvers and benchmark instances in series. +- Handles solver-specific environment setup and version detection. +- Enforces memory and runtime limits for solver runs. +- Collects and records detailed metrics, including runtime, memory usage, + status, objective value, duality gap, and integrality violation. +- Outputs results and summary statistics to CSV files. + +Example Usage +------------- +Run the script from the command line: + + python runner/run_benchmarks.py [OPTIONS] + +Arguments +--------- +benchmark_yaml : str + Path to the benchmark configuration YAML file (e.g., ../results/metadata.yaml). +year : str + Solver release year (e.g., 2020-2025). +--solvers : list of str, optional + Space-separated list of solvers to run. Defaults to all supported solvers. +--append : bool, optional + Append to the results CSV file instead of overwriting. Default is False. +--ref_bench_interval : int, optional + Interval in seconds to run a reference benchmark with the HiGHS binary. +--run_id : str, optional + Unique identifier for this benchmark run. + +Outputs +------- +- Results for each solver/benchmark instance are written to `results/benchmark_results.csv`. +- Summary statistics (mean, stddev) are written to `results/benchmark_results_mean_stddev.csv`. +- Logs and solution files are saved in the `runner/logs/` and `runner/solutions/` directories. +""" + import argparse import csv import datetime @@ -293,7 +341,46 @@ def write_csv_summary_row(mean_stddev_csv, benchmark_name, metrics, run_id, time ) -def benchmark_solver(input_file, solver_name, timeout, solver_version): +def benchmark_solver( + input_file: str, solver_name: str, timeout: int, solver_version: str +) -> dict[str, object]: + """ + Run a solver on a benchmark problem file with resource limits and collect metrics. + + Parameters + ---------- + input_file : str + Path to the benchmark problem file. + solver_name : str + Name of the solver to run (e.g., "highs", "scip", "cbc", "gurobi", "glpk"). + timeout : int + Maximum allowed runtime for the solver in seconds. + solver_version : str + Version of the solver to use. + + Returns + ------- + metrics : dict + Dictionary containing benchmark metrics: + - status : str + Solver status ("ok", "TO", "ER", "OOM"). + - condition : str + Termination condition ("Optimal", "Timeout", "Error", "Out of Memory"). + - objective : float or None + Objective value if available. + - runtime : float or str + Actual runtime in seconds or "N/A". + - reported_runtime : float or None + Runtime reported by the solver, if available. + - duality_gap : float or None + Duality gap for MILP problems, if available. + - max_integrality_violation : float or None + Maximum integrality violation for MILP problems, if available. + - memory : float or None + Maximum resident set size in MB. + - timeout : int + Timeout value in seconds. + """ available_memory_bytes = psutil.virtual_memory().available memory_limit_bytes = int(available_memory_bytes * 0.95) memory_limit_mb = memory_limit_bytes / (1024 * 1024) From 7f66052f789378b1587072b0e5bb1ed9fa3bf5f6 Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Mon, 2 Mar 2026 11:31:51 +0100 Subject: [PATCH 27/57] code: ignore unit tests for Streamlit App --- pytest.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/pytest.ini b/pytest.ini index fa7a5bbf..ce72372d 100644 --- a/pytest.ini +++ b/pytest.ini @@ -1,2 +1,3 @@ [pytest] norecursedirs = pocs +addopts = --ignore=tests/test_run_benchmarks.py From d52a99ea3094931d175cec5da9397c9f6a6f5edd Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Mon, 2 Mar 2026 17:31:51 +0100 Subject: [PATCH 28/57] code: new changes to run_benchmarks.py --- runner/run_benchmarks.py | 154 +++++++-------------------------------- runner/run_solver.py | 30 +++++++- runner/utils.py | 65 ----------------- 3 files changed, 55 insertions(+), 194 deletions(-) diff --git a/runner/run_benchmarks.py b/runner/run_benchmarks.py index 44e664c0..983f1119 100644 --- a/runner/run_benchmarks.py +++ b/runner/run_benchmarks.py @@ -53,7 +53,6 @@ import json import logging import os -import re import shutil import statistics import subprocess @@ -66,8 +65,6 @@ import requests import yaml -from runner.utils import HighsSolverVariants - logger = logging.getLogger(__name__) @@ -342,21 +339,27 @@ def write_csv_summary_row(mean_stddev_csv, benchmark_name, metrics, run_id, time def benchmark_solver( - input_file: str, solver_name: str, timeout: int, solver_version: str + input_file: Path, + solver_name: str, + timeout: int, + solver_version: str, + reference_benchmark=False, ) -> dict[str, object]: """ Run a solver on a benchmark problem file with resource limits and collect metrics. Parameters ---------- - input_file : str + input_file : Path Path to the benchmark problem file. solver_name : str - Name of the solver to run (e.g., "highs", "scip", "cbc", "gurobi", "glpk"). + Name of the solver to run (e.g., "gurobi", "highs-hipo", "highs-ipm", "highs", "scip", "cbc" or "glpk"). timeout : int Maximum allowed runtime for the solver in seconds. solver_version : str Version of the solver to use. + reference_benchmark : bool, optional + Whether this is a reference benchmark run (default: False). If True, run the reference benchmark. Returns ------- @@ -410,11 +413,14 @@ def benchmark_solver( "python", f"{Path(__file__).parent / 'run_solver.py'}", "--solver_name {}".format(solver_name), - "--input_file {}".format(input_file), + "--input_file {}".format(input_file.as_posix()), "--solver_version {}".format(solver_version), ] ) + if reference_benchmark: + command.extend(["--highs_solver_variant {}".format("hipo")]) + # Run the command and capture the output result = subprocess.run( command, @@ -497,110 +503,6 @@ def benchmark_solver( return metrics -def get_highs_binary_version(): - """Get the version of the HiGHS binary from the --version command""" - highs_binary = "/opt/highs/bin/highs" - - try: - result = subprocess.run( - [highs_binary, "--version"], - capture_output=True, - text=True, - check=True, - encoding="utf-8", - ) - - version_match = re.search(r"HiGHS version (\d+\.\d+\.\d+)", result.stdout) - if version_match: - return version_match.group(1) - - return "unknown" - except Exception as e: - print(f"Error getting HiGHS binary version: {str(e)}") - return "unknown" - - -def get_highs_hipo_version(): - """Get the version of the HiGHS-HiPO binary from the --version command""" - if os.geteuid() != 0: - highs_hipo_binary = "/home/madhukar/oet/solver-benchmark/highs-installs/highs-hipo-workspace/HiGHS/build/bin/highs" - else: - highs_hipo_binary = "/opt/highs-hipo-workspace/HiGHS/build/bin/highs" - - try: - result = subprocess.run( - [highs_hipo_binary, "--version"], - capture_output=True, - text=True, - check=True, - encoding="utf-8", - ) - - version_match = re.search(r"HiGHS version (\d+\.\d+\.\d+)", result.stdout) - if version_match: - return version_match.group(1) + "-hipo" - - return "unknown-hipo" - except Exception as e: - print(f"Error getting HiGHS-HiPO binary version: {str(e)}") - return "unknown-hipo" - - -def benchmark_highs_binary(): - """ - Run a reference benchmark using the pre-installed HiGHS binary - """ - reference_model = "/benchmark-test-model.lp" - highs_binary = "/opt/highs/bin/highs" - - command = [ - highs_binary, - reference_model, - ] - - # Run the command and capture the output - start_time = time.perf_counter() - result = subprocess.run( - command, - capture_output=True, - text=True, - check=False, - encoding="utf-8", - ) - runtime = time.perf_counter() - start_time - if result.returncode != 0: - print(f"ERROR running solver. Return code:\n{result.returncode}") - metrics = { - "status": "ER", - "condition": "Error", - "objective": None, - "runtime": runtime, - "duality_gap": None, - "max_integrality_violation": None, - } - else: - # Parse HiGHS output to extract objective value - objective = None - for line in result.stdout.splitlines(): - if "Objective value" in line: - try: - objective = float(line.split(":")[-1].strip()) - except (ValueError, IndexError): - pass - - metrics = { - "status": "OK", - "condition": "Optimal", - "objective": objective, - "runtime": runtime, - "memory": "N/A", - "duality_gap": None, # Not available from command line output - "max_integrality_violation": None, # Not available from command line output - } - - return metrics - - def main( benchmark_yaml_path, solvers, @@ -680,8 +582,12 @@ def main( benchmarks_folder = Path(__file__).parent / "benchmarks/" os.makedirs(benchmarks_folder, exist_ok=True) + # Get solver versions from the conda environment to include in the results solvers_versions = get_conda_package_versions(solvers, f"benchmark-{year}") + # Get the path of the reference benchmark + reference_benchmark_path = Path(benchmarks_folder, "benchmark-test-model.lp") + # Preprocess the sizes and make a list of individual benchmark files to run on processed_benchmarks = [] for benchmark_name, benchmark_info in benchmarks_info.items(): @@ -732,10 +638,6 @@ def main( + ("" if size_categories is None else f" matching {size_categories}") ) - reference_solver_version = "" - if reference_interval > 0: - reference_solver_version = get_highs_binary_version() - for benchmark in processed_benchmarks: # Set timeout from YAML if provided, otherwise use size-category defaults (1h for S/M, 24h for L) timeout = benchmark.get("timeout_seconds") or ( @@ -759,9 +661,7 @@ def main( continue # Restrict highs-hipo variants to 2025 and LPs only - if solver in [ - variant.value for variant in HighsSolverVariants - ] and ( # For py3.10 compatibility + if solver == "highs-hipo" and ( # For py3.10 compatibility year != "2025" or benchmark["class"] != "LP" ): logger.info( @@ -846,18 +746,16 @@ def main( reference_interval ): print( - f"Running reference benchmark with HiGHS binary (interval: {reference_interval}s)...", + f"Running reference benchmark with HiGHS HiPO (interval: {reference_interval}s)...", flush=True, ) - reference_metrics = benchmark_highs_binary() - - # Add required fields to reference metrics - reference_metrics["size"] = "reference" - reference_metrics["solver"] = "highs-binary" - reference_metrics["solver_version"] = reference_solver_version - reference_metrics["solver_release_year"] = "N/A" - reference_metrics["reported_runtime"] = None - reference_metrics["timeout"] = None + reference_metrics = benchmark_solver( + reference_benchmark_path, + solver_name="highs-hipo", + timeout=24 * 60 * 60, + solver_version=solvers_versions.get("highs-hipo"), + reference_benchmark=True, + ) # Record reference benchmark results reference_timestamp = datetime.datetime.now().strftime( diff --git a/runner/run_solver.py b/runner/run_solver.py index cabd5f25..b8e49221 100644 --- a/runner/run_solver.py +++ b/runner/run_solver.py @@ -40,6 +40,7 @@ import argparse import json import logging +from enum import Enum from pathlib import Path from time import perf_counter from traceback import format_exc @@ -48,10 +49,37 @@ import linopy import pandas as pd from linopy.solvers import SolverName -from utils import HighsSolverVariants logger = logging.getLogger(__name__) + +class HighsSolverVariants(str, Enum): + """ + Enumeration of supported HiGHS solver variants. + The solver variants are available at + https://ergo-code.github.io/HiGHS/stable/options/definitions/#option-solver. + + Attributes + ---------- + HIPO : str + HiPO variant of HiGHS. + IPM : str + IPM variant of HiGHS. + IPX : str + IPX variant of HiGHS. + PDLP : str + PDLP variant of HiGHS. + SIMPLEX : str + SIMPLEX variant of HiGHS. + """ + + HIPO = "hipo" + IPM = "ipm" + IPX = "ipx" + PDLP = "pdlp" + SIMPLEX = "simplex" + + # HiGHS is not available in the 2020 environment that we use to run GLPK try: import highspy diff --git a/runner/utils.py b/runner/utils.py index f4d71ff9..a11df2df 100644 --- a/runner/utils.py +++ b/runner/utils.py @@ -1,8 +1,6 @@ -import collections import re import subprocess from concurrent.futures import ThreadPoolExecutor, as_completed -from enum import Enum from pathlib import Path import matplotlib.colors as mcolors @@ -14,69 +12,6 @@ from IPython.display import display from matplotlib.patches import Patch - -class HighsSolverVariants(str, Enum): - """ - Enumeration of supported HiGHS solver variants. - The solver variants are available at - https://ergo-code.github.io/HiGHS/stable/options/definitions/#option-solver. - - Attributes - ---------- - HIPO : str - HiPO variant of HiGHS. - IPM : str - IPM variant of HiGHS. - IPX : str - IPX variant of HiGHS. - PDLP : str - PDLP variant of HiGHS. - SIMPLEX : str - SIMPLEX variant of HiGHS. - """ - - HIPO = "hipo" - IPM = "ipm" - IPX = "ipx" - PDLP = "pdlp" - SIMPLEX = "simplex" - - -class HighsVariant(str, Enum): - HIPO = "highs-hipo" - HIPO_32 = "highs-hipo-32" - HIPO_64 = "highs-hipo-64" - HIPO_128 = "highs-hipo-128" - HIPO_IPM = "highs-ipm" - - # cli args returns a list of command line arguments for the HiGHS binary. - def cli_args(self) -> collections.abc.Iterable[str]: - args = { - "solver": "hipo", - "run_crossover": "choose", - } - if self == HighsVariant.HIPO_IPM: - args["solver"] = "ipx" - - return [f"--{k}={v}" for k, v in args.items()] - - # options returns the contents for the HiGHS options file. - # passed to the HiGHS binary via --options_file= - def options(self) -> str: - options = {} - match self: - case HighsVariant.HIPO_32: - options["hipo_block_size"] = 32 - case HighsVariant.HIPO_64: - options["hipo_block_size"] = 64 - case HighsVariant.HIPO_128: - options["hipo_block_size"] = 128 - case HighsVariant.HIPO: - options["hipo_block_size"] = 64 - options["hipo_metis_no2hop"] = "true" - return "\n".join(f"{k} = {v}" for k, v in options.items()) - - # ---------- Monitor in-progress runs ---------- From 99f2eb31e5232b996d93e044242dc33d04535b36 Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Mon, 2 Mar 2026 23:12:40 +0100 Subject: [PATCH 29/57] code: re-factor benchmark_solver --- runner/run_benchmarks.py | 156 +++++++++++++++++++++------------------ 1 file changed, 85 insertions(+), 71 deletions(-) diff --git a/runner/run_benchmarks.py b/runner/run_benchmarks.py index 983f1119..18c6fa3f 100644 --- a/runner/run_benchmarks.py +++ b/runner/run_benchmarks.py @@ -57,6 +57,7 @@ import statistics import subprocess import time +import typing from collections import OrderedDict from pathlib import Path from socket import gethostname @@ -338,6 +339,81 @@ def write_csv_summary_row(mean_stddev_csv, benchmark_name, metrics, run_id, time ) +def build_solver_command( + input_file: Path, + solver_name: str, + timeout: int, + solver_version: str, + memory_limit_bytes: int, + reference_benchmark: bool, +) -> list[str]: + command = ["systemd-run"] + if os.geteuid() != 0: + command.append("--user") + + command.extend( + [ + "--scope", + "--property=MemoryMax={}".format(memory_limit_bytes), + "--property=MemorySwapMax=0", + "/usr/bin/time", + "--format", + "MaxResidentSetSizeKB=%M", + "timeout", + "{}s".format(timeout), + "python", + str(Path(__file__).parent / "run_solver.py"), + "--solver_name {}".format(solver_name), + "--input_file {}".format(input_file.as_posix()), + "--solver_version {}".format(solver_version), + ] + ) + + if reference_benchmark: + command.append("--highs_solver_variant hipo") + + return command + + +def return_failure_metrics( + status: str, condition: str, runtime +) -> dict[str, typing.Any]: + reported_runtime = runtime if isinstance(runtime, (int, float)) else None + return { + "status": status, + "condition": condition, + "objective": None, + "runtime": runtime, + "reported_runtime": reported_runtime, + "duality_gap": None, + "max_integrality_violation": None, + } + + +def parse_solver_result(result: subprocess.CompletedProcess, timeout: int) -> dict: + if result.returncode == 124: + print("TIMEOUT") + return return_failure_metrics("TO", "Timeout", timeout) + + # systemd-run uses sigkill (9) or sigterm (15) to terminate + # the process and returns 128 + signal exit code + # subprocess returns - for signals + # these things don't seem very portable + if result.returncode in (137, 143, -9, -15): + print("OUT OF MEMORY") + return return_failure_metrics("OOM", "Out of Memory", "N/A") + + if result.returncode != 0: + print( + f"ERROR running solver. Return code: {result.returncode}\n" + f"Stdout:\n{result.stdout}\n" + f"Stderr:\n{result.stderr}\n" + ) + return return_failure_metrics("ER", "Error", timeout) + + return json.loads(result.stdout.splitlines()[-1]) + + def benchmark_solver( input_file: Path, solver_name: str, @@ -393,34 +469,15 @@ def benchmark_solver( ) ) - command = ["systemd-run"] - - if os.geteuid() != 0: - command.append("--user") - - command.extend( - [ - "--scope", - "--property=MemoryMax={}".format( - memory_limit_bytes - ), # Set resident memory limit - "--property=MemorySwapMax=0", # Disable swap to ensure only physical RAM is used - "/usr/bin/time", - "--format", - "MaxResidentSetSizeKB=%M", - "timeout", - "{}s".format(timeout), - "python", - f"{Path(__file__).parent / 'run_solver.py'}", - "--solver_name {}".format(solver_name), - "--input_file {}".format(input_file.as_posix()), - "--solver_version {}".format(solver_version), - ] + command = build_solver_command( + input_file, + solver_name, + timeout, + solver_version, + memory_limit_bytes, + reference_benchmark, ) - if reference_benchmark: - command.extend(["--highs_solver_variant {}".format("hipo")]) - # Run the command and capture the output result = subprocess.run( command, @@ -436,7 +493,7 @@ def benchmark_solver( / "logs" / f"{Path(input_file).stem}-{solver_name}-{solver_version}.log" ) - if log_file.exists: + if log_file.exists(): with open(log_file, "a") as f: f.write("\nSTDERR:\n") f.write(result.stderr) @@ -449,50 +506,7 @@ def benchmark_solver( except ValueError: print("Failed to parse memory usage from stderr") - if result.returncode == 124: - print("TIMEOUT") - metrics = { - "status": "TO", - "condition": "Timeout", - "objective": None, - "runtime": timeout, - "reported_runtime": timeout, - "duality_gap": None, - "max_integrality_violation": None, - } - # systemd-run uses sigkill (9) or sigterm (15) to terminate the process and returns 128 + signal exit code - # subprocess returns - for signals - # these things don't seem very portable - elif result.returncode in (137, 143, -9, -15): - print("OUT OF MEMORY") - metrics = { - "status": "OOM", - "condition": "Out of Memory", - "objective": None, - "runtime": "N/A", - "reported_runtime": None, - "duality_gap": None, - "max_integrality_violation": None, - } - elif result.returncode != 0: - print( - f"ERROR running solver. Return code: {result.returncode}\n", - f"Stdout:\n{result.stdout}\n", - f"Stderr:\n{result.stderr}\n", - ) - # Errors are also said to have run for `timeout`s, so that they appear - # along with timeouts in charts - metrics = { - "status": "ER", - "condition": "Error", - "objective": None, - "runtime": timeout, - "reported_runtime": timeout, - "duality_gap": None, - "max_integrality_violation": None, - } - else: - metrics = json.loads(result.stdout.splitlines()[-1]) + metrics = parse_solver_result(result, timeout) if metrics["status"] not in {"ok", "TO", "ER", "OOM"}: print(f"WARNING: unknown solver status: {metrics['status']}") From 5eb72472d7fccf1bc2d44047a8ea5737b969c09d Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Mon, 2 Mar 2026 23:20:18 +0100 Subject: [PATCH 30/57] doc: add numpydoc docstring --- runner/run_benchmarks.py | 83 +++++++++++++++++++++++++++++++++++++++- 1 file changed, 82 insertions(+), 1 deletion(-) diff --git a/runner/run_benchmarks.py b/runner/run_benchmarks.py index 18c6fa3f..470844d9 100644 --- a/runner/run_benchmarks.py +++ b/runner/run_benchmarks.py @@ -347,6 +347,31 @@ def build_solver_command( memory_limit_bytes: int, reference_benchmark: bool, ) -> list[str]: + """ + Build the shell command to run a solver with resource limits. + + Parameters + ---------- + input_file : Path + Path to the benchmark problem file to be solved. + solver_name : str + Name of the solver to run (e.g., "highs", "gurobi", "scip", "cbc", "glpk"). + timeout : int + Maximum allowed runtime for the solver in seconds. + solver_version : str + Version string of the solver, passed to the solver script. + memory_limit_bytes : int + Maximum memory the solver process is allowed to use, in bytes. + reference_benchmark : bool + If True, appends the ``--highs_solver_variant hipo`` flag to run + the HiGHS HiPO variant on a reference instance. + + Returns + ------- + command : list of str + The command as a list of strings, suitable for passing to + ``subprocess.run``. + """ command = ["systemd-run"] if os.geteuid() != 0: command.append("--user") @@ -376,8 +401,39 @@ def build_solver_command( def return_failure_metrics( - status: str, condition: str, runtime + status: str, condition: str, runtime: int | float | str ) -> dict[str, typing.Any]: + """ + Build a metrics dictionary for solver failure cases. + + Parameters + ---------- + status : str + Short status code for the run (e.g., ``"TO"``, ``"OOM"``, ``"ER"``). + condition : str + Human-readable termination condition (e.g., ``"Timeout"``, ``"Out of Memory"``, ``"Error"``). + runtime : int, float, or str + Runtime to record in seconds, or a sentinel (e.g., ``"N/A"``) when not applicable. + + Returns + ------- + metrics : dict + Dictionary with the following keys: + - ``status`` : str + The provided short status code. + - ``condition`` : str + The provided termination condition. + - ``objective`` : None + Always ``None`` for failure cases. + - ``runtime`` : int, float, or str + The provided runtime value. + - ``reported_runtime`` : float or None + The numeric runtime if ``runtime`` is an ``int`` or ``float``, otherwise ``None``. + - ``duality_gap`` : None + Always ``None`` for failure cases. + - ``max_integrality_violation`` : None + Always ``None`` for failure cases. + """ reported_runtime = runtime if isinstance(runtime, (int, float)) else None return { "status": status, @@ -391,6 +447,31 @@ def return_failure_metrics( def parse_solver_result(result: subprocess.CompletedProcess, timeout: int) -> dict: + """ + Interpret a subprocess \`CompletedProcess\` from a solver run and produce a metrics dictionary. + + Parameters + ---------- + result : subprocess.CompletedProcess + The result returned by ``subprocess.run`` when executing the solver wrapper. + timeout : int + Timeout value (in seconds) that was enforced for the solver run. Used for timeout/error metrics. + + Returns + ------- + metrics : dict + A metrics dictionary describing the solver outcome. For successful runs this is the JSON-parsed + metrics object produced by the solver wrapper (parsed from the last line of ``result.stdout``). + For failure cases a dictionary produced by ``return_failure_metrics`` is returned with keys: + ``status``, ``condition``, ``objective`` (None), ``runtime``, ``reported_runtime``, + ``duality_gap`` (None), and ``max_integrality_violation`` (None). + + Raises + ------ + ValueError + Not raised by this function directly, but callers should be aware that JSON parsing may raise + exceptions if ``result.stdout`` does not contain valid JSON on the final line. + """ if result.returncode == 124: print("TIMEOUT") return return_failure_metrics("TO", "Timeout", timeout) From 9a7ee281df07933bece73f7aaacc838080583bf1 Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Mon, 2 Mar 2026 23:34:59 +0100 Subject: [PATCH 31/57] code: add unit tests for new methods --- runner/run_benchmarks.py | 2 +- tests/test_run_benchmarks.py | 56 ++++++++++++++++++++++++++++++++++-- 2 files changed, 55 insertions(+), 3 deletions(-) diff --git a/runner/run_benchmarks.py b/runner/run_benchmarks.py index 470844d9..a5818004 100644 --- a/runner/run_benchmarks.py +++ b/runner/run_benchmarks.py @@ -448,7 +448,7 @@ def return_failure_metrics( def parse_solver_result(result: subprocess.CompletedProcess, timeout: int) -> dict: """ - Interpret a subprocess \`CompletedProcess\` from a solver run and produce a metrics dictionary. + Interpret a subprocess `CompletedProcess` from a solver run and produce a metrics dictionary. Parameters ---------- diff --git a/tests/test_run_benchmarks.py b/tests/test_run_benchmarks.py index 1c1c82b4..df7d0187 100644 --- a/tests/test_run_benchmarks.py +++ b/tests/test_run_benchmarks.py @@ -1,8 +1,10 @@ """Unit tests for the run_benchmarks module.""" - +import os +from pathlib import Path from unittest.mock import MagicMock, patch -from runner.run_benchmarks import get_conda_package_versions +from runner import run_benchmarks +from runner.run_benchmarks import get_conda_package_versions, build_solver_command class TestRunBenchmarks: @@ -34,3 +36,53 @@ def test_get_conda_package_versions(self) -> None: with patch("subprocess.run", return_value=mock_result): versions = get_conda_package_versions(solvers_list, env_name) assert versions == expected_dict + + def test_build_command_non_root_includes_user_and_reference_flag(self, monkeypatch: MagicMock) -> None: + """Test that the command includes --user and --highs_solver_variant hipo when not running as root.""" + monkeypatch.setattr(os, "geteuid", lambda: 1000) # non-root + input_file = Path("/tmp/example_problem.lp") + solver_name = "highs" + timeout = 60 + solver_version = "1.2.3" + memory_limit_bytes = 12345678 + + cmd = build_solver_command( + input_file, solver_name, timeout, solver_version, memory_limit_bytes, True + ) + + assert cmd[0] == "systemd-run" + assert "--user" in cmd + assert f"--property=MemoryMax={memory_limit_bytes}" in cmd + assert "--property=MemorySwapMax=0" in cmd + assert "/usr/bin/time" in cmd + assert "--format" in cmd + assert "MaxResidentSetSizeKB=%M" in cmd + assert "timeout" in cmd + assert f"{timeout}s" in cmd + expected_wrapper = str(Path(run_benchmarks.__file__).parent / "run_solver.py") + assert expected_wrapper in cmd + assert f"--solver_name {solver_name}" in cmd + assert f"--input_file {input_file.as_posix()}" in cmd + assert f"--solver_version {solver_version}" in cmd + assert "--highs_solver_variant hipo" in cmd + + def test_build_command_as_root_no_user_and_no_reference(self, monkeypatch: MagicMock) -> None: + """Test that the command does not include --user and --highs_solver_variant hipo""" + monkeypatch.setattr(os, "geteuid", lambda: 0) # root + input_file = Path("/tmp/another.lp") + solver_name = "cbc" + timeout = 30 + solver_version = "2.0" + memory_limit_bytes = 99999 + + cmd = build_solver_command( + input_file, solver_name, timeout, solver_version, memory_limit_bytes, False + ) + + assert "--user" not in cmd + assert f"--property=MemoryMax={memory_limit_bytes}" in cmd + assert f"{timeout}s" in cmd + assert f"--solver_name {solver_name}" in cmd + assert f"--input_file {input_file.as_posix()}" in cmd + assert f"--solver_version {solver_version}" in cmd + assert not any(el == "--highs_solver_variant hipo" for el in cmd) From ffd2b5e72e42b6f25a97900d766e95bb76fe55d0 Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Mon, 2 Mar 2026 23:38:00 +0100 Subject: [PATCH 32/57] code: add unit tests for new methods --- tests/test_run_benchmarks.py | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/tests/test_run_benchmarks.py b/tests/test_run_benchmarks.py index df7d0187..b000033f 100644 --- a/tests/test_run_benchmarks.py +++ b/tests/test_run_benchmarks.py @@ -1,10 +1,11 @@ """Unit tests for the run_benchmarks module.""" + import os from pathlib import Path from unittest.mock import MagicMock, patch from runner import run_benchmarks -from runner.run_benchmarks import get_conda_package_versions, build_solver_command +from runner.run_benchmarks import build_solver_command, get_conda_package_versions class TestRunBenchmarks: @@ -37,7 +38,9 @@ def test_get_conda_package_versions(self) -> None: versions = get_conda_package_versions(solvers_list, env_name) assert versions == expected_dict - def test_build_command_non_root_includes_user_and_reference_flag(self, monkeypatch: MagicMock) -> None: + def test_build_command_non_root_includes_user_and_reference_flag( + self, monkeypatch: MagicMock + ) -> None: """Test that the command includes --user and --highs_solver_variant hipo when not running as root.""" monkeypatch.setattr(os, "geteuid", lambda: 1000) # non-root input_file = Path("/tmp/example_problem.lp") @@ -66,7 +69,9 @@ def test_build_command_non_root_includes_user_and_reference_flag(self, monkeypat assert f"--solver_version {solver_version}" in cmd assert "--highs_solver_variant hipo" in cmd - def test_build_command_as_root_no_user_and_no_reference(self, monkeypatch: MagicMock) -> None: + def test_build_command_as_root_no_user_and_no_reference( + self, monkeypatch: MagicMock + ) -> None: """Test that the command does not include --user and --highs_solver_variant hipo""" monkeypatch.setattr(os, "geteuid", lambda: 0) # root input_file = Path("/tmp/another.lp") From c1dea824958a164e95d74dedab85b9bd1a0232b2 Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Wed, 4 Mar 2026 00:49:49 +0100 Subject: [PATCH 33/57] code: split function --- runner/run_benchmarks.py | 147 ++++++++++++++++++-------- tests/test_run_benchmarks.py | 199 ++++++++++++++++++++++++++++++++++- 2 files changed, 298 insertions(+), 48 deletions(-) diff --git a/runner/run_benchmarks.py b/runner/run_benchmarks.py index a5818004..cf01f2fe 100644 --- a/runner/run_benchmarks.py +++ b/runner/run_benchmarks.py @@ -24,11 +24,11 @@ python runner/run_benchmarks.py [OPTIONS] -Arguments ---------- -benchmark_yaml : str +Parameters +------------ +--benchmark_yaml_path : str Path to the benchmark configuration YAML file (e.g., ../results/metadata.yaml). -year : str +--year : str Solver release year (e.g., 2020-2025). --solvers : list of str, optional Space-separated list of solvers to run. Defaults to all supported solvers. @@ -39,8 +39,8 @@ --run_id : str, optional Unique identifier for this benchmark run. -Outputs -------- +Returns +-------- - Results for each solver/benchmark instance are written to `results/benchmark_results.csv`. - Summary statistics (mean, stddev) are written to `results/benchmark_results_mean_stddev.csv`. - Logs and solution files are saved in the `runner/logs/` and `runner/solutions/` directories. @@ -53,6 +53,7 @@ import json import logging import os +import re import shutil import statistics import subprocess @@ -130,6 +131,63 @@ def get_conda_package_versions(solvers: list[str], env_name=None) -> dict[str, s raise ValueError(f"Error executing conda command: {e.stderr or str(e)}") +def _download_via_requests(url: str, dest: Path, chunk_size: int = 8192) -> None: + """ + Download a file over HTTP(S) using HTTP/HTTPS requests.. + + Parameters + ---------- + url : str + HTTP or HTTPS URL to download. + dest : pathlib.Path + Local destination path where the downloaded file will be written. + chunk_size : int, optional + Size in bytes of chunks to read from the response stream (default: 8192). + """ + tmp = dest.with_suffix(dest.suffix + ".tmp") + with requests.get(url, stream=True) as r: + r.raise_for_status() + with open(tmp, "wb") as f: + for chunk in r.iter_content(chunk_size=chunk_size): + if chunk: + f.write(chunk) + os.replace(tmp, dest) + logger.info("Downloaded {} to {} via requests".format(url, dest)) + + +def _download_via_gsutil(url: str, dest: Path) -> None: + """ + Download a file from Google Cloud Storage using the gsutil command. + + Parameters + ---------- + url : str + GCS URL to download. Must start with ``gs://``. + dest : pathlib.Path + Local destination path where the downloaded file will be written. + + Raises + ------ + subprocess.CalledProcessError + If the `gsutil` command exits with a non-zero status. + """ + subprocess.run( + ["gsutil", "cp", url, str(dest)], check=True, capture_output=True, text=True + ) + logger.info("Downloaded %s to %s via gsutil", url, dest) + + +def _unzip_gz(path: Path) -> Path: + if path.suffix != ".gz": + return path + uncompressed = path.with_suffix("") + with gzip.open(path, "rb") as gz_f, open(uncompressed, "wb") as out_f: + shutil.copyfileobj(gz_f, out_f) + os.remove(path) + logger.info("Unzipped %s -> %s", path, uncompressed) + return uncompressed + + def download_benchmark_file(url: str, dest_path: Path) -> None: """ Download a file from a URL and save it locally, unzipping if necessary. @@ -148,47 +206,26 @@ def download_benchmark_file(url: str, dest_path: Path) -> None: - Automatically unzips `.gz` files after download and removes the compressed file. - Creates the destination directory if it does not exist. """ - # Ensure the destination folder exists - os.makedirs(dest_path.parent, exist_ok=True) + dest_path = Path(dest_path) + dest_path.parent.mkdir(parents=True, exist_ok=True) - # If dest_path ends with .gz, prepare for the uncompressed version - if dest_path.suffix == ".gz": - uncompressed_dest_path = dest_path.with_suffix("") - else: - uncompressed_dest_path = dest_path - - if os.path.exists(uncompressed_dest_path): - logger.info( - "File already exists at {}. Skipping download.".format( - uncompressed_dest_path - ) - ) + # determine the final uncompressed path to check for existing file + final_uncompressed = ( + dest_path.with_suffix("") if dest_path.suffix == ".gz" else dest_path + ) + if final_uncompressed.exists(): + logger.info("File already exists at %s. Skipping download.", final_uncompressed) return + # download to dest_path (compressed or not) if url.startswith("gs://"): - # GCS file, so download using gsutil - logger.info("Downloading {} to {} using gsutil...".format(url, dest_path)) - cmd = ["gsutil", "cp", url, dest_path] - _result = subprocess.run(cmd, capture_output=True, text=True, check=True) - logger.info("done.") + _download_via_gsutil(url, dest_path) else: - # Perform the download with streaming to handle large files - logger.info("Downloading {} to {}...".format(url, dest_path)) - with requests.get(url, stream=True) as response: - response.raise_for_status() - with open(dest_path, "wb") as f: - for chunk in response.iter_content(chunk_size=8192): - f.write(chunk) - logger.info("done.") + _download_via_requests(url, dest_path) + # if compressed, unzip and remove the .gz if dest_path.suffix == ".gz": - logger.info("Unzipping {}...".format(dest_path)) - with gzip.open(dest_path, "rb") as gz_file: - uncompressed_file_path = dest_path.with_suffix("") - with open(uncompressed_file_path, "wb") as uncompressed_file: - shutil.copyfileobj(gz_file, uncompressed_file) - os.remove(dest_path) - logger.info("Unzipped to {}.".format(uncompressed_file_path)) + _unzip_gz(dest_path) def parse_memory(output: str) -> float: @@ -338,6 +375,16 @@ def write_csv_summary_row(mean_stddev_csv, benchmark_name, metrics, run_id, time ] ) +def _split_highs_solver_name(solver_name: str) -> tuple[str, str | None]: + """ + Split solver names like 'highs-hipo', 'highs ipm' or 'highs' into + (base_solver, variant). Returns (solver_name, None) for non-highs names. + """ + m = re.match(r'^(highs)(?:[-\s](?P[\w-]+))?$', solver_name.lower()) + if m: + return m.group(1), m.group('variant') + return solver_name, None + def build_solver_command( input_file: Path, @@ -372,6 +419,8 @@ def build_solver_command( The command as a list of strings, suitable for passing to ``subprocess.run``. """ + base_solver, variant = _split_highs_solver_name(solver_name) + command = ["systemd-run"] if os.geteuid() != 0: command.append("--user") @@ -394,7 +443,9 @@ def build_solver_command( ] ) - if reference_benchmark: + if variant: + command.append(f"--highs_solver_variant {variant}") + elif reference_benchmark and base_solver.lower() == "highs": command.append("--highs_solver_variant hipo") return command @@ -550,6 +601,8 @@ def benchmark_solver( ) ) + + command = build_solver_command( input_file, solver_name, @@ -702,7 +755,7 @@ def main( # TODO share this code with validate_urls.py gz = instance["URL"].endswith(".gz") base = instance["URL"][:-3] if gz else instance["URL"] - ext = base[base.rfind(".") :] + ext = base[base.rfind("."):] # If no dot was found, ext will be the full string; make it empty instead if "." not in ext: ext = "" @@ -869,7 +922,8 @@ def main( last_reference_run = current_time else: print( - f"Skipping reference benchmark (last run {time_since_last_run:.1f}s ago, interval: {reference_interval}s)", + f"Skipping reference benchmark (last run {time_since_last_run:.1f}s ago," + f" interval: {reference_interval}s)", flush=True, ) @@ -881,10 +935,10 @@ def main( description="Run the benchmarks specified in the given file." ) parser.add_argument( - "benchmark_yaml_path", type=str, help="Path to the benchmarks YAML file." + "--benchmark_yaml_path", type=str, help="Path to the benchmarks YAML file." ) parser.add_argument( - "year", + "--year", type=str, help="Denote the benchmarks as having been run on solvers from given year.", ) @@ -893,7 +947,8 @@ def main( type=str, nargs="+", default=["highs", "scip", "cbc", "gurobi", "glpk"], - help="The list of solvers to run. Solvers not present in the active environment will be skipped. For 2025, highs variants are available: highs-hipo, highs-ipm.", + help="The list of solvers to run. Solvers not present in the active environment will be skipped. " + "For 2025, highs variants are available: highs-hipo, highs-ipm.", ) parser.add_argument( "--append", diff --git a/tests/test_run_benchmarks.py b/tests/test_run_benchmarks.py index b000033f..2aacd8c6 100644 --- a/tests/test_run_benchmarks.py +++ b/tests/test_run_benchmarks.py @@ -1,11 +1,20 @@ """Unit tests for the run_benchmarks module.""" +import gzip import os +import subprocess from pathlib import Path -from unittest.mock import MagicMock, patch +from unittest.mock import MagicMock, Mock, patch + +import pytest +import requests from runner import run_benchmarks -from runner.run_benchmarks import build_solver_command, get_conda_package_versions +from runner.run_benchmarks import ( + build_solver_command, + download_benchmark_file, + get_conda_package_versions, +) class TestRunBenchmarks: @@ -91,3 +100,189 @@ def test_build_command_as_root_no_user_and_no_reference( assert f"--input_file {input_file.as_posix()}" in cmd assert f"--solver_version {solver_version}" in cmd assert not any(el == "--highs_solver_variant hipo" for el in cmd) + + def test_download_regular_file_http(self, tmp_path: Path) -> None: + """Test downloading a regular file from HTTP URL.""" + dest_path = tmp_path / "data.txt" + test_content = b"test file content" + + with patch("requests.get") as mock_get: + mock_response = MagicMock() + mock_response.iter_content.return_value = [test_content] + mock_get.return_value.__enter__.return_value = mock_response + + download_benchmark_file("http://example.com/data.txt", dest_path) + + assert dest_path.exists() + assert dest_path.read_bytes() == test_content + mock_get.assert_called_once_with("http://example.com/data.txt", stream=True) + + def test_download_gzipped_file_http(self, tmp_path: Path) -> None: + """Test downloading and unzipping a .gz file from HTTP.""" + dest_path = tmp_path / "data.txt.gz" + uncompressed_path = tmp_path / "data.txt" + original_content = b"original file content" + + # Create gzipped content + gzipped_content = gzip.compress(original_content) + + with patch("requests.get") as mock_get: + mock_response = MagicMock() + mock_response.iter_content.return_value = [gzipped_content] + mock_get.return_value.__enter__.return_value = mock_response + + download_benchmark_file("http://example.com/data.txt.gz", dest_path) + + # Verify uncompressed file exists and compressed file is removed + assert uncompressed_path.exists() + assert not dest_path.exists() + assert uncompressed_path.read_bytes() == original_content + + def test_skip_download_if_file_exists(self, tmp_path: Path) -> None: + """Test that download is skipped if the file already exists.""" + dest_path = tmp_path / "data.txt" + dest_path.write_text("existing content") + + with patch("requests.get") as mock_get: + download_benchmark_file("http://example.com/data.txt", dest_path) + + # Verify no download occurred + mock_get.assert_not_called() + assert dest_path.read_text() == "existing content" + + def test_skip_download_if_uncompressed_file_exists_with_gz_url( + self, tmp_path: Path + ) -> None: + """Test that download is skipped if uncompressed file exists when .gz URL is provided.""" + gz_path = tmp_path / "data.txt.gz" + uncompressed_path = tmp_path / "data.txt" + uncompressed_path.write_text("existing content") + + with patch("requests.get") as mock_get: + download_benchmark_file("http://example.com/data.txt.gz", gz_path) + + # Verify no download occurred + mock_get.assert_not_called() + assert uncompressed_path.read_text() == "existing content" + assert not gz_path.exists() + + def test_create_destination_directory_if_not_exists(self, tmp_path: Path) -> None: + """Test that destination directory is created if it doesn't exist.""" + nested_path = tmp_path / "subdir" / "nested" / "data.txt" + + with patch("requests.get") as mock_get: + mock_response = MagicMock() + mock_response.iter_content.return_value = [b"content"] + mock_get.return_value.__enter__.return_value = mock_response + + download_benchmark_file("http://example.com/data.txt", nested_path) + + assert nested_path.parent.exists() + assert nested_path.exists() + + def test_http_download_raises_on_failed_response(self, tmp_path: Path) -> None: + """Test that HTTP errors are properly raised.""" + dest_path = tmp_path / "data.txt" + + with patch("requests.get") as mock_get: + mock_response = MagicMock() + mock_response.raise_for_status.side_effect = requests.HTTPError( + "404 Not Found" + ) + mock_get.return_value.__enter__.return_value = mock_response + + with pytest.raises(requests.HTTPError): + download_benchmark_file("http://example.com/missing.txt", dest_path) + + def test_gsutil_download_fails(self, tmp_path: Path) -> None: + """Test that gsutil command failures are properly raised.""" + dest_path = tmp_path / "data.txt" + + with patch("subprocess.run") as mock_run: + mock_run.side_effect = subprocess.CalledProcessError(1, "gsutil cp") + + with pytest.raises(subprocess.CalledProcessError): + download_benchmark_file("gs://bucket-name/data.txt", dest_path) + + def test_gzip_decompression_error(self, tmp_path: Path) -> None: + """Test handling of corrupted gzip files.""" + dest_path = tmp_path / "data.txt.gz" + # Write invalid gzip content + dest_path.write_bytes(b"not a valid gzip file") + + with patch("requests.get") as mock_get: + mock_response = MagicMock() + mock_response.iter_content.return_value = [b"not a valid gzip file"] + mock_get.return_value.__enter__.return_value = mock_response + + with pytest.raises(gzip.BadGzipFile): + download_benchmark_file("http://example.com/data.txt.gz", dest_path) + + def test_large_file_streaming(self, tmp_path: Path) -> None: + """Test that large files are downloaded in chunks.""" + dest_path = tmp_path / "large_file.bin" + # 10 chunks of 8KB each + chunks = [b"x" * 8192 for _ in range(10)] + + with patch("requests.get") as mock_get: + mock_response = MagicMock() + mock_response.iter_content.return_value = chunks + mock_get.return_value.__enter__.return_value = mock_response + + download_benchmark_file("http://example.com/large_file.bin", dest_path) + + assert dest_path.stat().st_size == 8192 * 10 + mock_response.iter_content.assert_called_once_with(chunk_size=8192) + + def test_full_workflow_gcs_gzip(self, tmp_path: Path) -> None: + """Test complete workflow: GCS download + gzip decompression.""" + dest_path = tmp_path / "benchmark.tar.gz" + uncompressed_path = tmp_path / "benchmark.tar" + original_content = b"tar archive content here" + + gzipped = gzip.compress(original_content) + + with patch("subprocess.run") as mock_run: + # Simulate gsutil writing the gzipped file + def write_file(*args, **kwargs): + dest_path.write_bytes(gzipped) + return Mock(returncode=0) + + mock_run.side_effect = write_file + + download_benchmark_file("gs://bucket-name/benchmark.tar.gz", dest_path) + + assert uncompressed_path.exists() + assert not dest_path.exists() + assert uncompressed_path.read_bytes() == original_content + + def test_file_with_multiple_dots_in_name(self, tmp_path: Path) -> None: + """Test handling files with multiple dots (e.g., data.backup.txt.gz).""" + dest_path = tmp_path / "data.backup.txt.gz" + uncompressed_path = tmp_path / "data.backup.txt" + content = b"backup data" + gzipped = gzip.compress(content) + + with patch("requests.get") as mock_get: + mock_response = MagicMock() + mock_response.iter_content.return_value = [gzipped] + mock_get.return_value.__enter__.return_value = mock_response + + download_benchmark_file("http://example.com/data.backup.txt.gz", dest_path) + + assert uncompressed_path.exists() + assert uncompressed_path.read_bytes() == content + + def test_empty_file_download(self, tmp_path: Path) -> None: + """Test downloading an empty file.""" + dest_path = tmp_path / "empty.txt" + + with patch("requests.get") as mock_get: + mock_response = MagicMock() + mock_response.iter_content.return_value = [] + mock_get.return_value.__enter__.return_value = mock_response + + download_benchmark_file("http://example.com/empty.txt", dest_path) + + assert dest_path.exists() + assert dest_path.stat().st_size == 0 From 5662f1fe8339f71361892c632c7dadbef21e7cc7 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 3 Mar 2026 23:52:11 +0000 Subject: [PATCH 34/57] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- runner/run_benchmarks.py | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/runner/run_benchmarks.py b/runner/run_benchmarks.py index cf01f2fe..31e6d4e4 100644 --- a/runner/run_benchmarks.py +++ b/runner/run_benchmarks.py @@ -375,14 +375,15 @@ def write_csv_summary_row(mean_stddev_csv, benchmark_name, metrics, run_id, time ] ) + def _split_highs_solver_name(solver_name: str) -> tuple[str, str | None]: """ Split solver names like 'highs-hipo', 'highs ipm' or 'highs' into (base_solver, variant). Returns (solver_name, None) for non-highs names. """ - m = re.match(r'^(highs)(?:[-\s](?P[\w-]+))?$', solver_name.lower()) + m = re.match(r"^(highs)(?:[-\s](?P[\w-]+))?$", solver_name.lower()) if m: - return m.group(1), m.group('variant') + return m.group(1), m.group("variant") return solver_name, None @@ -601,8 +602,6 @@ def benchmark_solver( ) ) - - command = build_solver_command( input_file, solver_name, @@ -755,7 +754,7 @@ def main( # TODO share this code with validate_urls.py gz = instance["URL"].endswith(".gz") base = instance["URL"][:-3] if gz else instance["URL"] - ext = base[base.rfind("."):] + ext = base[base.rfind(".") :] # If no dot was found, ext will be the full string; make it empty instead if "." not in ext: ext = "" @@ -948,7 +947,7 @@ def main( nargs="+", default=["highs", "scip", "cbc", "gurobi", "glpk"], help="The list of solvers to run. Solvers not present in the active environment will be skipped. " - "For 2025, highs variants are available: highs-hipo, highs-ipm.", + "For 2025, highs variants are available: highs-hipo, highs-ipm.", ) parser.add_argument( "--append", From 0d1ca60621dc0436b620dac9df333ae7afb2c642 Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Wed, 4 Mar 2026 11:19:50 +0100 Subject: [PATCH 35/57] code: add unit test for _split_highs_solver_name --- runner/run_benchmarks.py | 46 +++++++++++++++++++++++++++++------- tests/test_run_benchmarks.py | 21 ++++++++++++++++ 2 files changed, 59 insertions(+), 8 deletions(-) diff --git a/runner/run_benchmarks.py b/runner/run_benchmarks.py index cf01f2fe..6763d827 100644 --- a/runner/run_benchmarks.py +++ b/runner/run_benchmarks.py @@ -375,14 +375,46 @@ def write_csv_summary_row(mean_stddev_csv, benchmark_name, metrics, run_id, time ] ) + def _split_highs_solver_name(solver_name: str) -> tuple[str, str | None]: """ - Split solver names like 'highs-hipo', 'highs ipm' or 'highs' into - (base_solver, variant). Returns (solver_name, None) for non-highs names. + Split solver names into base solver and variant components. + + Parses solver names like 'highs-hipo', 'highs ipm', or 'highs' into + their base solver and variant parts. For non-highs solvers, returns + the original name with no variant. + + Parameters + ---------- + solver_name : str + The solver name to split. Can be a highs variant like 'highs-hipo', + 'highs ipm', 'highs', or any other solver name. + + Returns + ------- + tuple[str, str | None] + A tuple containing: + - base_solver : str + The base solver name ('highs' for highs variants, otherwise + the original solver_name). + - variant : str or None + The variant suffix if present (e.g., 'hipo', 'ipm'), or None + if no variant is found. + + Examples + -------- + >>> _split_highs_solver_name("highs-hipo") + ('highs', 'hipo') + + >>> _split_highs_solver_name("highs") + ('highs', None) + + >>> _split_highs_solver_name("glpk") + ('glpk', None) """ - m = re.match(r'^(highs)(?:[-\s](?P[\w-]+))?$', solver_name.lower()) + m = re.match(r"^(highs)(?:[-\s](?P[\w-]+))?$", solver_name.lower()) if m: - return m.group(1), m.group('variant') + return m.group(1), m.group("variant") return solver_name, None @@ -601,8 +633,6 @@ def benchmark_solver( ) ) - - command = build_solver_command( input_file, solver_name, @@ -755,7 +785,7 @@ def main( # TODO share this code with validate_urls.py gz = instance["URL"].endswith(".gz") base = instance["URL"][:-3] if gz else instance["URL"] - ext = base[base.rfind("."):] + ext = base[base.rfind(".") :] # If no dot was found, ext will be the full string; make it empty instead if "." not in ext: ext = "" @@ -948,7 +978,7 @@ def main( nargs="+", default=["highs", "scip", "cbc", "gurobi", "glpk"], help="The list of solvers to run. Solvers not present in the active environment will be skipped. " - "For 2025, highs variants are available: highs-hipo, highs-ipm.", + "For 2025, highs variants are available: highs-hipo, highs-ipm.", ) parser.add_argument( "--append", diff --git a/tests/test_run_benchmarks.py b/tests/test_run_benchmarks.py index 2aacd8c6..7f3550d7 100644 --- a/tests/test_run_benchmarks.py +++ b/tests/test_run_benchmarks.py @@ -11,6 +11,7 @@ from runner import run_benchmarks from runner.run_benchmarks import ( + _split_highs_solver_name, build_solver_command, download_benchmark_file, get_conda_package_versions, @@ -286,3 +287,23 @@ def test_empty_file_download(self, tmp_path: Path) -> None: assert dest_path.exists() assert dest_path.stat().st_size == 0 + + @pytest.mark.parametrize( + "input_name, expected_base, expected_variant", + [ + ("highs", "highs", None), + ("highs-hipo", "highs", "hipo"), + ("highs-ipm", "highs", "ipm"), + ("Highs-IPX", "highs", "ipx"), + ("HIGHS-SIMPLEX", "highs", "simplex"), + ("cbc", "cbc", None), + ("scip", "scip", None), + ], + ) + def test_split_highs_solver_name_variants_parametrized( + self, input_name: str, expected_base: str, expected_variant: str | None + ) -> None: + """Test the _split_highs_solver_name function with various input formats.""" + base, variant = _split_highs_solver_name(input_name) + assert base == expected_base + assert variant == expected_variant From 489f996272a57904f944a2d4d3e09ecec26b24e5 Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Wed, 4 Mar 2026 11:21:01 +0100 Subject: [PATCH 36/57] code: add unit test for _split_highs_solver_name --- runner/run_benchmarks.py | 10 +++++----- tests/test_run_benchmarks.py | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/runner/run_benchmarks.py b/runner/run_benchmarks.py index 6763d827..8110565a 100644 --- a/runner/run_benchmarks.py +++ b/runner/run_benchmarks.py @@ -376,7 +376,7 @@ def write_csv_summary_row(mean_stddev_csv, benchmark_name, metrics, run_id, time ) -def _split_highs_solver_name(solver_name: str) -> tuple[str, str | None]: +def get_solver_name_and_version(solver_name: str) -> tuple[str, str | None]: """ Split solver names into base solver and variant components. @@ -403,13 +403,13 @@ def _split_highs_solver_name(solver_name: str) -> tuple[str, str | None]: Examples -------- - >>> _split_highs_solver_name("highs-hipo") + >>> get_solver_name_and_version("highs-hipo") ('highs', 'hipo') - >>> _split_highs_solver_name("highs") + >>> get_solver_name_and_version("highs") ('highs', None) - >>> _split_highs_solver_name("glpk") + >>> _get_solver_name_and_version("glpk") ('glpk', None) """ m = re.match(r"^(highs)(?:[-\s](?P[\w-]+))?$", solver_name.lower()) @@ -451,7 +451,7 @@ def build_solver_command( The command as a list of strings, suitable for passing to ``subprocess.run``. """ - base_solver, variant = _split_highs_solver_name(solver_name) + base_solver, variant = get_solver_name_and_version(solver_name) command = ["systemd-run"] if os.geteuid() != 0: diff --git a/tests/test_run_benchmarks.py b/tests/test_run_benchmarks.py index 7f3550d7..2a1f1480 100644 --- a/tests/test_run_benchmarks.py +++ b/tests/test_run_benchmarks.py @@ -11,10 +11,10 @@ from runner import run_benchmarks from runner.run_benchmarks import ( - _split_highs_solver_name, build_solver_command, download_benchmark_file, get_conda_package_versions, + get_solver_name_and_version, ) @@ -304,6 +304,6 @@ def test_split_highs_solver_name_variants_parametrized( self, input_name: str, expected_base: str, expected_variant: str | None ) -> None: """Test the _split_highs_solver_name function with various input formats.""" - base, variant = _split_highs_solver_name(input_name) + base, variant = get_solver_name_and_version(input_name) assert base == expected_base assert variant == expected_variant From 3a239fa023f8d06df63a9ff2272880034be1077d Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Wed, 4 Mar 2026 15:49:05 +0100 Subject: [PATCH 37/57] code: new changes --- runner/run_benchmarks.py | 70 +++++++++++++++++----------------------- 1 file changed, 30 insertions(+), 40 deletions(-) diff --git a/runner/run_benchmarks.py b/runner/run_benchmarks.py index 8110565a..5a849221 100644 --- a/runner/run_benchmarks.py +++ b/runner/run_benchmarks.py @@ -152,7 +152,7 @@ def _download_via_requests(url: str, dest: Path, chunk_size: int = 8192) -> None if chunk: f.write(chunk) os.replace(tmp, dest) - logger.info("Downloaded {} to {} via requests".format(url, dest)) + logger.info(f"Downloaded {url} to {dest} via requests") def _download_via_gsutil(url: str, dest: Path) -> None: @@ -174,7 +174,7 @@ def _download_via_gsutil(url: str, dest: Path) -> None: subprocess.run( ["gsutil", "cp", url, str(dest)], check=True, capture_output=True, text=True ) - logger.info("Downloaded %s to %s via gsutil", url, dest) + logger.info(f"Downloaded {url} to {dest} via gsutil") def _unzip_gz(path: Path) -> Path: @@ -184,7 +184,7 @@ def _unzip_gz(path: Path) -> Path: with gzip.open(path, "rb") as gz_f, open(uncompressed, "wb") as out_f: shutil.copyfileobj(gz_f, out_f) os.remove(path) - logger.info("Unzipped %s -> %s", path, uncompressed) + logger.info(f"Unzipped {path} -> {uncompressed}") return uncompressed @@ -214,7 +214,7 @@ def download_benchmark_file(url: str, dest_path: Path) -> None: dest_path.with_suffix("") if dest_path.suffix == ".gz" else dest_path ) if final_uncompressed.exists(): - logger.info("File already exists at %s. Skipping download.", final_uncompressed) + logger.info(f"File already exists at {final_uncompressed}. Skipping download.") return # download to dest_path (compressed or not) @@ -556,7 +556,7 @@ def parse_solver_result(result: subprocess.CompletedProcess, timeout: int) -> di exceptions if ``result.stdout`` does not contain valid JSON on the final line. """ if result.returncode == 124: - print("TIMEOUT") + logger.info("TIMEOUT") return return_failure_metrics("TO", "Timeout", timeout) # systemd-run uses sigkill (9) or sigterm (15) to terminate @@ -564,11 +564,11 @@ def parse_solver_result(result: subprocess.CompletedProcess, timeout: int) -> di # subprocess returns - for signals # these things don't seem very portable if result.returncode in (137, 143, -9, -15): - print("OUT OF MEMORY") + logger.info("OUT OF MEMORY") return return_failure_metrics("OOM", "Out of Memory", "N/A") if result.returncode != 0: - print( + logger.info( f"ERROR running solver. Return code: {result.returncode}\n" f"Stdout:\n{result.stdout}\n" f"Stderr:\n{result.stderr}\n" @@ -628,9 +628,7 @@ def benchmark_solver( memory_limit_bytes = int(available_memory_bytes * 0.95) memory_limit_mb = memory_limit_bytes / (1024 * 1024) logger.info( - "Setting memory limit to {:.2f} MB (95% of available memory)".format( - memory_limit_mb - ) + f"Setting memory limit to {memory_limit_mb:.2f} MB (95% of available memory)." ) command = build_solver_command( @@ -662,18 +660,18 @@ def benchmark_solver( f.write("\nSTDERR:\n") f.write(result.stderr) else: - print(f"ERROR: couldn't find log file {log_file}") + logger.info(f"ERROR: couldn't find log file {log_file}") memory = None try: memory = parse_memory(result.stderr) except ValueError: - print("Failed to parse memory usage from stderr") + logger.error("Failed to parse memory usage from stderr") metrics = parse_solver_result(result, timeout) if metrics["status"] not in {"ok", "TO", "ER", "OOM"}: - print(f"WARNING: unknown solver status: {metrics['status']}") + logger.info(f"WARNING: unknown solver status: {metrics['status']}") metrics["memory"] = memory metrics["timeout"] = timeout @@ -704,7 +702,7 @@ def main( -1 ] # the api will return a response like projects/319823961160/machineTypes/c4-highmem-8 except Exception as e: - print(f"Error getting VM instance type: {e}") + logger.error(f"Error getting VM instance type: {e}") environment_metadata["vm_instance_type"] = "unknown" try: @@ -714,7 +712,7 @@ def main( text=True, ).stdout.strip() except Exception as e: - print(f"Error getting git commit hash: {e}") + logger.error(f"Error getting git commit hash: {e}") environment_metadata["solver_benchmark_version"] = "unknown" try: @@ -724,14 +722,14 @@ def main( headers={"Metadata-Flavor": "Google"}, ).text.split("/")[-1] except Exception as e: - print(f"Error getting VM zone: {e}") + logger.error(f"Error getting VM zone: {e}") environment_metadata["vm_zone"] = "unknown" if run_id is None: run_id = f"{time.strftime('%Y%m%d_%H%M%S')}_{hostname}" - print(f"Generated run_id: {run_id}") + logger.info(f"Generated run_id: {run_id}") else: - print(f"Using provided run_id: {run_id}") + logger.info(f"Using provided run_id: {run_id}") size_categories = None # TODO add this to CLI args results = {} @@ -811,7 +809,7 @@ def main( } ) - print( + logger.info( f"Found {len(processed_benchmarks)} benchmark instances" + ("" if size_categories is None else f" matching {size_categories}") ) @@ -832,9 +830,7 @@ def main( ) # Latest CBC release is in 2024 ): logger.info( - "WARNING: skipping {} in {} because this benchmark instance is size L".format( - solver, year - ) + f"WARNING: skipping {solver} in {year} because this benchmark instance is size L." ) continue @@ -843,15 +839,14 @@ def main( year != "2025" or benchmark["class"] != "LP" ): logger.info( - "Solver {} is only available for LP benchmarks and year 2025. Current year: {}, problem class: {}. Skipping.".format( - solver, year, benchmark["class"] - ) + f"Solver {solver} is only available for LP benchmarks and year 2025." + f" Current year: {year}, problem class: {benchmark['class']}. Skipping." ) continue solver_version = solvers_versions.get(solver) if not solver_version: - logger.info("Solver {} is not available. Skipping.".format(solver)) + logger.info(f"Solver {solver} is not available. Skipping.") continue metrics = {} @@ -859,9 +854,8 @@ def main( memory_usages = [] for i in range(iterations): - print( - f"Running solver {solver} (version {solver_version}) on {benchmark['path']} ({i})...", - flush=True, + logger.info( + f"Running solver {solver} (version {solver_version}) on {benchmark['path']} ({i})..." ) # Record timestamp before running the solver @@ -923,9 +917,8 @@ def main( if last_reference_run == 0 or time_since_last_run >= int( reference_interval ): - print( - f"Running reference benchmark with HiGHS HiPO (interval: {reference_interval}s)...", - flush=True, + logger.info( + f"Running reference benchmark with HiGHS HiPO (interval: {reference_interval}s)..." ) reference_metrics = benchmark_solver( reference_benchmark_path, @@ -951,10 +944,8 @@ def main( # Update the last reference run time last_reference_run = current_time else: - print( - f"Skipping reference benchmark (last run {time_since_last_run:.1f}s ago," - f" interval: {reference_interval}s)", - flush=True, + logger.info( + f"Skipping reference benchmark (last run {time_since_last_run:.1f}s ago, interval: {reference_interval}s)" ) return results @@ -965,10 +956,10 @@ def main( description="Run the benchmarks specified in the given file." ) parser.add_argument( - "--benchmark_yaml_path", type=str, help="Path to the benchmarks YAML file." + "benchmark_yaml_path", type=str, help="Path to the benchmarks YAML file." ) parser.add_argument( - "--year", + "year", type=str, help="Denote the benchmarks as having been run on solvers from given year.", ) @@ -977,8 +968,7 @@ def main( type=str, nargs="+", default=["highs", "scip", "cbc", "gurobi", "glpk"], - help="The list of solvers to run. Solvers not present in the active environment will be skipped. " - "For 2025, highs variants are available: highs-hipo, highs-ipm.", + help="The list of solvers to run. Solvers not present in the active environment will be skipped. For 2025, highs variants are available: highs-hipo, highs-ipm, highs-hipo-32, highs-hipo-64, highs-hipo-128.", ) parser.add_argument( "--append", From f70597cfe1e7a6a3fa5a6524e62aa09b1e61ebda Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Wed, 4 Mar 2026 18:15:57 +0100 Subject: [PATCH 38/57] code: correct solver_name --- results/benchmark_results.csv | 2763 +-------------------- results/benchmark_results_mean_stddev.csv | 1 + runner/run_benchmarks.py | 2 +- 3 files changed, 3 insertions(+), 2763 deletions(-) create mode 100644 results/benchmark_results_mean_stddev.csv diff --git a/results/benchmark_results.csv b/results/benchmark_results.csv index 29ada244..c134b60e 100644 --- a/results/benchmark_results.csv +++ b/results/benchmark_results.csv @@ -1,2762 +1 @@ -Benchmark,Size,Solver,Solver Version,Solver Release Year,Status,Termination Condition,Runtime (s),Memory Usage (MB),Objective Value,Max Integrality Violation,Duality Gap,Reported Runtime (s),Timeout,Hostname,Run ID,Timestamp,VM Instance Type,VM Zone,Solver benchmark version,bench-size,solver-version,Benchmark1 -TIMES-GEO-global-netzero,31-20ts,gurobi,13.0.0,2025.0,ok,optimal,30621.769837542,17795.476,217368601.07479045,,,30590.7080180645,86400.0,benchmark-instance-l-19,20251212-run-Ls,2025-12-12 19:27:23.962157,c4-highmem-16,europe-north2-b,90fca5f,TIMES-GEO-global-netzero-31-20ts,gurobi-13.0.0,TIMES-GEO-global-netzero -TIMES-GEO-global-netzero,31-20ts,highs-hipo,1.12.0-hipo,2025.0,warning,Not Set,64715.836038680005,14280.74,,,,64715.836038680005,86400.0,benchmark-instance-l-19,20251212-run-Ls,2025-12-13 04:01:38.198589,c4-highmem-16,europe-north2-b,90fca5f,TIMES-GEO-global-netzero-31-20ts,highs-hipo-1.12.0-hipo,TIMES-GEO-global-netzero -TIMES-GEO-global-netzero,31-20ts,highs-ipx,1.12.0-hipo,2025.0,warning,Not Set,70080.397364883,9782.604,,,,70080.397364883,86400.0,benchmark-instance-l-19,20251212-run-Ls,2025-12-13 22:03:17.152733,c4-highmem-16,europe-north2-b,90fca5f,TIMES-GEO-global-netzero-31-20ts,highs-ipx-1.12.0-hipo,TIMES-GEO-global-netzero -TIMES-GEO-global-netzero,31-20ts,highs,1.12.0,2025.0,ER,unknown,62869.74497941398,17229.104,0.0,,,62820.87901353836,86400.0,benchmark-instance-l-19,20251212-run-Ls,2025-12-14 17:34:17.922231,c4-highmem-16,europe-north2-b,90fca5f,TIMES-GEO-global-netzero-31-20ts,highs-1.12.0,TIMES-GEO-global-netzero -TIMES-GEO-global-netzero,31-20ts,scip,10.0.0,2025.0,TO,Timeout,86400.0,39357.552,,,,86400.0,86400.0,benchmark-instance-l-19,20251212-run-Ls,2025-12-15 11:05:58.727551,c4-highmem-16,europe-north2-b,90fca5f,TIMES-GEO-global-netzero-31-20ts,scip-10.0.0,TIMES-GEO-global-netzero -TIMES-GEO-global-netzero,31-20ts,cbc,2.10.12,2024.0,TO,Timeout,86400.0,2498.936,,,,86400.0,86400.0,benchmark-instance-l-19,20251212-run-Ls,2025-12-16 11:09:29.153829,c4-highmem-16,europe-north2-b,90fca5f,TIMES-GEO-global-netzero-31-20ts,cbc-2.10.12,TIMES-GEO-global-netzero -pypsa-de-elec,50-1h,gurobi,13.0.0,2025.0,ok,optimal,2989.140083293,27867.236,5649367821.866575,,,2923.996409893036,86400.0,benchmark-instance-l-05,20251212-run-Ls,2025-12-12 19:27:59.353482,c4-highmem-16,us-east5-a,90fca5f,pypsa-de-elec-50-1h,gurobi-13.0.0,pypsa-de-elec -pypsa-de-elec,50-1h,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,86400.0,163.868,,,,86400.0,86400.0,benchmark-instance-l-05,20251212-run-Ls,2025-12-12 20:21:57.350807,c4-highmem-16,us-east5-a,90fca5f,pypsa-de-elec-50-1h,highs-hipo-1.12.0-hipo,pypsa-de-elec -pypsa-de-elec,50-1h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,86400.0,162.992,,,,86400.0,86400.0,benchmark-instance-l-05,20251212-run-Ls,2025-12-13 20:25:00.701617,c4-highmem-16,us-east5-a,90fca5f,pypsa-de-elec-50-1h,highs-ipx-1.12.0-hipo,pypsa-de-elec -pypsa-de-elec,50-1h,highs,1.12.0,2025.0,TO,Timeout,86400.0,14057.508,,,,86400.0,86400.0,benchmark-instance-l-05,20251212-run-Ls,2025-12-14 20:28:00.142755,c4-highmem-16,us-east5-a,90fca5f,pypsa-de-elec-50-1h,highs-1.12.0,pypsa-de-elec -pypsa-de-elec,50-1h,scip,10.0.0,2025.0,TO,Timeout,86400.0,61414.264,,,,86400.0,86400.0,benchmark-instance-l-05,20251212-run-Ls,2025-12-15 20:31:03.119216,c4-highmem-16,us-east5-a,90fca5f,pypsa-de-elec-50-1h,scip-10.0.0,pypsa-de-elec -pypsa-de-elec,50-1h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,3892.792,,,,86400.0,86400.0,benchmark-instance-l-05,20251212-run-Ls,2025-12-16 20:34:36.175650,c4-highmem-16,us-east5-a,90fca5f,pypsa-de-elec-50-1h,cbc-2.10.12,pypsa-de-elec -temoa-US_9R_TS,9-12ts,gurobi,13.0.0,2025.0,ok,optimal,190.656273,6973.552,38368452.39006148,,,172.03110599517822,86400.0,benchmark-instance-l-14,20251212-run-Ls,2025-12-12 19:29:23.394851,c4-highmem-16,asia-south2-a,90fca5f,temoa-US_9R_TS-9-12ts,gurobi-13.0.0,temoa-US_9R_TS -temoa-US_9R_TS,9-12ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,3181.154350677,6815.092,38368452.391,,,3181.154350677,86400.0,benchmark-instance-l-14,20251212-run-Ls,2025-12-12 19:36:11.918562,c4-highmem-16,asia-south2-a,90fca5f,temoa-US_9R_TS-9-12ts,highs-hipo-1.12.0-hipo,temoa-US_9R_TS -temoa-US_9R_TS,9-12ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,3388.8018794049995,5298.6,38368452.391,,,3388.8018794049995,86400.0,benchmark-instance-l-14,20251212-run-Ls,2025-12-12 20:29:13.786770,c4-highmem-16,asia-south2-a,90fca5f,temoa-US_9R_TS-9-12ts,highs-ipx-1.12.0-hipo,temoa-US_9R_TS -temoa-US_9R_TS,9-12ts,highs,1.12.0,2025.0,ok,optimal,13094.096341464005,7140.98,38368452.39079964,,,13064.423545598984,86400.0,benchmark-instance-l-14,20251212-run-Ls,2025-12-12 21:28:49.474498,c4-highmem-16,asia-south2-a,90fca5f,temoa-US_9R_TS-9-12ts,highs-1.12.0,temoa-US_9R_TS -temoa-US_9R_TS,9-12ts,scip,10.0.0,2025.0,TO,Timeout,86400.0,13014.648,,,,86400.0,86400.0,benchmark-instance-l-14,20251212-run-Ls,2025-12-13 01:10:36.615460,c4-highmem-16,asia-south2-a,90fca5f,temoa-US_9R_TS-9-12ts,scip-10.0.0,temoa-US_9R_TS -temoa-US_9R_TS,9-12ts,cbc,2.10.12,2024.0,ok,optimal,32696.379876480016,4211.896,38368450.80244397,,,,86400.0,benchmark-instance-l-14,20251212-run-Ls,2025-12-14 01:14:12.263199,c4-highmem-16,asia-south2-a,90fca5f,temoa-US_9R_TS-9-12ts,cbc-2.10.12,temoa-US_9R_TS -times-ireland-noco2-counties,26-1ts,gurobi,13.0.0,2025.0,ok,optimal,97.490335517,2794.652,312194.1030452465,,,92.13439798355104,86400.0,benchmark-instance-l-23,20251212-run-Ls,2025-12-12 19:28:58.092908,c4-highmem-16,me-west1-b,90fca5f,times-ireland-noco2-counties-26-1ts,gurobi-13.0.0,times-ireland-noco2-counties -times-ireland-noco2-counties,26-1ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,725.1770573169999,2255.052,312194.10407,,,725.1770573169999,86400.0,benchmark-instance-l-23,20251212-run-Ls,2025-12-12 19:33:40.256635,c4-highmem-16,me-west1-b,90fca5f,times-ireland-noco2-counties-26-1ts,highs-hipo-1.12.0-hipo,times-ireland-noco2-counties -times-ireland-noco2-counties,26-1ts,highs-ipx,1.12.0-hipo,2025.0,warning,Unknown,877.475760193,1365.38,312194.10407,,,877.475760193,86400.0,benchmark-instance-l-23,20251212-run-Ls,2025-12-12 19:45:46.110622,c4-highmem-16,me-west1-b,90fca5f,times-ireland-noco2-counties-26-1ts,highs-ipx-1.12.0-hipo,times-ireland-noco2-counties -times-ireland-noco2-counties,26-1ts,highs,1.12.0,2025.0,ok,optimal,4921.829970901999,2302.508,312194.1030159498,,,4916.250006198883,86400.0,benchmark-instance-l-23,20251212-run-Ls,2025-12-12 20:00:24.257469,c4-highmem-16,me-west1-b,90fca5f,times-ireland-noco2-counties-26-1ts,highs-1.12.0,times-ireland-noco2-counties -times-ireland-noco2-counties,26-1ts,scip,10.0.0,2025.0,TO,Timeout,86400.0,11358.32,,,,86400.0,86400.0,benchmark-instance-l-23,20251212-run-Ls,2025-12-12 21:25:29.865993,c4-highmem-16,me-west1-b,90fca5f,times-ireland-noco2-counties-26-1ts,scip-10.0.0,times-ireland-noco2-counties -times-ireland-noco2-counties,26-1ts,cbc,2.10.12,2024.0,ER,,,578.976,,,,,86400.0,benchmark-instance-l-23,20251212-run-Ls,2025-12-13 21:29:04.002430,c4-highmem-16,me-west1-b,90fca5f,times-ireland-noco2-counties-26-1ts,cbc-2.10.12,times-ireland-noco2-counties -pypsa-de-elec-dfp,50-1h,gurobi,13.0.0,2025.0,ok,optimal,3964.298018617,26672.316,7568789557.2084465,,,3888.1629550457,86400.0,benchmark-instance-l-08,20251212-run-Ls,2025-12-12 19:41:45.365328,c4-highmem-16,northamerica-northeast2-b,90fca5f,pypsa-de-elec-dfp-50-1h,gurobi-13.0.0,pypsa-de-elec-dfp -pypsa-de-elec-dfp,50-1h,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,86400.0,163.264,,,,86400.0,86400.0,benchmark-instance-l-08,20251212-run-Ls,2025-12-12 20:52:34.908235,c4-highmem-16,northamerica-northeast2-b,90fca5f,pypsa-de-elec-dfp-50-1h,highs-hipo-1.12.0-hipo,pypsa-de-elec-dfp -pypsa-de-elec-dfp,50-1h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,86400.0,163.452,,,,86400.0,86400.0,benchmark-instance-l-08,20251212-run-Ls,2025-12-13 20:56:08.169592,c4-highmem-16,northamerica-northeast2-b,90fca5f,pypsa-de-elec-dfp-50-1h,highs-ipx-1.12.0-hipo,pypsa-de-elec-dfp -pypsa-de-elec-dfp,50-1h,highs,1.12.0,2025.0,TO,Timeout,86400.0,14046.004,,,,86400.0,86400.0,benchmark-instance-l-08,20251212-run-Ls,2025-12-14 20:59:35.559902,c4-highmem-16,northamerica-northeast2-b,90fca5f,pypsa-de-elec-dfp-50-1h,highs-1.12.0,pypsa-de-elec-dfp -pypsa-de-elec-dfp,50-1h,scip,10.0.0,2025.0,TO,Timeout,86400.0,61403.632,,,,86400.0,86400.0,benchmark-instance-l-08,20251212-run-Ls,2025-12-15 21:03:04.249063,c4-highmem-16,northamerica-northeast2-b,90fca5f,pypsa-de-elec-dfp-50-1h,scip-10.0.0,pypsa-de-elec-dfp -pypsa-de-elec-dfp,50-1h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,3893.432,,,,86400.0,86400.0,benchmark-instance-l-08,20251212-run-Ls,2025-12-16 21:06:59.181104,c4-highmem-16,northamerica-northeast2-b,90fca5f,pypsa-de-elec-dfp-50-1h,cbc-2.10.12,pypsa-de-elec-dfp -pypsa-de-sec-trex_copt,50-1h,gurobi,13.0.0,2025.0,OOM,Out of Memory,,,,,,,86400.0,benchmark-instance-l-11,20251212-run-Ls,2025-12-12 19:33:34.935043,c4-highmem-16,asia-south1-a,90fca5f,pypsa-de-sec-trex_copt-50-1h,gurobi-13.0.0,pypsa-de-sec-trex_copt -pypsa-de-sec-trex_copt,50-1h,highs-hipo,1.12.0-hipo,2025.0,OOM,Out of Memory,,,,,,,86400.0,benchmark-instance-l-11,20251212-run-Ls,2025-12-12 19:44:45.984582,c4-highmem-16,asia-south1-a,90fca5f,pypsa-de-sec-trex_copt-50-1h,highs-hipo-1.12.0-hipo,pypsa-de-sec-trex_copt -pypsa-de-sec-trex_copt,50-1h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,86400.0,162.664,,,,86400.0,86400.0,benchmark-instance-l-11,20251212-run-Ls,2025-12-12 20:47:46.393102,c4-highmem-16,asia-south1-a,90fca5f,pypsa-de-sec-trex_copt-50-1h,highs-ipx-1.12.0-hipo,pypsa-de-sec-trex_copt -pypsa-de-sec-trex_copt,50-1h,highs,1.12.0,2025.0,TO,Timeout,86400.0,87144.092,,,,86400.0,86400.0,benchmark-instance-l-11,20251212-run-Ls,2025-12-13 20:51:19.393599,c4-highmem-16,asia-south1-a,90fca5f,pypsa-de-sec-trex_copt-50-1h,highs-1.12.0,pypsa-de-sec-trex_copt -pypsa-de-sec-trex_copt,50-1h,scip,10.0.0,2025.0,OOM,Out of Memory,,,,,,,86400.0,benchmark-instance-l-11,20251212-run-Ls,2025-12-14 20:54:52.850431,c4-highmem-16,asia-south1-a,90fca5f,pypsa-de-sec-trex_copt-50-1h,scip-10.0.0,pypsa-de-sec-trex_copt -pypsa-de-sec-trex_copt,50-1h,cbc,2.10.12,2024.0,ER,,,63747.656,,,,,86400.0,benchmark-instance-l-11,20251212-run-Ls,2025-12-14 21:00:43.095362,c4-highmem-16,asia-south1-a,90fca5f,pypsa-de-sec-trex_copt-50-1h,cbc-2.10.12,pypsa-de-sec-trex_copt -pypsa-de-elec-trex_copt,50-1h,gurobi,13.0.0,2025.0,ok,optimal,6240.9616968440005,31514.232,7462462913.781927,,,6163.423426151276,86400.0,benchmark-instance-l-07,20251212-run-Ls,2025-12-12 19:35:23.248221,c4-highmem-16,europe-west1-d,90fca5f,pypsa-de-elec-trex_copt-50-1h,gurobi-13.0.0,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,50-1h,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,86400.0,164.088,,,,86400.0,86400.0,benchmark-instance-l-07,20251212-run-Ls,2025-12-12 21:24:14.290525,c4-highmem-16,europe-west1-d,90fca5f,pypsa-de-elec-trex_copt-50-1h,highs-hipo-1.12.0-hipo,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,50-1h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,86400.0,162.82,,,,86400.0,86400.0,benchmark-instance-l-07,20251212-run-Ls,2025-12-13 21:27:46.741660,c4-highmem-16,europe-west1-d,90fca5f,pypsa-de-elec-trex_copt-50-1h,highs-ipx-1.12.0-hipo,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,50-1h,highs,1.12.0,2025.0,TO,Timeout,86400.0,14433.44,,,,86400.0,86400.0,benchmark-instance-l-07,20251212-run-Ls,2025-12-14 21:31:17.047427,c4-highmem-16,europe-west1-d,90fca5f,pypsa-de-elec-trex_copt-50-1h,highs-1.12.0,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,50-1h,scip,10.0.0,2025.0,TO,Timeout,86400.0,67292.804,,,,86400.0,86400.0,benchmark-instance-l-07,20251212-run-Ls,2025-12-15 21:34:49.291302,c4-highmem-16,europe-west1-d,90fca5f,pypsa-de-elec-trex_copt-50-1h,scip-10.0.0,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,50-1h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,3860.984,,,,86400.0,86400.0,benchmark-instance-l-07,20251212-run-Ls,2025-12-16 21:38:50.964466,c4-highmem-16,europe-west1-d,90fca5f,pypsa-de-elec-trex_copt-50-1h,cbc-2.10.12,pypsa-de-elec-trex_copt -times-etimeseu-europe-elec+heat-co2-multi_stage,29-64ts,gurobi,13.0.0,2025.0,ok,optimal,1252.953661009,12973.664,4066917.6088489927,,,1237.1074509620669,86400.0,benchmark-instance-l-21,20251212-run-Ls,2025-12-12 19:28:10.513951,c4-highmem-16,northamerica-south1-a,90fca5f,times-etimeseu-europe-elec+heat-co2-multi_stage-29-64ts,gurobi-13.0.0,times-etimeseu-europe-elec+heat-co2-multi_stage -times-etimeseu-europe-elec+heat-co2-multi_stage,29-64ts,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,86400.0,162.912,,,,86400.0,86400.0,benchmark-instance-l-21,20251212-run-Ls,2025-12-12 19:52:37.819187,c4-highmem-16,northamerica-south1-a,90fca5f,times-etimeseu-europe-elec+heat-co2-multi_stage-29-64ts,highs-hipo-1.12.0-hipo,times-etimeseu-europe-elec+heat-co2-multi_stage -times-etimeseu-europe-elec+heat-co2-multi_stage,29-64ts,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,86400.0,162.764,,,,86400.0,86400.0,benchmark-instance-l-21,20251212-run-Ls,2025-12-13 19:55:53.117072,c4-highmem-16,northamerica-south1-a,90fca5f,times-etimeseu-europe-elec+heat-co2-multi_stage-29-64ts,highs-ipx-1.12.0-hipo,times-etimeseu-europe-elec+heat-co2-multi_stage -times-etimeseu-europe-elec+heat-co2-multi_stage,29-64ts,highs,1.12.0,2025.0,TO,Timeout,86400.0,3402.784,,,,86400.0,86400.0,benchmark-instance-l-21,20251212-run-Ls,2025-12-14 19:59:04.466246,c4-highmem-16,northamerica-south1-a,90fca5f,times-etimeseu-europe-elec+heat-co2-multi_stage-29-64ts,highs-1.12.0,times-etimeseu-europe-elec+heat-co2-multi_stage -times-etimeseu-europe-elec+heat-co2-multi_stage,29-64ts,scip,10.0.0,2025.0,TO,Timeout,86400.0,56030.064,,,,86400.0,86400.0,benchmark-instance-l-21,20251212-run-Ls,2025-12-15 20:02:17.774537,c4-highmem-16,northamerica-south1-a,90fca5f,times-etimeseu-europe-elec+heat-co2-multi_stage-29-64ts,scip-10.0.0,times-etimeseu-europe-elec+heat-co2-multi_stage -times-etimeseu-europe-elec+heat-co2-multi_stage,29-64ts,cbc,2.10.12,2024.0,ER,,,1646.856,,,,,86400.0,benchmark-instance-l-21,20251212-run-Ls,2025-12-16 20:06:05.043815,c4-highmem-16,northamerica-south1-a,90fca5f,times-etimeseu-europe-elec+heat-co2-multi_stage-29-64ts,cbc-2.10.12,times-etimeseu-europe-elec+heat-co2-multi_stage -temoa-US_9R_TS_NZ,9-12ts,gurobi,13.0.0,2025.0,ok,optimal,225.330826972,7190.732,37553963.51292429,,,205.2316770553589,86400.0,benchmark-instance-l-16,20251212-run-Ls,2025-12-12 19:35:12.955863,c4-highmem-16,europe-west1-c,90fca5f,temoa-US_9R_TS_NZ-9-12ts,gurobi-13.0.0,temoa-US_9R_TS_NZ -temoa-US_9R_TS_NZ,9-12ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,4389.935354099,7013.224,37553963.514,,,4389.935354099,86400.0,benchmark-instance-l-16,20251212-run-Ls,2025-12-12 19:42:56.992462,c4-highmem-16,europe-west1-c,90fca5f,temoa-US_9R_TS_NZ-9-12ts,highs-hipo-1.12.0-hipo,temoa-US_9R_TS_NZ -temoa-US_9R_TS_NZ,9-12ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,3909.625548767999,4637.772,37553963.735,,,3909.625548767999,86400.0,benchmark-instance-l-16,20251212-run-Ls,2025-12-12 20:59:40.531291,c4-highmem-16,europe-west1-c,90fca5f,temoa-US_9R_TS_NZ-9-12ts,highs-ipx-1.12.0-hipo,temoa-US_9R_TS_NZ -temoa-US_9R_TS_NZ,9-12ts,highs,1.12.0,2025.0,ok,optimal,30486.354940897,7382.448,37553963.51365733,,,30453.060187339783,86400.0,benchmark-instance-l-16,20251212-run-Ls,2025-12-12 22:08:21.629556,c4-highmem-16,europe-west1-c,90fca5f,temoa-US_9R_TS_NZ-9-12ts,highs-1.12.0,temoa-US_9R_TS_NZ -temoa-US_9R_TS_NZ,9-12ts,scip,10.0.0,2025.0,TO,Timeout,86400.0,13313.06,,,,86400.0,86400.0,benchmark-instance-l-16,20251212-run-Ls,2025-12-13 06:40:20.341159,c4-highmem-16,europe-west1-c,90fca5f,temoa-US_9R_TS_NZ-9-12ts,scip-10.0.0,temoa-US_9R_TS_NZ -temoa-US_9R_TS_NZ,9-12ts,cbc,2.10.12,2024.0,TO,Timeout,86400.0,1941.644,,,,86400.0,86400.0,benchmark-instance-l-16,20251212-run-Ls,2025-12-14 06:44:26.197894,c4-highmem-16,europe-west1-c,90fca5f,temoa-US_9R_TS_NZ-9-12ts,cbc-2.10.12,temoa-US_9R_TS_NZ -SWITCH-USA-PG,26-168h,gurobi,13.0.0,2025.0,ok,optimal,433.828678866,11795.876,437335179973.2393,,,408.68771481513977,86400.0,benchmark-instance-l-13,20251212-run-Ls,2025-12-12 19:29:27.857221,c4-highmem-16,asia-south1-c,90fca5f,SWITCH-USA-PG-26-168h,gurobi-13.0.0,SWITCH-USA-PG -SWITCH-USA-PG,26-168h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,23276.629933775,51131.232,437335179970.0,,,23276.629933775,86400.0,benchmark-instance-l-13,20251212-run-Ls,2025-12-12 19:40:20.434155,c4-highmem-16,asia-south1-c,90fca5f,SWITCH-USA-PG-26-168h,highs-hipo-1.12.0-hipo,SWITCH-USA-PG -SWITCH-USA-PG,26-168h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,65302.64692829801,5814.776,437335179970.0,,,65302.64692829801,86400.0,benchmark-instance-l-13,20251212-run-Ls,2025-12-13 02:11:26.332926,c4-highmem-16,asia-south1-c,90fca5f,SWITCH-USA-PG-26-168h,highs-ipx-1.12.0-hipo,SWITCH-USA-PG -SWITCH-USA-PG,26-168h,highs,1.12.0,2025.0,TO,Timeout,86400.0,7268.288,,,,86400.0,86400.0,benchmark-instance-l-13,20251212-run-Ls,2025-12-13 20:23:01.154071,c4-highmem-16,asia-south1-c,90fca5f,SWITCH-USA-PG-26-168h,highs-1.12.0,SWITCH-USA-PG -SWITCH-USA-PG,26-168h,scip,10.0.0,2025.0,TO,Timeout,86400.0,25435.756,,,,86400.0,86400.0,benchmark-instance-l-13,20251212-run-Ls,2025-12-14 20:26:16.874292,c4-highmem-16,asia-south1-c,90fca5f,SWITCH-USA-PG-26-168h,scip-10.0.0,SWITCH-USA-PG -SWITCH-USA-PG,26-168h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,1162.792,,,,86400.0,86400.0,benchmark-instance-l-13,20251212-run-Ls,2025-12-15 20:30:11.985656,c4-highmem-16,asia-south1-c,90fca5f,SWITCH-USA-PG-26-168h,cbc-2.10.12,SWITCH-USA-PG -genx-elec_trex_uc,15-24h,gurobi,13.0.0,2025.0,ok,optimal,521.171259391,9424.552,31903.351665470986,0.0,6.2094364449249564e-06,506.7069919109345,86400.0,benchmark-instance-l-02,20251212-run-Ls,2025-12-12 19:28:33.570692,c4-highmem-16,us-central1-f,90fca5f,genx-elec_trex_uc-15-24h,gurobi-13.0.0,genx-elec_trex_uc -genx-elec_trex_uc,15-24h,highs,1.12.0,2025.0,TO,Timeout,86400.0,6597.288,,,,86400.0,86400.0,benchmark-instance-l-02,20251212-run-Ls,2025-12-12 19:41:05.381004,c4-highmem-16,us-central1-f,90fca5f,genx-elec_trex_uc-15-24h,highs-1.12.0,genx-elec_trex_uc -genx-elec_trex_uc,15-24h,scip,10.0.0,2025.0,ER,,,726.312,,,,,86400.0,benchmark-instance-l-02,20251212-run-Ls,2025-12-13 19:44:38.068006,c4-highmem-16,us-central1-f,90fca5f,genx-elec_trex_uc-15-24h,scip-10.0.0,genx-elec_trex_uc -genx-elec_trex_uc,15-24h,cbc,2.10.12,2024.0,ER,,,1414.348,,,,,86400.0,benchmark-instance-l-02,20251212-run-Ls,2025-12-13 19:45:13.123907,c4-highmem-16,us-central1-f,90fca5f,genx-elec_trex_uc-15-24h,cbc-2.10.12,genx-elec_trex_uc -pypsa-de-elec-trex_copt-dfp,50-1h,gurobi,13.0.0,2025.0,ok,optimal,6427.922898286,31167.336,7462476802.566992,,,6350.266633033752,86400.0,benchmark-instance-l-10,20251212-run-Ls,2025-12-12 19:35:13.661902,c4-highmem-16,europe-west1-b,90fca5f,pypsa-de-elec-trex_copt-dfp-50-1h,gurobi-13.0.0,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,50-1h,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,86400.0,162.8,,,,86400.0,86400.0,benchmark-instance-l-10,20251212-run-Ls,2025-12-12 21:27:11.459216,c4-highmem-16,europe-west1-b,90fca5f,pypsa-de-elec-trex_copt-dfp-50-1h,highs-hipo-1.12.0-hipo,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,50-1h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,86400.0,163.72,,,,86400.0,86400.0,benchmark-instance-l-10,20251212-run-Ls,2025-12-13 21:30:45.630759,c4-highmem-16,europe-west1-b,90fca5f,pypsa-de-elec-trex_copt-dfp-50-1h,highs-ipx-1.12.0-hipo,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,50-1h,highs,1.12.0,2025.0,TO,Timeout,86400.0,14375.0,,,,86400.0,86400.0,benchmark-instance-l-10,20251212-run-Ls,2025-12-14 21:34:20.822134,c4-highmem-16,europe-west1-b,90fca5f,pypsa-de-elec-trex_copt-dfp-50-1h,highs-1.12.0,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,50-1h,scip,10.0.0,2025.0,TO,Timeout,86400.0,67313.224,,,,86400.0,86400.0,benchmark-instance-l-10,20251212-run-Ls,2025-12-15 21:37:56.370911,c4-highmem-16,europe-west1-b,90fca5f,pypsa-de-elec-trex_copt-dfp-50-1h,scip-10.0.0,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,50-1h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,3860.728,,,,86400.0,86400.0,benchmark-instance-l-10,20251212-run-Ls,2025-12-16 21:41:59.359842,c4-highmem-16,europe-west1-b,90fca5f,pypsa-de-elec-trex_copt-dfp-50-1h,cbc-2.10.12,pypsa-de-elec-trex_copt-dfp -TIMES-GEO-global-base,31-20ts,gurobi,13.0.0,2025.0,ok,optimal,1857.266919563,20251.764,241237919.7358521,,,1813.8951041698456,86400.0,benchmark-instance-l-18,20251212-run-Ls,2025-12-12 19:27:41.995820,c4-highmem-16,europe-north2-a,90fca5f,TIMES-GEO-global-base-31-20ts,gurobi-13.0.0,TIMES-GEO-global-base -TIMES-GEO-global-base,31-20ts,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,86400.0,163.288,,,,86400.0,86400.0,benchmark-instance-l-18,20251212-run-Ls,2025-12-12 20:03:15.164027,c4-highmem-16,europe-north2-a,90fca5f,TIMES-GEO-global-base-31-20ts,highs-hipo-1.12.0-hipo,TIMES-GEO-global-base -TIMES-GEO-global-base,31-20ts,highs-ipx,1.12.0-hipo,2025.0,warning,Unknown,54761.83336924701,9692.752,241237921.95,,,54761.83336924701,86400.0,benchmark-instance-l-18,20251212-run-Ls,2025-12-13 20:06:42.709401,c4-highmem-16,europe-north2-a,90fca5f,TIMES-GEO-global-base-31-20ts,highs-ipx-1.12.0-hipo,TIMES-GEO-global-base -TIMES-GEO-global-base,31-20ts,highs,1.12.0,2025.0,TO,Timeout,86400.0,11281.716,,,,86400.0,86400.0,benchmark-instance-l-18,20251212-run-Ls,2025-12-14 11:22:56.198397,c4-highmem-16,europe-north2-a,90fca5f,TIMES-GEO-global-base-31-20ts,highs-1.12.0,TIMES-GEO-global-base -TIMES-GEO-global-base,31-20ts,scip,10.0.0,2025.0,TO,Timeout,86400.0,47908.804,,,,86400.0,86400.0,benchmark-instance-l-18,20251212-run-Ls,2025-12-15 11:26:25.669554,c4-highmem-16,europe-north2-a,90fca5f,TIMES-GEO-global-base-31-20ts,scip-10.0.0,TIMES-GEO-global-base -TIMES-GEO-global-base,31-20ts,cbc,2.10.12,2024.0,TO,Timeout,86400.0,2981.772,,,,86400.0,86400.0,benchmark-instance-l-18,20251212-run-Ls,2025-12-16 11:30:23.529382,c4-highmem-16,europe-north2-a,90fca5f,TIMES-GEO-global-base-31-20ts,cbc-2.10.12,TIMES-GEO-global-base -tulipa-1_EU_investment_simple,28-1h,gurobi,13.0.0,2025.0,ok,optimal,167.71098481299998,6860.892,10114494154.905088,0.0,9.98372719639693e-05,160.93845200538635,86400.0,benchmark-instance-l-04,20251212-run-Ls,2025-12-12 19:27:40.889752,c4-highmem-16,us-east4-c,90fca5f,tulipa-1_EU_investment_simple-28-1h,gurobi-13.0.0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-1h,highs,1.12.0,2025.0,ok,optimal,11019.358296195,21965.452,10113645948.09658,5.684341886080803e-14,8.665867449973662e-05,11007.422449350355,86400.0,benchmark-instance-l-04,20251212-run-Ls,2025-12-12 19:34:11.499336,c4-highmem-16,us-east4-c,90fca5f,tulipa-1_EU_investment_simple-28-1h,highs-1.12.0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-1h,scip,10.0.0,2025.0,ok,optimal,16140.934750984,14936.072,10113810247.787842,5.684341886080803e-14,9.99091537603216e-05,16124.408428,86400.0,benchmark-instance-l-04,20251212-run-Ls,2025-12-12 22:41:39.331172,c4-highmem-16,us-east4-c,90fca5f,tulipa-1_EU_investment_simple-28-1h,scip-10.0.0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-1h,cbc,2.10.12,2024.0,ok,optimal,59915.84466978101,9572.432,10113754472.113071,0.0,0.0,59888.93,86400.0,benchmark-instance-l-04,20251212-run-Ls,2025-12-13 03:14:55.279851,c4-highmem-16,us-east4-c,90fca5f,tulipa-1_EU_investment_simple-28-1h,cbc-2.10.12,tulipa-1_EU_investment_simple -temoa-US_9R_TS_NDC,9-12ts,gurobi,13.0.0,2025.0,ok,optimal,220.89616504,7335.584,36969259.724561445,,,203.66050696372983,86400.0,benchmark-instance-l-15,20251212-run-Ls,2025-12-12 19:28:57.528908,c4-highmem-16,asia-south2-b,90fca5f,temoa-US_9R_TS_NDC-9-12ts,gurobi-13.0.0,temoa-US_9R_TS_NDC -temoa-US_9R_TS_NDC,9-12ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,4324.185409194,6990.14,36969259.725,,,4324.185409194,86400.0,benchmark-instance-l-15,20251212-run-Ls,2025-12-12 19:36:04.886888,c4-highmem-16,asia-south2-b,90fca5f,temoa-US_9R_TS_NDC-9-12ts,highs-hipo-1.12.0-hipo,temoa-US_9R_TS_NDC -temoa-US_9R_TS_NDC,9-12ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,3478.7931881940003,4640.784,36969259.846,,,3478.7931881940003,86400.0,benchmark-instance-l-15,20251212-run-Ls,2025-12-12 20:51:08.872890,c4-highmem-16,asia-south2-b,90fca5f,temoa-US_9R_TS_NDC-9-12ts,highs-ipx-1.12.0-hipo,temoa-US_9R_TS_NDC -temoa-US_9R_TS_NDC,9-12ts,highs,1.12.0,2025.0,ok,optimal,38201.350731949,7350.676,36969259.7251539,,,38172.46753025055,86400.0,benchmark-instance-l-15,20251212-run-Ls,2025-12-12 21:52:06.585140,c4-highmem-16,asia-south2-b,90fca5f,temoa-US_9R_TS_NDC-9-12ts,highs-1.12.0,temoa-US_9R_TS_NDC -temoa-US_9R_TS_NDC,9-12ts,scip,10.0.0,2025.0,TO,Timeout,86400.0,13232.704,,,,86400.0,86400.0,benchmark-instance-l-15,20251212-run-Ls,2025-12-13 08:32:20.533395,c4-highmem-16,asia-south2-b,90fca5f,temoa-US_9R_TS_NDC-9-12ts,scip-10.0.0,temoa-US_9R_TS_NDC -temoa-US_9R_TS_NDC,9-12ts,cbc,2.10.12,2024.0,TO,Timeout,86400.0,1946.3,,,,86400.0,86400.0,benchmark-instance-l-15,20251212-run-Ls,2025-12-14 08:35:50.985971,c4-highmem-16,asia-south2-b,90fca5f,temoa-US_9R_TS_NDC-9-12ts,cbc-2.10.12,temoa-US_9R_TS_NDC -times-ireland-noco2,40-1ts,gurobi,13.0.0,2025.0,ok,optimal,1910.970202057,9807.048,443306.2356883995,,,1887.7760639190676,86400.0,benchmark-instance-l-22,20251212-run-Ls,2025-12-12 19:28:03.424210,c4-highmem-16,northamerica-south1-c,90fca5f,times-ireland-noco2-40-1ts,gurobi-13.0.0,times-ireland-noco2 -times-ireland-noco2,40-1ts,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,86400.0,162.612,,,,86400.0,86400.0,benchmark-instance-l-22,20251212-run-Ls,2025-12-12 20:03:16.802966,c4-highmem-16,northamerica-south1-c,90fca5f,times-ireland-noco2-40-1ts,highs-hipo-1.12.0-hipo,times-ireland-noco2 -times-ireland-noco2,40-1ts,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,86400.0,162.976,,,,86400.0,86400.0,benchmark-instance-l-22,20251212-run-Ls,2025-12-13 20:06:15.972875,c4-highmem-16,northamerica-south1-c,90fca5f,times-ireland-noco2-40-1ts,highs-ipx-1.12.0-hipo,times-ireland-noco2 -times-ireland-noco2,40-1ts,highs,1.12.0,2025.0,TO,Timeout,86400.0,5707.26,,,,86400.0,86400.0,benchmark-instance-l-22,20251212-run-Ls,2025-12-14 20:09:19.074470,c4-highmem-16,northamerica-south1-c,90fca5f,times-ireland-noco2-40-1ts,highs-1.12.0,times-ireland-noco2 -times-ireland-noco2,40-1ts,scip,10.0.0,2025.0,TO,Timeout,86400.0,26596.1,,,,86400.0,86400.0,benchmark-instance-l-22,20251212-run-Ls,2025-12-15 20:12:21.479539,c4-highmem-16,northamerica-south1-c,90fca5f,times-ireland-noco2-40-1ts,scip-10.0.0,times-ireland-noco2 -times-ireland-noco2,40-1ts,cbc,2.10.12,2024.0,ER,,,2238.604,,,,,86400.0,benchmark-instance-l-22,20251212-run-Ls,2025-12-16 20:15:48.795506,c4-highmem-16,northamerica-south1-c,90fca5f,times-ireland-noco2-40-1ts,cbc-2.10.12,times-ireland-noco2 -pypsa-de-elec-trex_vopt-dfp,50-1h,gurobi,13.0.0,2025.0,ok,optimal,5640.111624116999,29790.848,7462475168.414667,,,5575.678267002106,86400.0,benchmark-instance-l-09,20251212-run-Ls,2025-12-12 19:41:10.315290,c4-highmem-16,northamerica-northeast2-b,90fca5f,pypsa-de-elec-trex_vopt-dfp-50-1h,gurobi-13.0.0,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,50-1h,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,86400.0,163.952,,,,86400.0,86400.0,benchmark-instance-l-09,20251212-run-Ls,2025-12-12 21:19:16.591677,c4-highmem-16,northamerica-northeast2-b,90fca5f,pypsa-de-elec-trex_vopt-dfp-50-1h,highs-hipo-1.12.0-hipo,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,50-1h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,86400.0,163.168,,,,86400.0,86400.0,benchmark-instance-l-09,20251212-run-Ls,2025-12-13 21:22:18.797065,c4-highmem-16,northamerica-northeast2-b,90fca5f,pypsa-de-elec-trex_vopt-dfp-50-1h,highs-ipx-1.12.0-hipo,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,50-1h,highs,1.12.0,2025.0,TO,Timeout,86400.0,14351.184,,,,86400.0,86400.0,benchmark-instance-l-09,20251212-run-Ls,2025-12-14 21:25:20.682164,c4-highmem-16,northamerica-northeast2-b,90fca5f,pypsa-de-elec-trex_vopt-dfp-50-1h,highs-1.12.0,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,50-1h,scip,10.0.0,2025.0,TO,Timeout,86400.0,67492.784,,,,86400.0,86400.0,benchmark-instance-l-09,20251212-run-Ls,2025-12-15 21:28:20.703532,c4-highmem-16,northamerica-northeast2-b,90fca5f,pypsa-de-elec-trex_vopt-dfp-50-1h,scip-10.0.0,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,50-1h,cbc,2.10.12,2024.0,ER,,,13029.08,,,,,86400.0,benchmark-instance-l-09,20251212-run-Ls,2025-12-16 21:31:51.472511,c4-highmem-16,northamerica-northeast2-b,90fca5f,pypsa-de-elec-trex_vopt-dfp-50-1h,cbc-2.10.12,pypsa-de-elec-trex_vopt-dfp -pypsa-de-sec-trex_vopt,50-1h,gurobi,13.0.0,2025.0,OOM,Out of Memory,,,,,,,86400.0,benchmark-instance-l-12,20251212-run-Ls,2025-12-12 19:33:12.681196,c4-highmem-16,asia-south1-b,90fca5f,pypsa-de-sec-trex_vopt-50-1h,gurobi-13.0.0,pypsa-de-sec-trex_vopt -pypsa-de-sec-trex_vopt,50-1h,highs-hipo,1.12.0-hipo,2025.0,OOM,Out of Memory,,,,,,,86400.0,benchmark-instance-l-12,20251212-run-Ls,2025-12-12 19:43:27.126064,c4-highmem-16,asia-south1-b,90fca5f,pypsa-de-sec-trex_vopt-50-1h,highs-hipo-1.12.0-hipo,pypsa-de-sec-trex_vopt -pypsa-de-sec-trex_vopt,50-1h,highs-ipx,1.12.0-hipo,2025.0,OOM,Out of Memory,,,,,,,86400.0,benchmark-instance-l-12,20251212-run-Ls,2025-12-12 20:36:39.067994,c4-highmem-16,asia-south1-b,90fca5f,pypsa-de-sec-trex_vopt-50-1h,highs-ipx-1.12.0-hipo,pypsa-de-sec-trex_vopt -pypsa-de-sec-trex_vopt,50-1h,highs,1.12.0,2025.0,TO,Timeout,86400.0,87146.264,,,,86400.0,86400.0,benchmark-instance-l-12,20251212-run-Ls,2025-12-12 20:37:32.694686,c4-highmem-16,asia-south1-b,90fca5f,pypsa-de-sec-trex_vopt-50-1h,highs-1.12.0,pypsa-de-sec-trex_vopt -pypsa-de-sec-trex_vopt,50-1h,scip,10.0.0,2025.0,OOM,Out of Memory,,,,,,,86400.0,benchmark-instance-l-12,20251212-run-Ls,2025-12-13 20:40:35.533761,c4-highmem-16,asia-south1-b,90fca5f,pypsa-de-sec-trex_vopt-50-1h,scip-10.0.0,pypsa-de-sec-trex_vopt -pypsa-de-sec-trex_vopt,50-1h,cbc,2.10.12,2024.0,ER,,,63751.376,,,,,86400.0,benchmark-instance-l-12,20251212-run-Ls,2025-12-13 20:45:59.460072,c4-highmem-16,asia-south1-b,90fca5f,pypsa-de-sec-trex_vopt-50-1h,cbc-2.10.12,pypsa-de-sec-trex_vopt -genx-elec_co2,15-168h,gurobi,13.0.0,2025.0,ok,optimal,5576.189089799999,31686.68,316331.2099114949,,,5497.275903940201,86400.0,benchmark-instance-l-03,20251212-run-Ls,2025-12-12 19:28:23.512929,c4-highmem-16,us-east4-a,90fca5f,genx-elec_co2-15-168h,gurobi-13.0.0,genx-elec_co2 -genx-elec_co2,15-168h,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,86400.0,163.52,,,,86400.0,86400.0,benchmark-instance-l-03,20251212-run-Ls,2025-12-12 21:06:19.670068,c4-highmem-16,us-east4-a,90fca5f,genx-elec_co2-15-168h,highs-hipo-1.12.0-hipo,genx-elec_co2 -genx-elec_co2,15-168h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,86400.0,163.224,,,,86400.0,86400.0,benchmark-instance-l-03,20251212-run-Ls,2025-12-13 21:09:18.720303,c4-highmem-16,us-east4-a,90fca5f,genx-elec_co2-15-168h,highs-ipx-1.12.0-hipo,genx-elec_co2 -genx-elec_co2,15-168h,highs,1.12.0,2025.0,TO,Timeout,86400.0,17076.868,,,,86400.0,86400.0,benchmark-instance-l-03,20251212-run-Ls,2025-12-14 21:12:21.798737,c4-highmem-16,us-east4-a,90fca5f,genx-elec_co2-15-168h,highs-1.12.0,genx-elec_co2 -genx-elec_co2,15-168h,scip,10.0.0,2025.0,ER,,,2474.036,,,,,86400.0,benchmark-instance-l-03,20251212-run-Ls,2025-12-15 21:15:25.886573,c4-highmem-16,us-east4-a,90fca5f,genx-elec_co2-15-168h,scip-10.0.0,genx-elec_co2 -genx-elec_co2,15-168h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,2447.068,,,,86400.0,86400.0,benchmark-instance-l-03,20251212-run-Ls,2025-12-15 21:15:57.851201,c4-highmem-16,us-east4-a,90fca5f,genx-elec_co2-15-168h,cbc-2.10.12,genx-elec_co2 -pypsa-de-elec-trex_vopt,50-1h,gurobi,13.0.0,2025.0,ok,optimal,6804.248935811,30500.628,7462476325.406084,,,6732.91751909256,86400.0,benchmark-instance-l-06,20251212-run-Ls,2025-12-12 19:28:48.721273,c4-highmem-16,us-east5-b,90fca5f,pypsa-de-elec-trex_vopt-50-1h,gurobi-13.0.0,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,50-1h,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,86400.0,162.924,,,,86400.0,86400.0,benchmark-instance-l-06,20251212-run-Ls,2025-12-12 21:26:38.380036,c4-highmem-16,us-east5-b,90fca5f,pypsa-de-elec-trex_vopt-50-1h,highs-hipo-1.12.0-hipo,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,50-1h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,86400.0,163.044,,,,86400.0,86400.0,benchmark-instance-l-06,20251212-run-Ls,2025-12-13 21:30:03.313659,c4-highmem-16,us-east5-b,90fca5f,pypsa-de-elec-trex_vopt-50-1h,highs-ipx-1.12.0-hipo,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,50-1h,highs,1.12.0,2025.0,TO,Timeout,86400.0,14410.032,,,,86400.0,86400.0,benchmark-instance-l-06,20251212-run-Ls,2025-12-14 21:33:25.760445,c4-highmem-16,us-east5-b,90fca5f,pypsa-de-elec-trex_vopt-50-1h,highs-1.12.0,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,50-1h,scip,10.0.0,2025.0,TO,Timeout,86400.0,66571.464,,,,86400.0,86400.0,benchmark-instance-l-06,20251212-run-Ls,2025-12-15 21:36:46.583579,c4-highmem-16,us-east5-b,90fca5f,pypsa-de-elec-trex_vopt-50-1h,scip-10.0.0,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,50-1h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,3861.028,,,,86400.0,86400.0,benchmark-instance-l-06,20251212-run-Ls,2025-12-16 21:40:34.151118,c4-highmem-16,us-east5-b,90fca5f,pypsa-de-elec-trex_vopt-50-1h,cbc-2.10.12,pypsa-de-elec-trex_vopt -times-etimeseu-europe-elec+heat-multi_stage,29-64ts,gurobi,13.0.0,2025.0,ok,optimal,838.235821624,12198.568,3612450.3520559473,,,824.1415910720825,86400.0,benchmark-instance-l-20,20251212-run-Ls,2025-12-12 19:27:42.585629,c4-highmem-16,europe-north2-c,90fca5f,times-etimeseu-europe-elec+heat-multi_stage-29-64ts,gurobi-13.0.0,times-etimeseu-europe-elec+heat-multi_stage -times-etimeseu-europe-elec+heat-multi_stage,29-64ts,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,86400.0,163.308,,,,86400.0,86400.0,benchmark-instance-l-20,20251212-run-Ls,2025-12-12 19:44:56.468622,c4-highmem-16,europe-north2-c,90fca5f,times-etimeseu-europe-elec+heat-multi_stage-29-64ts,highs-hipo-1.12.0-hipo,times-etimeseu-europe-elec+heat-multi_stage -times-etimeseu-europe-elec+heat-multi_stage,29-64ts,highs-ipx,1.12.0-hipo,2025.0,warning,Unknown,2987.781998256003,3193.348,3612450.3527,,,2987.781998256003,86400.0,benchmark-instance-l-20,20251212-run-Ls,2025-12-13 19:47:58.559763,c4-highmem-16,europe-north2-c,90fca5f,times-etimeseu-europe-elec+heat-multi_stage-29-64ts,highs-ipx-1.12.0-hipo,times-etimeseu-europe-elec+heat-multi_stage -times-etimeseu-europe-elec+heat-multi_stage,29-64ts,highs,1.12.0,2025.0,TO,Timeout,86400.0,3345.276,,,,86400.0,86400.0,benchmark-instance-l-20,20251212-run-Ls,2025-12-13 20:37:47.003547,c4-highmem-16,europe-north2-c,90fca5f,times-etimeseu-europe-elec+heat-multi_stage-29-64ts,highs-1.12.0,times-etimeseu-europe-elec+heat-multi_stage -times-etimeseu-europe-elec+heat-multi_stage,29-64ts,scip,10.0.0,2025.0,TO,Timeout,86400.0,59962.468,,,,86400.0,86400.0,benchmark-instance-l-20,20251212-run-Ls,2025-12-14 20:40:46.459906,c4-highmem-16,europe-north2-c,90fca5f,times-etimeseu-europe-elec+heat-multi_stage-29-64ts,scip-10.0.0,times-etimeseu-europe-elec+heat-multi_stage -times-etimeseu-europe-elec+heat-multi_stage,29-64ts,cbc,2.10.12,2024.0,ER,,,1602.4,,,,,86400.0,benchmark-instance-l-20,20251212-run-Ls,2025-12-15 20:44:17.127906,c4-highmem-16,europe-north2-c,90fca5f,times-etimeseu-europe-elec+heat-multi_stage-29-64ts,cbc-2.10.12,times-etimeseu-europe-elec+heat-multi_stage -temoa-US_9R_TS_SP,9-12ts,gurobi,13.0.0,2025.0,ok,optimal,225.991818331,7199.256,36719893.351437405,,,209.4234640598297,86400.0,benchmark-instance-l-17,20251212-run-Ls,2025-12-12 19:27:16.352463,c4-highmem-16,europe-west4-c,90fca5f,temoa-US_9R_TS_SP-9-12ts,gurobi-13.0.0,temoa-US_9R_TS_SP -temoa-US_9R_TS_SP,9-12ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,3941.397949973,7013.856,36719893.352,,,3941.397949973,86400.0,benchmark-instance-l-17,20251212-run-Ls,2025-12-12 19:34:24.511745,c4-highmem-16,europe-west4-c,90fca5f,temoa-US_9R_TS_SP-9-12ts,highs-hipo-1.12.0-hipo,temoa-US_9R_TS_SP -temoa-US_9R_TS_SP,9-12ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,3072.2876267290003,4619.444,36719893.587,,,3072.2876267290003,86400.0,benchmark-instance-l-17,20251212-run-Ls,2025-12-12 20:43:07.315598,c4-highmem-16,europe-west4-c,90fca5f,temoa-US_9R_TS_SP-9-12ts,highs-ipx-1.12.0-hipo,temoa-US_9R_TS_SP -temoa-US_9R_TS_SP,9-12ts,highs,1.12.0,2025.0,ok,optimal,17260.556578112002,7315.616,36719893.35222322,,,17230.852392196655,86400.0,benchmark-instance-l-17,20251212-run-Ls,2025-12-12 21:34:20.254190,c4-highmem-16,europe-west4-c,90fca5f,temoa-US_9R_TS_SP-9-12ts,highs-1.12.0,temoa-US_9R_TS_SP -temoa-US_9R_TS_SP,9-12ts,scip,10.0.0,2025.0,TO,Timeout,86400.0,13200.136,,,,86400.0,86400.0,benchmark-instance-l-17,20251212-run-Ls,2025-12-13 02:25:40.274450,c4-highmem-16,europe-west4-c,90fca5f,temoa-US_9R_TS_SP-9-12ts,scip-10.0.0,temoa-US_9R_TS_SP -temoa-US_9R_TS_SP,9-12ts,cbc,2.10.12,2024.0,TO,Timeout,86400.0,1936.728,,,,86400.0,86400.0,benchmark-instance-l-17,20251212-run-Ls,2025-12-14 02:29:11.858863,c4-highmem-16,europe-west4-c,90fca5f,temoa-US_9R_TS_SP-9-12ts,cbc-2.10.12,temoa-US_9R_TS_SP -genx-elec_trex,15-168h,gurobi,13.0.0,2025.0,ok,optimal,5697.515179407,31447.84,316138.8135043789,,,5613.121881008148,86400.0,benchmark-instance-l-00,20251214-rerun-1,2025-12-15 05:41:16.063726,c4-highmem-16,us-west3-a,48cfc10,genx-elec_trex-15-168h,gurobi-13.0.0,genx-elec_trex -genx-elec_trex,15-168h,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,86400.0,163.132,,,,86400.0,86400.0,benchmark-instance-l-00,20251214-rerun-1,2025-12-15 07:21:29.949876,c4-highmem-16,us-west3-a,48cfc10,genx-elec_trex-15-168h,highs-hipo-1.12.0-hipo,genx-elec_trex -genx-elec_trex,15-168h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,86400.0,163.212,,,,86400.0,86400.0,benchmark-instance-l-00,20251214-rerun-1,2025-12-16 07:24:39.327331,c4-highmem-16,us-west3-a,48cfc10,genx-elec_trex-15-168h,highs-ipx-1.12.0-hipo,genx-elec_trex -genx-elec_trex,15-168h,highs,1.12.0,2025.0,TO,Timeout,86400.0,17178.92,,,,86400.0,86400.0,benchmark-instance-l-00,20251214-rerun-1,2025-12-17 07:27:46.107094,c4-highmem-16,us-west3-a,48cfc10,genx-elec_trex-15-168h,highs-1.12.0,genx-elec_trex -genx-elec_trex,15-168h,scip,10.0.0,2025.0,ER,,,2405.928,,,,,86400.0,benchmark-instance-l-00,20251214-rerun-1,2025-12-18 07:30:57.083752,c4-highmem-16,us-west3-a,48cfc10,genx-elec_trex-15-168h,scip-10.0.0,genx-elec_trex -genx-elec_trex,15-168h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,2379.056,,,,86400.0,86400.0,benchmark-instance-l-00,20251214-rerun-1,2025-12-18 07:31:33.548133,c4-highmem-16,us-west3-a,48cfc10,genx-elec_trex-15-168h,cbc-2.10.12,genx-elec_trex -genx-elec_trex_co2,15-168h,gurobi,13.0.0,2025.0,ok,optimal,9878.019462512,31888.852,306005.021474805,,,9782.39368391037,86400.0,benchmark-instance-l-01,20251214-rerun-1,2025-12-15 05:40:59.056218,c4-highmem-16,europe-west3-b,48cfc10,genx-elec_trex_co2-15-168h,gurobi-13.0.0,genx-elec_trex_co2 -genx-elec_trex_co2,15-168h,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,86400.0,162.84,,,,86400.0,86400.0,benchmark-instance-l-01,20251214-rerun-1,2025-12-15 08:31:47.925293,c4-highmem-16,europe-west3-b,48cfc10,genx-elec_trex_co2-15-168h,highs-hipo-1.12.0-hipo,genx-elec_trex_co2 -genx-elec_trex_co2,15-168h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,86400.0,162.988,,,,86400.0,86400.0,benchmark-instance-l-01,20251214-rerun-1,2025-12-16 08:35:29.024092,c4-highmem-16,europe-west3-b,48cfc10,genx-elec_trex_co2-15-168h,highs-ipx-1.12.0-hipo,genx-elec_trex_co2 -genx-elec_trex_co2,15-168h,highs,1.12.0,2025.0,TO,Timeout,86400.0,17261.196,,,,86400.0,86400.0,benchmark-instance-l-01,20251214-rerun-1,2025-12-17 08:39:05.946427,c4-highmem-16,europe-west3-b,48cfc10,genx-elec_trex_co2-15-168h,highs-1.12.0,genx-elec_trex_co2 -genx-elec_trex_co2,15-168h,scip,10.0.0,2025.0,ER,,,2503.856,,,,,86400.0,benchmark-instance-l-01,20251214-rerun-1,2025-12-18 08:42:44.771424,c4-highmem-16,europe-west3-b,48cfc10,genx-elec_trex_co2-15-168h,scip-10.0.0,genx-elec_trex_co2 -genx-elec_trex_co2,15-168h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,2477.496,,,,86400.0,86400.0,benchmark-instance-l-01,20251214-rerun-1,2025-12-18 08:43:22.084343,c4-highmem-16,europe-west3-b,48cfc10,genx-elec_trex_co2-15-168h,cbc-2.10.12,genx-elec_trex_co2 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,141.48,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-15 17:31:37.419537,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332 -genx-6_three_zones_w_multistage,3-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,198.784,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-15 18:35:14.430326,c4-standard-2,europe-west9-c,48cfc10,genx-6_three_zones_w_multistage-3-1h,glpk-5.0,genx-6_three_zones_w_multistage -OEMOF-v4-invest-optimize-all-technologies-with-fossil-share,1-8760ts,glpk,5.0,2020.0,ER,,,156.98,,,,,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-15 19:38:51.049862,c4-standard-2,europe-west9-c,48cfc10,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share-1-8760ts,glpk-5.0,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,133.796,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-15 19:39:30.448931,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332 -times-nz-kea,2-24ts,glpk,5.0,2020.0,warning,unknown,0.1054257390005659,292.296,,,,,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-15 20:43:07.137029,c4-standard-2,europe-west9-c,48cfc10,times-nz-kea-2-24ts,glpk-5.0,times-nz-kea -pypsa-power+ely-ucgas-mod,1-1h,glpk,5.0,2020.0,ok,optimal,158.89758948100098,251.908,84667528380.0,,,,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-15 20:43:07.742199,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely-ucgas-mod-1-1h,glpk-5.0,pypsa-power+ely-ucgas-mod -DCOPF-Carolinas_2M,997-1h,glpk,5.0,2020.0,ER,,,207.052,,,,,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-15 20:45:47.124547,c4-standard-2,europe-west9-c,48cfc10,DCOPF-Carolinas_2M-997-1h,glpk-5.0,DCOPF-Carolinas_2M -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332,73-1h,gurobi,10.0.0,2022.0,TO,Timeout,3600.0,617.436,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-15 20:56:01.852940,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332,73-1h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1144.02,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-15 21:59:39.433993,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332,73-1h,scip,8.0.3,2022.0,TO,Timeout,3600.0,1734.08,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-15 23:03:16.605658,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332 -genx-6_three_zones_w_multistage,3-1h,gurobi,10.0.0,2022.0,ok,optimal,34.48020775599798,741.072,4572.128950559954,,,33.672024965286255,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 00:06:53.460636,c4-standard-2,europe-west9-c,48cfc10,genx-6_three_zones_w_multistage-3-1h,gurobi-10.0.0,genx-6_three_zones_w_multistage -genx-6_three_zones_w_multistage,3-1h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,2848.616,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 00:07:29.462826,c4-standard-2,europe-west9-c,48cfc10,genx-6_three_zones_w_multistage-3-1h,highs-1.5.0.dev0,genx-6_three_zones_w_multistage -genx-6_three_zones_w_multistage,3-1h,scip,8.0.3,2022.0,TO,Timeout,3600.0,2030.564,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 01:11:04.075410,c4-standard-2,europe-west9-c,48cfc10,genx-6_three_zones_w_multistage-3-1h,scip-8.0.3,genx-6_three_zones_w_multistage -OEMOF-v4-invest-optimize-all-technologies-with-fossil-share,1-8760ts,gurobi,10.0.0,2022.0,ok,optimal,11.928412009998285,378.788,148062863.91924885,,,10.93891191482544,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 02:14:41.142277,c4-standard-2,europe-west9-c,48cfc10,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share-1-8760ts,gurobi-10.0.0,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share -OEMOF-v4-invest-optimize-all-technologies-with-fossil-share,1-8760ts,highs,1.5.0.dev0,2022.0,ok,optimal,22.26853258100164,394.428,148062863.91924834,,,21.564255237579346,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 02:14:54.238463,c4-standard-2,europe-west9-c,48cfc10,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share-1-8760ts,highs-1.5.0.dev0,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share -OEMOF-v4-invest-optimize-all-technologies-with-fossil-share,1-8760ts,scip,8.0.3,2022.0,ER,,,734.036,,,,,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 02:15:17.726963,c4-standard-2,europe-west9-c,48cfc10,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share-1-8760ts,scip-8.0.3,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332,73-1h,gurobi,10.0.0,2022.0,ok,optimal,43.41317720900042,251.276,892297.7631909534,,,43.30632901191712,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 02:16:50.631506,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332,73-1h,highs,1.5.0.dev0,2022.0,ok,optimal,1460.1957058629996,754.816,892297.7643177663,,,1460.040866613388,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 02:17:34.775252,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332,73-1h,scip,8.0.3,2022.0,ok,optimal,1245.4584510190034,1073.904,892297.764317036,,,1245.296434,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 02:41:55.704206,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332 -times-nz-kea,2-24ts,gurobi,10.0.0,2022.0,ok,optimal,430.7562270579947,735.184,1213210.3766354031,,,428.6914098262787,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 03:02:42.000282,c4-standard-2,europe-west9-c,48cfc10,times-nz-kea-2-24ts,gurobi-10.0.0,times-nz-kea -times-nz-kea,2-24ts,highs,1.5.0.dev0,2022.0,ok,optimal,162.7172146840021,864.48,1213210.3960770764,,,160.18701148033142,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 03:09:55.450212,c4-standard-2,europe-west9-c,48cfc10,times-nz-kea-2-24ts,highs-1.5.0.dev0,times-nz-kea -times-nz-kea,2-24ts,scip,8.0.3,2022.0,ok,optimal,2903.649966063,3062.768,1213210.392402724,,,2901.482578,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 03:16:16.887175,c4-standard-2,europe-west9-c,48cfc10,times-nz-kea-2-24ts,scip-8.0.3,times-nz-kea -pypsa-power+ely-ucgas-mod,1-1h,gurobi,10.0.0,2022.0,ok,optimal,15.382767312999931,425.064,84668286067.13123,,,14.673327922821043,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 04:04:43.933916,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely-ucgas-mod-1-1h,gurobi-10.0.0,pypsa-power+ely-ucgas-mod -pypsa-power+ely-ucgas-mod,1-1h,highs,1.5.0.dev0,2022.0,ok,optimal,55.317200778998085,447.316,84668286067.13148,,,54.49222040176392,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 04:05:00.623112,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely-ucgas-mod-1-1h,highs-1.5.0.dev0,pypsa-power+ely-ucgas-mod -pypsa-power+ely-ucgas-mod,1-1h,scip,8.0.3,2022.0,ok,optimal,107.11599675400066,922.46,84668286067.13148,,,106.217625,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 04:05:57.264650,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely-ucgas-mod-1-1h,scip-8.0.3,pypsa-power+ely-ucgas-mod -DCOPF-Carolinas_2M,997-1h,gurobi,10.0.0,2022.0,ok,optimal,6.226804379999521,595.044,4463676.828028859,,,4.843773126602173,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 04:07:45.903401,c4-standard-2,europe-west9-c,48cfc10,DCOPF-Carolinas_2M-997-1h,gurobi-10.0.0,DCOPF-Carolinas_2M -DCOPF-Carolinas_2M,997-1h,highs,1.5.0.dev0,2022.0,ok,optimal,12.488257384000462,631.416,4463676.828028885,,,11.085866212844849,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 04:07:53.818437,c4-standard-2,europe-west9-c,48cfc10,DCOPF-Carolinas_2M-997-1h,highs-1.5.0.dev0,DCOPF-Carolinas_2M -DCOPF-Carolinas_2M,997-1h,scip,8.0.3,2022.0,ok,optimal,99.9707729849979,1265.564,4463676.828029633,,,98.589301,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 04:08:08.126190,c4-standard-2,europe-west9-c,48cfc10,DCOPF-Carolinas_2M-997-1h,scip-8.0.3,DCOPF-Carolinas_2M -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332,73-1h,gurobi,11.0.0,2023.0,TO,Timeout,3600.0,684.312,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 04:13:12.285876,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332,73-1h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,1187.16,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 05:16:50.106062,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332,73-1h,scip,8.1.0,2023.0,TO,Timeout,3600.0,1746.08,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 06:20:26.606442,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332,73-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,172.852,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 07:24:02.906735,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332 -genx-6_three_zones_w_multistage,3-1h,gurobi,11.0.0,2023.0,ok,optimal,42.40850093000336,739.456,4572.202744722802,,,41.69086003303528,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 08:27:38.047773,c4-standard-2,europe-west9-c,48cfc10,genx-6_three_zones_w_multistage-3-1h,gurobi-11.0.0,genx-6_three_zones_w_multistage -genx-6_three_zones_w_multistage,3-1h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,3100.852,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 08:28:21.755144,c4-standard-2,europe-west9-c,48cfc10,genx-6_three_zones_w_multistage-3-1h,highs-1.6.0.dev0,genx-6_three_zones_w_multistage -genx-6_three_zones_w_multistage,3-1h,scip,8.1.0,2023.0,TO,Timeout,3600.0,2053.164,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 09:31:57.490263,c4-standard-2,europe-west9-c,48cfc10,genx-6_three_zones_w_multistage-3-1h,scip-8.1.0,genx-6_three_zones_w_multistage -genx-6_three_zones_w_multistage,3-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,230.104,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 10:35:33.605633,c4-standard-2,europe-west9-c,48cfc10,genx-6_three_zones_w_multistage-3-1h,cbc-2.10.11,genx-6_three_zones_w_multistage -OEMOF-v4-invest-optimize-all-technologies-with-fossil-share,1-8760ts,gurobi,11.0.0,2023.0,ok,optimal,11.942999545994098,401.244,148062863.9192489,,,10.979605197906494,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 11:39:08.786977,c4-standard-2,europe-west9-c,48cfc10,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share-1-8760ts,gurobi-11.0.0,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share -OEMOF-v4-invest-optimize-all-technologies-with-fossil-share,1-8760ts,highs,1.6.0.dev0,2023.0,ok,optimal,22.13648616100545,421.128,148062863.91924834,,,21.4089150428772,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 11:39:22.002241,c4-standard-2,europe-west9-c,48cfc10,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share-1-8760ts,highs-1.6.0.dev0,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share -OEMOF-v4-invest-optimize-all-technologies-with-fossil-share,1-8760ts,scip,8.1.0,2023.0,ER,,,744.952,,,,,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 11:39:45.512058,c4-standard-2,europe-west9-c,48cfc10,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share-1-8760ts,scip-8.1.0,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share -OEMOF-v4-invest-optimize-all-technologies-with-fossil-share,1-8760ts,cbc,2.10.11,2023.0,ok,optimal,11.447406977007631,287.136,148062863.91924825,,,,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 11:41:18.807820,c4-standard-2,europe-west9-c,48cfc10,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share-1-8760ts,cbc-2.10.11,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332,73-1h,gurobi,11.0.0,2023.0,ok,optimal,90.50127264100593,293.444,892297.7642900576,,,90.4127049446106,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 11:41:31.488330,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332,73-1h,highs,1.6.0.dev0,2023.0,ok,optimal,1434.4361922509995,784.052,892297.7643177663,,,1434.3378193378448,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 11:43:02.787689,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332,73-1h,scip,8.1.0,2023.0,ok,optimal,1247.814259591003,1079.688,892297.764317036,,,1247.672814,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 12:06:58.028051,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332,73-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,164.996,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 12:27:46.752990,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332 -times-nz-kea,2-24ts,gurobi,11.0.0,2023.0,ok,optimal,443.3314512210054,720.116,1213210.3766250086,,,441.6048240661621,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 13:31:24.475541,c4-standard-2,europe-west9-c,48cfc10,times-nz-kea-2-24ts,gurobi-11.0.0,times-nz-kea -times-nz-kea,2-24ts,highs,1.6.0.dev0,2023.0,ok,optimal,157.96073879399046,868.808,1213210.3960770764,,,156.27288579940796,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 13:38:49.798310,c4-standard-2,europe-west9-c,48cfc10,times-nz-kea-2-24ts,highs-1.6.0.dev0,times-nz-kea -times-nz-kea,2-24ts,scip,8.1.0,2023.0,ok,optimal,2921.6316149589984,3061.248,1213210.392402724,,,2919.765963,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 13:41:29.644513,c4-standard-2,europe-west9-c,48cfc10,times-nz-kea-2-24ts,scip-8.1.0,times-nz-kea -times-nz-kea,2-24ts,cbc,2.10.11,2023.0,ER,,,323.672,,,,,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 14:33:49.577576,c4-standard-2,europe-west9-c,48cfc10,times-nz-kea-2-24ts,cbc-2.10.11,times-nz-kea -pypsa-power+ely-ucgas-mod,1-1h,gurobi,11.0.0,2023.0,ok,optimal,14.07539990299847,430.968,84668286067.13123,,,13.052914142608644,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 14:33:50.425378,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely-ucgas-mod-1-1h,gurobi-11.0.0,pypsa-power+ely-ucgas-mod -pypsa-power+ely-ucgas-mod,1-1h,highs,1.6.0.dev0,2023.0,ok,optimal,54.767801456007874,405.76,84668286067.13148,,,54.08712601661682,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 14:34:05.797058,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely-ucgas-mod-1-1h,highs-1.6.0.dev0,pypsa-power+ely-ucgas-mod -pypsa-power+ely-ucgas-mod,1-1h,scip,8.1.0,2023.0,ok,optimal,106.94684191899432,928.644,84668286067.13148,,,106.176217,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 14:35:01.827362,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely-ucgas-mod-1-1h,scip-8.1.0,pypsa-power+ely-ucgas-mod -pypsa-power+ely-ucgas-mod,1-1h,cbc,2.10.11,2023.0,ok,optimal,36.13705998100341,464.212,84668259518.29695,,,35.46,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 14:36:50.304134,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely-ucgas-mod-1-1h,cbc-2.10.11,pypsa-power+ely-ucgas-mod -DCOPF-Carolinas_2M,997-1h,gurobi,11.0.0,2023.0,ok,optimal,5.96344220598985,615.768,4463676.828028859,,,4.826152086257935,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 14:37:27.720903,c4-standard-2,europe-west9-c,48cfc10,DCOPF-Carolinas_2M-997-1h,gurobi-11.0.0,DCOPF-Carolinas_2M -DCOPF-Carolinas_2M,997-1h,highs,1.6.0.dev0,2023.0,ok,optimal,11.968032037999365,664.424,4463676.828028885,,,10.57547402381897,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 14:37:35.434787,c4-standard-2,europe-west9-c,48cfc10,DCOPF-Carolinas_2M-997-1h,highs-1.6.0.dev0,DCOPF-Carolinas_2M -DCOPF-Carolinas_2M,997-1h,scip,8.1.0,2023.0,ok,optimal,99.61462296100215,1288.204,4463676.828029633,,,98.402324,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 14:37:49.387863,c4-standard-2,europe-west9-c,48cfc10,DCOPF-Carolinas_2M-997-1h,scip-8.1.0,DCOPF-Carolinas_2M -DCOPF-Carolinas_2M,997-1h,cbc,2.10.11,2023.0,ok,optimal,23.58225374300673,395.592,4463676.82802888,,,,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 14:39:31.067743,c4-standard-2,europe-west9-c,48cfc10,DCOPF-Carolinas_2M-997-1h,cbc-2.10.11,DCOPF-Carolinas_2M -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332,73-1h,gurobi,12.0.0,2024.0,TO,Timeout,3600.0,576.08,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 14:40:27.652222,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332,73-1h,highs,1.9.0,2024.0,TO,Timeout,3600.0,1086.096,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 15:44:02.638412,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332,73-1h,scip,9.2.0,2024.0,TO,Timeout,3600.0,1726.124,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 16:47:40.954122,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332,73-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,155.796,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 17:51:19.625184,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332 -genx-6_three_zones_w_multistage,3-1h,gurobi,12.0.0,2024.0,ok,optimal,33.4549107280036,648.628,4572.124704710384,2.844215259756311e-06,8.059289015293991e-05,32.734111070632935,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 18:54:56.843197,c4-standard-2,europe-west9-c,48cfc10,genx-6_three_zones_w_multistage-3-1h,gurobi-12.0.0,genx-6_three_zones_w_multistage -genx-6_three_zones_w_multistage,3-1h,highs,1.9.0,2024.0,TO,Timeout,3600.0,3486.784,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 18:55:31.955516,c4-standard-2,europe-west9-c,48cfc10,genx-6_three_zones_w_multistage-3-1h,highs-1.9.0,genx-6_three_zones_w_multistage -genx-6_three_zones_w_multistage,3-1h,scip,9.2.0,2024.0,TO,Timeout,3600.0,2035.172,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 19:59:08.430940,c4-standard-2,europe-west9-c,48cfc10,genx-6_three_zones_w_multistage-3-1h,scip-9.2.0,genx-6_three_zones_w_multistage -genx-6_three_zones_w_multistage,3-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,212.728,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 21:02:44.857950,c4-standard-2,europe-west9-c,48cfc10,genx-6_three_zones_w_multistage-3-1h,cbc-2.10.12,genx-6_three_zones_w_multistage -OEMOF-v4-invest-optimize-all-technologies-with-fossil-share,1-8760ts,gurobi,12.0.0,2024.0,ok,optimal,11.79645368999627,370.372,148062863.9192487,,,10.999249935150146,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 22:06:20.868597,c4-standard-2,europe-west9-c,48cfc10,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share-1-8760ts,gurobi-12.0.0,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share -OEMOF-v4-invest-optimize-all-technologies-with-fossil-share,1-8760ts,highs,1.9.0,2024.0,ok,optimal,22.351123757995083,391.776,148062863.91924834,,,21.57922124862671,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 22:06:34.041676,c4-standard-2,europe-west9-c,48cfc10,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share-1-8760ts,highs-1.9.0,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share -OEMOF-v4-invest-optimize-all-technologies-with-fossil-share,1-8760ts,scip,9.2.0,2024.0,ER,,,726.916,,,,,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 22:06:57.834824,c4-standard-2,europe-west9-c,48cfc10,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share-1-8760ts,scip-9.2.0,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share -OEMOF-v4-invest-optimize-all-technologies-with-fossil-share,1-8760ts,cbc,2.10.12,2024.0,ok,optimal,12.132622110002558,320.196,148062863.91924825,,,,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 22:08:30.897237,c4-standard-2,europe-west9-c,48cfc10,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share-1-8760ts,cbc-2.10.12,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332,73-1h,gurobi,12.0.0,2024.0,ok,optimal,128.53761752600258,278.88,892297.7641046888,0.0,9.864014456690291e-05,128.44605898857117,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 22:08:44.446471,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332,73-1h,highs,1.9.0,2024.0,ok,optimal,2520.487687023997,824.816,892297.7643219706,5.9952043329758445e-15,9.942614934515563e-05,2520.315236806869,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 22:10:53.672988,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332,73-1h,scip,9.2.0,2024.0,ok,optimal,1247.8756795419904,1065.076,892297.764317036,1.2335202859148351e-09,0.0,1247.727839,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 22:52:54.820452,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332,73-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,147.544,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 23:17:19.017029,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332 -times-nz-kea,2-24ts,gurobi,12.0.0,2024.0,ok,optimal,328.965960179994,655.152,1213210.3868849608,,,327.27458119392395,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 00:20:54.535108,c4-standard-2,europe-west9-c,48cfc10,times-nz-kea-2-24ts,gurobi-12.0.0,times-nz-kea -times-nz-kea,2-24ts,highs,1.9.0,2024.0,ok,optimal,167.17186333799327,845.0,1213210.396077077,,,164.33004927635193,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 00:26:27.128099,c4-standard-2,europe-west9-c,48cfc10,times-nz-kea-2-24ts,highs-1.9.0,times-nz-kea -times-nz-kea,2-24ts,scip,9.2.0,2024.0,ok,optimal,2869.846951938001,3078.036,1213210.392402724,,,2868.00337,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 00:29:17.860607,c4-standard-2,europe-west9-c,48cfc10,times-nz-kea-2-24ts,scip-9.2.0,times-nz-kea -times-nz-kea,2-24ts,cbc,2.10.12,2024.0,ER,,,306.2,,,,,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 01:17:11.846130,c4-standard-2,europe-west9-c,48cfc10,times-nz-kea-2-24ts,cbc-2.10.12,times-nz-kea -pypsa-power+ely-ucgas-mod,1-1h,gurobi,12.0.0,2024.0,ok,optimal,13.512187688000267,416.656,84668286067.13121,0.0,8.96969643579226e-06,12.93434715270996,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 01:17:12.471579,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely-ucgas-mod-1-1h,gurobi-12.0.0,pypsa-power+ely-ucgas-mod -pypsa-power+ely-ucgas-mod,1-1h,highs,1.9.0,2024.0,ok,optimal,55.8570468580001,450.864,84668286067.13148,0.0,8.969696433809829e-06,54.999106884002686,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 01:21:03.121742,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely-ucgas-mod-1-1h,highs-1.9.0,pypsa-power+ely-ucgas-mod -pypsa-power+ely-ucgas-mod,1-1h,scip,9.2.0,2024.0,ok,optimal,106.99765467799445,911.508,84668286067.13148,0.0,8.96977688890428e-06,106.243076,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 01:22:00.375225,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely-ucgas-mod-1-1h,scip-9.2.0,pypsa-power+ely-ucgas-mod -pypsa-power+ely-ucgas-mod,1-1h,cbc,2.10.12,2024.0,ok,optimal,37.06458914199902,464.756,84668259518.29695,0.0,0.0,35.61,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 01:23:48.962262,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely-ucgas-mod-1-1h,cbc-2.10.12,pypsa-power+ely-ucgas-mod -DCOPF-Carolinas_2M,997-1h,gurobi,12.0.0,2024.0,ok,optimal,6.05015421299322,577.492,4463676.828028881,,,4.745430946350098,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 01:24:27.382893,c4-standard-2,europe-west9-c,48cfc10,DCOPF-Carolinas_2M-997-1h,gurobi-12.0.0,DCOPF-Carolinas_2M -DCOPF-Carolinas_2M,997-1h,highs,1.9.0,2024.0,ok,optimal,11.120623829003309,621.936,4463676.828028885,,,9.625344514846802,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 01:24:35.515425,c4-standard-2,europe-west9-c,48cfc10,DCOPF-Carolinas_2M-997-1h,highs-1.9.0,DCOPF-Carolinas_2M -DCOPF-Carolinas_2M,997-1h,scip,9.2.0,2024.0,ok,optimal,99.72002910499576,1252.808,4463676.828029633,,,98.513563,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 01:24:48.822844,c4-standard-2,europe-west9-c,48cfc10,DCOPF-Carolinas_2M-997-1h,scip-9.2.0,DCOPF-Carolinas_2M -DCOPF-Carolinas_2M,997-1h,cbc,2.10.12,2024.0,ok,optimal,24.958397445996525,450.204,4463676.82802888,,,,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 01:26:30.945201,c4-standard-2,europe-west9-c,48cfc10,DCOPF-Carolinas_2M-997-1h,cbc-2.10.12,DCOPF-Carolinas_2M -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332,73-1h,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,732.352,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 01:27:31.520519,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332,73-1h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1092.156,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 02:31:08.566403,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332,73-1h,scip,10.0.0,2025.0,TO,Timeout,3600.0,1763.496,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 03:34:45.253362,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332 -genx-6_three_zones_w_multistage,3-1h,gurobi,13.0.0,2025.0,ok,optimal,20.4788001380075,728.636,4572.106085366124,0.0,7.816989613819565e-05,19.82362699508667,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 04:38:22.104601,c4-standard-2,europe-west9-c,48cfc10,genx-6_three_zones_w_multistage-3-1h,gurobi-13.0.0,genx-6_three_zones_w_multistage -genx-6_three_zones_w_multistage,3-1h,highs,1.12.0,2025.0,ok,optimal,2839.0542244690005,3330.884,4572.101207592708,1.1102230246251563e-16,9.83883527003634e-05,2838.291220664978,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 04:38:44.126693,c4-standard-2,europe-west9-c,48cfc10,genx-6_three_zones_w_multistage-3-1h,highs-1.12.0,genx-6_three_zones_w_multistage -genx-6_three_zones_w_multistage,3-1h,scip,10.0.0,2025.0,TO,Timeout,3600.0,2060.272,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 05:26:04.741029,c4-standard-2,europe-west9-c,48cfc10,genx-6_three_zones_w_multistage-3-1h,scip-10.0.0,genx-6_three_zones_w_multistage -OEMOF-v4-invest-optimize-all-technologies-with-fossil-share,1-8760ts,gurobi,13.0.0,2025.0,ok,optimal,11.937211618991569,413.764,148062863.9192487,,,11.219907999038696,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 06:29:40.573686,c4-standard-2,europe-west9-c,48cfc10,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share-1-8760ts,gurobi-13.0.0,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share -OEMOF-v4-invest-optimize-all-technologies-with-fossil-share,1-8760ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,32.176251463999506,222.3,148062863.92,,,32.176251463999506,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 06:29:53.857886,c4-standard-2,europe-west9-c,48cfc10,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share-1-8760ts,highs-hipo-1.12.0-hipo,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share -OEMOF-v4-invest-optimize-all-technologies-with-fossil-share,1-8760ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,26.033170553011587,171.924,148062863.92,,,26.033170553011587,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 06:30:26.775319,c4-standard-2,europe-west9-c,48cfc10,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share-1-8760ts,highs-ipx-1.12.0-hipo,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share -OEMOF-v4-invest-optimize-all-technologies-with-fossil-share,1-8760ts,highs,1.12.0,2025.0,ok,optimal,12.214861924992874,439.816,148062863.91924888,,,11.455631256103516,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 06:30:53.549224,c4-standard-2,europe-west9-c,48cfc10,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share-1-8760ts,highs-1.12.0,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share -OEMOF-v4-invest-optimize-all-technologies-with-fossil-share,1-8760ts,scip,10.0.0,2025.0,ER,,,755.184,,,,,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 06:31:07.228639,c4-standard-2,europe-west9-c,48cfc10,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share-1-8760ts,scip-10.0.0,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332,73-1h,gurobi,13.0.0,2025.0,ok,optimal,76.07084562000819,305.408,892297.7643225634,0.0,9.820690892248335e-05,75.9809901714325,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 06:32:40.967164,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332,73-1h,highs,1.12.0,2025.0,ok,optimal,1825.5105508809795,1088.916,892297.7643217972,3.219646771412954e-14,9.955688629082038e-05,1825.4018273353577,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 06:33:57.892072,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332,73-1h,scip,10.0.0,2025.0,ok,optimal,1242.9002462060016,1091.308,892297.764317036,1.2335202859148351e-09,0.0,1242.754051,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 07:04:24.233520,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332 -times-nz-kea,2-24ts,gurobi,13.0.0,2025.0,ok,optimal,387.0715339110175,734.752,1213210.3868849613,,,381.8101840019226,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 07:25:08.062683,c4-standard-2,europe-west9-c,48cfc10,times-nz-kea-2-24ts,gurobi-13.0.0,times-nz-kea -times-nz-kea,2-24ts,highs-hipo,1.12.0-hipo,2025.0,warning,Unknown,459.09608852199744,1402.832,1213210.3961,,,459.09608852199744,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 07:35:13.209719,c4-standard-2,europe-west9-c,48cfc10,times-nz-kea-2-24ts,highs-hipo-1.12.0-hipo,times-nz-kea -times-nz-kea,2-24ts,highs-ipx,1.12.0-hipo,2025.0,warning,Unknown,210.1007334400201,414.9,1213210.3961,,,210.1007334400201,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 07:42:53.051433,c4-standard-2,europe-west9-c,48cfc10,times-nz-kea-2-24ts,highs-ipx-1.12.0-hipo,times-nz-kea -times-nz-kea,2-24ts,highs,1.12.0,2025.0,ok,optimal,173.06942575299763,889.708,1213210.396077077,,,171.175954580307,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 07:46:23.893044,c4-standard-2,europe-west9-c,48cfc10,times-nz-kea-2-24ts,highs-1.12.0,times-nz-kea -times-nz-kea,2-24ts,scip,10.0.0,2025.0,ok,optimal,2890.6324110150163,3095.3,1213210.392402724,,,2888.670593,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 07:49:19.149799,c4-standard-2,europe-west9-c,48cfc10,times-nz-kea-2-24ts,scip-10.0.0,times-nz-kea -pypsa-power+ely-ucgas-mod,1-1h,gurobi,13.0.0,2025.0,ok,optimal,13.366190706001362,446.092,84668286067.13121,0.0,8.96969643579226e-06,12.75356411933899,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 08:41:08.408609,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely-ucgas-mod-1-1h,gurobi-13.0.0,pypsa-power+ely-ucgas-mod -pypsa-power+ely-ucgas-mod,1-1h,highs,1.12.0,2025.0,ok,optimal,61.23476510800538,454.956,84668286067.13148,0.0,8.96969643362961e-06,60.52063274383545,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 08:41:23.220430,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely-ucgas-mod-1-1h,highs-1.12.0,pypsa-power+ely-ucgas-mod -pypsa-power+ely-ucgas-mod,1-1h,scip,10.0.0,2025.0,ok,optimal,107.62485875998392,937.552,84668286067.13148,0.0,8.96977688890428e-06,106.836851,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 08:42:25.854549,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely-ucgas-mod-1-1h,scip-10.0.0,pypsa-power+ely-ucgas-mod -DCOPF-Carolinas_2M,997-1h,gurobi,13.0.0,2025.0,ok,optimal,5.946596538997255,623.676,4463676.828028414,,,4.803076982498169,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 08:44:15.142885,c4-standard-2,europe-west9-c,48cfc10,DCOPF-Carolinas_2M-997-1h,gurobi-13.0.0,DCOPF-Carolinas_2M -DCOPF-Carolinas_2M,997-1h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,32.074555030994816,387.848,4463676.828,,,32.074555030994816,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 08:44:22.931638,c4-standard-2,europe-west9-c,48cfc10,DCOPF-Carolinas_2M-997-1h,highs-hipo-1.12.0-hipo,DCOPF-Carolinas_2M -DCOPF-Carolinas_2M,997-1h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,11.524414587009232,284.16,4463676.8344,,,11.524414587009232,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 08:44:55.745630,c4-standard-2,europe-west9-c,48cfc10,DCOPF-Carolinas_2M-997-1h,highs-ipx-1.12.0-hipo,DCOPF-Carolinas_2M -DCOPF-Carolinas_2M,997-1h,highs,1.12.0,2025.0,ok,optimal,11.099860721005824,673.38,4463676.8280289015,,,9.587732791900637,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 08:45:08.016641,c4-standard-2,europe-west9-c,48cfc10,DCOPF-Carolinas_2M-997-1h,highs-1.12.0,DCOPF-Carolinas_2M -DCOPF-Carolinas_2M,997-1h,scip,10.0.0,2025.0,ok,optimal,99.43379897400156,1297.352,4463676.828029633,,,98.180169,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 08:45:21.223344,c4-standard-2,europe-west9-c,48cfc10,DCOPF-Carolinas_2M-997-1h,scip-10.0.0,DCOPF-Carolinas_2M -genx-3_three_zones_w_co2_capture,3-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,191.4,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-15 17:30:43.212808,c4-standard-2,europe-west3-c,48cfc10,genx-3_three_zones_w_co2_capture-3-1h,glpk-5.0,genx-3_three_zones_w_co2_capture -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,141.856,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-15 18:34:20.637560,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29 -SWITCH-3-zone-toy,3-6ts,glpk,5.0,2020.0,ER,,,124.964,,,,,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-15 19:37:56.466103,c4-standard-2,europe-west3-c,48cfc10,SWITCH-3-zone-toy-3-6ts,glpk-5.0,SWITCH-3-zone-toy -pglib_opf_case1951_rte,1951-NA,glpk,5.0,2020.0,TO,Timeout,3600.0,129.448,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-15 19:37:56.975557,c4-standard-2,europe-west3-c,48cfc10,pglib_opf_case1951_rte-1951-NA,glpk-5.0,pglib_opf_case1951_rte -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,133.316,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-15 20:41:33.355234,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29 -times-etimeseu-europe-elec+heat-single_stage,29-64ts,glpk,5.0,2020.0,warning,unknown,0.0932528749999619,273.548,,,,,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-15 21:45:08.218691,c4-standard-2,europe-west3-c,48cfc10,times-etimeseu-europe-elec+heat-single_stage-29-64ts,glpk-5.0,times-etimeseu-europe-elec+heat-single_stage -pypsa-power+ely+battery,1-1h,glpk,5.0,2020.0,ok,optimal,127.25494898899888,296.688,31714138110.0,,,,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-15 21:45:08.815668,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely+battery-1-1h,glpk-5.0,pypsa-power+ely+battery -pypsa-power+ely,1-1h,glpk,5.0,2020.0,ok,optimal,66.2142923729989,243.8,31714138110.0,,,,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-15 21:47:16.565846,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely-1-1h,glpk-5.0,pypsa-power+ely -genx-3_three_zones_w_co2_capture,3-1h,gurobi,10.0.0,2022.0,TO,Timeout,3600.0,2060.308,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-15 21:49:05.424640,c4-standard-2,europe-west3-c,48cfc10,genx-3_three_zones_w_co2_capture-3-1h,gurobi-10.0.0,genx-3_three_zones_w_co2_capture -genx-3_three_zones_w_co2_capture,3-1h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,3665.648,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-15 22:52:41.413772,c4-standard-2,europe-west3-c,48cfc10,genx-3_three_zones_w_co2_capture-3-1h,highs-1.5.0.dev0,genx-3_three_zones_w_co2_capture -genx-3_three_zones_w_co2_capture,3-1h,scip,8.0.3,2022.0,TO,Timeout,3600.0,1979.484,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-15 23:56:18.075193,c4-standard-2,europe-west3-c,48cfc10,genx-3_three_zones_w_co2_capture-3-1h,scip-8.0.3,genx-3_three_zones_w_co2_capture -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29,73-1h,gurobi,10.0.0,2022.0,ok,optimal,403.34237828999903,395.16,1768633.657413076,,,402.97338700294495,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 00:59:53.032395,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29,73-1h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1339.84,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 01:06:37.236486,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29,73-1h,scip,8.0.3,2022.0,TO,Timeout,3600.0,1893.08,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 02:10:13.626109,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29 -SWITCH-3-zone-toy,3-6ts,gurobi,10.0.0,2022.0,ok,optimal,0.1551065829989966,159.244,134733088.4292911,,,0.0044851303100585,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 03:13:48.507301,c4-standard-2,europe-west3-c,48cfc10,SWITCH-3-zone-toy-3-6ts,gurobi-10.0.0,SWITCH-3-zone-toy -SWITCH-3-zone-toy,3-6ts,highs,1.5.0.dev0,2022.0,ok,optimal,0.0092644089963869,147.888,134733088.4292911,,,0.0028972625732421,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 03:13:49.267680,c4-standard-2,europe-west3-c,48cfc10,SWITCH-3-zone-toy-3-6ts,highs-1.5.0.dev0,SWITCH-3-zone-toy -SWITCH-3-zone-toy,3-6ts,scip,8.0.3,2022.0,ok,optimal,0.0175590620056027,161.6,134733088.42929113,,,0.009537,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 03:13:49.883728,c4-standard-2,europe-west3-c,48cfc10,SWITCH-3-zone-toy-3-6ts,scip-8.0.3,SWITCH-3-zone-toy -pglib_opf_case1951_rte,1951-NA,gurobi,10.0.0,2022.0,ok,optimal,487.4714869569944,290.428,2031800.3588907872,,,487.4053020477295,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 03:13:50.509645,c4-standard-2,europe-west3-c,48cfc10,pglib_opf_case1951_rte-1951-NA,gurobi-10.0.0,pglib_opf_case1951_rte -pglib_opf_case1951_rte,1951-NA,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,469.64,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 03:21:58.677176,c4-standard-2,europe-west3-c,48cfc10,pglib_opf_case1951_rte-1951-NA,highs-1.5.0.dev0,pglib_opf_case1951_rte -pglib_opf_case1951_rte,1951-NA,scip,8.0.3,2022.0,ok,optimal,465.8363440250032,284.816,2031627.9150498372,,,465.717283,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 04:25:34.623877,c4-standard-2,europe-west3-c,48cfc10,pglib_opf_case1951_rte-1951-NA,scip-8.0.3,pglib_opf_case1951_rte -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29,73-1h,gurobi,10.0.0,2022.0,ok,optimal,58.56328428500274,252.052,1044605.358746225,,,58.29575705528259,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 04:33:21.181910,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29,73-1h,highs,1.5.0.dev0,2022.0,ok,optimal,650.4290843510025,521.576,1044605.3587425743,,,650.2701141834259,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 04:34:20.502311,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29,73-1h,scip,8.0.3,2022.0,ok,optimal,823.289188511997,1058.308,1044605.3587433776,,,823.129184,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 04:45:11.691789,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29 -times-etimeseu-europe-elec+heat-single_stage,29-64ts,gurobi,10.0.0,2022.0,ok,optimal,12.014005894001455,912.82,430451.3649280084,,,8.633067846298218,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 04:58:55.804155,c4-standard-2,europe-west3-c,48cfc10,times-etimeseu-europe-elec+heat-single_stage-29-64ts,gurobi-10.0.0,times-etimeseu-europe-elec+heat-single_stage -times-etimeseu-europe-elec+heat-single_stage,29-64ts,highs,1.5.0.dev0,2022.0,ok,optimal,167.6757437549968,1012.58,430451.36492800864,,,164.51277208328247,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 04:59:10.705005,c4-standard-2,europe-west3-c,48cfc10,times-etimeseu-europe-elec+heat-single_stage-29-64ts,highs-1.5.0.dev0,times-etimeseu-europe-elec+heat-single_stage -times-etimeseu-europe-elec+heat-single_stage,29-64ts,scip,8.0.3,2022.0,ok,optimal,355.32785211500595,3092.004,430451.36492800846,,,351.530858,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 05:02:01.565128,c4-standard-2,europe-west3-c,48cfc10,times-etimeseu-europe-elec+heat-single_stage-29-64ts,scip-8.0.3,times-etimeseu-europe-elec+heat-single_stage -pypsa-power+ely+battery,1-1h,gurobi,10.0.0,2022.0,ok,optimal,15.360788582001987,533.564,31714138111.860744,,,14.151868104934692,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 05:08:00.751018,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely+battery-1-1h,gurobi-10.0.0,pypsa-power+ely+battery -pypsa-power+ely+battery,1-1h,highs,1.5.0.dev0,2022.0,ok,optimal,28.43728927399934,660.308,31714138111.86105,,,27.37848973274231,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 05:08:17.573075,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely+battery-1-1h,highs-1.5.0.dev0,pypsa-power+ely+battery -pypsa-power+ely+battery,1-1h,scip,8.0.3,2022.0,ok,optimal,161.62544642100693,1120.14,31714138111.860943,,,160.791683,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 05:08:47.464185,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely+battery-1-1h,scip-8.0.3,pypsa-power+ely+battery -pypsa-power+ely,1-1h,gurobi,10.0.0,2022.0,ok,optimal,4.715068771001825,415.54,31714138111.860744,,,3.962822914123535,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 05:11:30.762888,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely-1-1h,gurobi-10.0.0,pypsa-power+ely -pypsa-power+ely,1-1h,highs,1.5.0.dev0,2022.0,ok,optimal,4.813196555995091,474.64,31714138111.86105,,,4.082151889801025,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 05:11:36.681767,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely-1-1h,highs-1.5.0.dev0,pypsa-power+ely -pypsa-power+ely,1-1h,scip,8.0.3,2022.0,ok,optimal,86.50840151400189,829.428,31714138111.860943,,,85.905623,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 05:11:42.684448,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely-1-1h,scip-8.0.3,pypsa-power+ely -genx-3_three_zones_w_co2_capture,3-1h,gurobi,11.0.0,2023.0,TO,Timeout,3600.0,1590.052,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 05:16:35.993658,c4-standard-2,europe-west3-c,48cfc10,genx-3_three_zones_w_co2_capture-3-1h,gurobi-11.0.0,genx-3_three_zones_w_co2_capture -genx-3_three_zones_w_co2_capture,3-1h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,3734.98,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 06:20:12.869132,c4-standard-2,europe-west3-c,48cfc10,genx-3_three_zones_w_co2_capture-3-1h,highs-1.6.0.dev0,genx-3_three_zones_w_co2_capture -genx-3_three_zones_w_co2_capture,3-1h,scip,8.1.0,2023.0,TO,Timeout,3600.0,1989.464,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 07:23:50.207730,c4-standard-2,europe-west3-c,48cfc10,genx-3_three_zones_w_co2_capture-3-1h,scip-8.1.0,genx-3_three_zones_w_co2_capture -genx-3_three_zones_w_co2_capture,3-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,223.2,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 08:27:27.614646,c4-standard-2,europe-west3-c,48cfc10,genx-3_three_zones_w_co2_capture-3-1h,cbc-2.10.11,genx-3_three_zones_w_co2_capture -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29,73-1h,gurobi,11.0.0,2023.0,ok,optimal,902.4573515359951,435.492,1768633.6574147737,,,902.0599720478058,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 09:31:06.859060,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29,73-1h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,1372.172,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 09:46:10.214643,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29,73-1h,scip,8.1.0,2023.0,TO,Timeout,3600.0,1902.848,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 10:49:46.291151,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29,73-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,173.044,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 11:53:23.236286,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29 -SWITCH-3-zone-toy,3-6ts,gurobi,11.0.0,2023.0,ok,optimal,0.1388603490049718,169.104,134733088.4292911,,,0.0046908855438232,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 12:56:59.920845,c4-standard-2,europe-west3-c,48cfc10,SWITCH-3-zone-toy-3-6ts,gurobi-11.0.0,SWITCH-3-zone-toy -SWITCH-3-zone-toy,3-6ts,highs,1.6.0.dev0,2023.0,ok,optimal,0.0094453700003214,158.444,134733088.4292911,,,0.0031123161315917,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 12:57:00.813088,c4-standard-2,europe-west3-c,48cfc10,SWITCH-3-zone-toy-3-6ts,highs-1.6.0.dev0,SWITCH-3-zone-toy -SWITCH-3-zone-toy,3-6ts,scip,8.1.0,2023.0,ok,optimal,0.0254393340001115,172.156,134733088.42929113,,,0.009618,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 12:57:01.557415,c4-standard-2,europe-west3-c,48cfc10,SWITCH-3-zone-toy-3-6ts,scip-8.1.0,SWITCH-3-zone-toy -SWITCH-3-zone-toy,3-6ts,cbc,2.10.11,2023.0,ok,optimal,0.0475579560006735,156.664,134733088.4292911,,,0.03,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 12:57:02.313496,c4-standard-2,europe-west3-c,48cfc10,SWITCH-3-zone-toy-3-6ts,cbc-2.10.11,SWITCH-3-zone-toy -pglib_opf_case1951_rte,1951-NA,gurobi,11.0.0,2023.0,ok,optimal,322.4239221530006,234.416,2031637.8276491172,,,322.3669319152832,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 12:57:03.107554,c4-standard-2,europe-west3-c,48cfc10,pglib_opf_case1951_rte-1951-NA,gurobi-11.0.0,pglib_opf_case1951_rte -pglib_opf_case1951_rte,1951-NA,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,532.676,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 13:02:26.342856,c4-standard-2,europe-west3-c,48cfc10,pglib_opf_case1951_rte-1951-NA,highs-1.6.0.dev0,pglib_opf_case1951_rte -pglib_opf_case1951_rte,1951-NA,scip,8.1.0,2023.0,ok,optimal,463.5214678259945,291.636,2031627.9150498372,,,463.427321,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 14:06:03.685129,c4-standard-2,europe-west3-c,48cfc10,pglib_opf_case1951_rte-1951-NA,scip-8.1.0,pglib_opf_case1951_rte -pglib_opf_case1951_rte,1951-NA,cbc,2.10.11,2023.0,TO,Timeout,3600.0,161.064,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 14:13:48.020136,c4-standard-2,europe-west3-c,48cfc10,pglib_opf_case1951_rte-1951-NA,cbc-2.10.11,pglib_opf_case1951_rte -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29,73-1h,gurobi,11.0.0,2023.0,ok,optimal,50.059351240008255,257.592,1044605.3587019702,,,49.79883098602295,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 15:17:23.892895,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29,73-1h,highs,1.6.0.dev0,2023.0,ok,optimal,636.6208134820045,535.296,1044605.3587425743,,,636.5188488960266,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 15:18:14.778019,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29,73-1h,scip,8.1.0,2023.0,ok,optimal,821.5806390000071,1065.556,1044605.3587433776,,,821.440705,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 15:28:52.219041,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29,73-1h,cbc,2.10.11,2023.0,ok,optimal,603.330819507988,234.104,1044605.35874268,,,603.2,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 15:42:34.699581,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29 -times-etimeseu-europe-elec+heat-single_stage,29-64ts,gurobi,11.0.0,2023.0,ok,optimal,11.001982191010027,891.196,430451.36492800846,,,8.238142013549805,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 15:52:38.839617,c4-standard-2,europe-west3-c,48cfc10,times-etimeseu-europe-elec+heat-single_stage-29-64ts,gurobi-11.0.0,times-etimeseu-europe-elec+heat-single_stage -times-etimeseu-europe-elec+heat-single_stage,29-64ts,highs,1.6.0.dev0,2023.0,ok,optimal,163.39186999000958,1000.804,430451.36492800864,,,161.26940727233887,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 15:52:51.975625,c4-standard-2,europe-west3-c,48cfc10,times-etimeseu-europe-elec+heat-single_stage-29-64ts,highs-1.6.0.dev0,times-etimeseu-europe-elec+heat-single_stage -times-etimeseu-europe-elec+heat-single_stage,29-64ts,scip,8.1.0,2023.0,ok,optimal,353.40871299800347,3081.436,430451.36492800846,,,350.25131,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 15:55:37.360788,c4-standard-2,europe-west3-c,48cfc10,times-etimeseu-europe-elec+heat-single_stage-29-64ts,scip-8.1.0,times-etimeseu-europe-elec+heat-single_stage -times-etimeseu-europe-elec+heat-single_stage,29-64ts,cbc,2.10.11,2023.0,ER,,,305.444,,,,,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 16:01:33.916107,c4-standard-2,europe-west3-c,48cfc10,times-etimeseu-europe-elec+heat-single_stage-29-64ts,cbc-2.10.11,times-etimeseu-europe-elec+heat-single_stage -pypsa-power+ely+battery,1-1h,gurobi,11.0.0,2023.0,ok,optimal,15.976819603994954,528.78,31714138111.86075,,,14.904258012771606,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 16:01:34.760780,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely+battery-1-1h,gurobi-11.0.0,pypsa-power+ely+battery -pypsa-power+ely+battery,1-1h,highs,1.6.0.dev0,2023.0,ok,optimal,27.335159308000584,668.02,31714138111.86105,,,26.448842525482178,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 16:01:52.159315,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely+battery-1-1h,highs-1.6.0.dev0,pypsa-power+ely+battery -pypsa-power+ely+battery,1-1h,scip,8.1.0,2023.0,ok,optimal,161.3508247879945,1119.368,31714138111.860943,,,160.625091,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 16:02:20.895642,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely+battery-1-1h,scip-8.1.0,pypsa-power+ely+battery -pypsa-power+ely+battery,1-1h,cbc,2.10.11,2023.0,ok,optimal,38.15876132900303,332.728,31714138111.860737,,,,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 16:05:03.895273,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely+battery-1-1h,cbc-2.10.11,pypsa-power+ely+battery -pypsa-power+ely,1-1h,gurobi,11.0.0,2023.0,ok,optimal,4.6257300110009965,416.916,31714138111.860744,,,4.036407947540283,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 16:05:43.433302,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely-1-1h,gurobi-11.0.0,pypsa-power+ely -pypsa-power+ely,1-1h,highs,1.6.0.dev0,2023.0,ok,optimal,4.644617762998678,468.228,31714138111.86105,,,4.018896579742432,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 16:05:49.250949,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely-1-1h,highs-1.6.0.dev0,pypsa-power+ely -pypsa-power+ely,1-1h,scip,8.1.0,2023.0,ok,optimal,86.39582090899057,830.552,31714138111.860943,,,85.878518,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 16:05:55.078983,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely-1-1h,scip-8.1.0,pypsa-power+ely -pypsa-power+ely,1-1h,cbc,2.10.11,2023.0,ok,optimal,6.381569321994903,280.78,31714138111.860737,,,,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 16:07:22.842624,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely-1-1h,cbc-2.10.11,pypsa-power+ely -genx-3_three_zones_w_co2_capture,3-1h,gurobi,12.0.0,2024.0,TO,Timeout,3600.0,2133.012,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 16:08:04.546082,c4-standard-2,europe-west3-c,48cfc10,genx-3_three_zones_w_co2_capture-3-1h,gurobi-12.0.0,genx-3_three_zones_w_co2_capture -genx-3_three_zones_w_co2_capture,3-1h,highs,1.9.0,2024.0,OOM,Out of Memory,,,,,,,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 17:11:40.447787,c4-standard-2,europe-west3-c,48cfc10,genx-3_three_zones_w_co2_capture-3-1h,highs-1.9.0,genx-3_three_zones_w_co2_capture -genx-3_three_zones_w_co2_capture,3-1h,scip,9.2.0,2024.0,TO,Timeout,3600.0,1977.504,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 18:06:01.423085,c4-standard-2,europe-west3-c,48cfc10,genx-3_three_zones_w_co2_capture-3-1h,scip-9.2.0,genx-3_three_zones_w_co2_capture -genx-3_three_zones_w_co2_capture,3-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,205.936,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 19:09:39.373107,c4-standard-2,europe-west3-c,48cfc10,genx-3_three_zones_w_co2_capture-3-1h,cbc-2.10.12,genx-3_three_zones_w_co2_capture -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29,73-1h,gurobi,12.0.0,2024.0,ok,optimal,355.34363918501185,392.732,1768633.6573502969,0.0,9.742502101460498e-05,354.688658952713,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 20:13:14.719360,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29,73-1h,highs,1.9.0,2024.0,TO,Timeout,3600.0,1193.704,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 20:19:10.935140,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29,73-1h,scip,9.2.0,2024.0,TO,Timeout,3600.0,1879.092,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 21:22:46.758094,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29,73-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,155.48,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 22:26:23.960605,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29 -SWITCH-3-zone-toy,3-6ts,gurobi,12.0.0,2024.0,ok,optimal,0.1508140939986333,153.532,134733088.4292911,0.0,0.0,0.0044898986816406,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 23:30:00.189250,c4-standard-2,europe-west3-c,48cfc10,SWITCH-3-zone-toy-3-6ts,gurobi-12.0.0,SWITCH-3-zone-toy -SWITCH-3-zone-toy,3-6ts,highs,1.9.0,2024.0,ok,optimal,0.0098579960031202,142.236,134733088.4292911,0.0,0.0,0.0032017230987548,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 23:30:00.858741,c4-standard-2,europe-west3-c,48cfc10,SWITCH-3-zone-toy-3-6ts,highs-1.9.0,SWITCH-3-zone-toy -SWITCH-3-zone-toy,3-6ts,scip,9.2.0,2024.0,ok,optimal,0.0277008460107026,155.572,134733088.42929113,0.0,0.0,0.0095859999999999,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 23:30:01.382967,c4-standard-2,europe-west3-c,48cfc10,SWITCH-3-zone-toy-3-6ts,scip-9.2.0,SWITCH-3-zone-toy -SWITCH-3-zone-toy,3-6ts,cbc,2.10.12,2024.0,ok,optimal,0.0656611869926564,141.612,134733088.4292911,0.0,,0.03,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 23:30:01.921426,c4-standard-2,europe-west3-c,48cfc10,SWITCH-3-zone-toy-3-6ts,cbc-2.10.12,SWITCH-3-zone-toy -pglib_opf_case1951_rte,1951-NA,gurobi,12.0.0,2024.0,ok,optimal,454.4423902419949,223.796,2031705.30054945,0.0,3.808893915753423e-05,454.3860611915589,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 23:30:02.502932,c4-standard-2,europe-west3-c,48cfc10,pglib_opf_case1951_rte-1951-NA,gurobi-12.0.0,pglib_opf_case1951_rte -pglib_opf_case1951_rte,1951-NA,highs,1.9.0,2024.0,TO,Timeout,3600.0,408.948,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 23:37:37.565581,c4-standard-2,europe-west3-c,48cfc10,pglib_opf_case1951_rte-1951-NA,highs-1.9.0,pglib_opf_case1951_rte -pglib_opf_case1951_rte,1951-NA,scip,9.2.0,2024.0,ok,optimal,470.3723859680031,276.136,2031627.9150498372,0.0,5.73014974664225e-14,470.27647,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 00:41:16.990797,c4-standard-2,europe-west3-c,48cfc10,pglib_opf_case1951_rte-1951-NA,scip-9.2.0,pglib_opf_case1951_rte -pglib_opf_case1951_rte,1951-NA,cbc,2.10.12,2024.0,TO,Timeout,3600.0,143.512,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 00:49:08.013441,c4-standard-2,europe-west3-c,48cfc10,pglib_opf_case1951_rte-1951-NA,cbc-2.10.12,pglib_opf_case1951_rte -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29,73-1h,gurobi,12.0.0,2024.0,ok,optimal,64.55413207798847,247.304,1044605.3587212232,0.0,6.22874608407821e-05,64.32757592201233,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 01:52:46.696570,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29,73-1h,highs,1.9.0,2024.0,ok,optimal,427.1747785930056,425.288,1044605.358743233,9.947598300641405e-14,9.654725370690312e-05,426.9976861476898,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 01:53:51.978519,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29,73-1h,scip,9.2.0,2024.0,ok,optimal,826.322075819,1048.192,1044605.3587433776,9.132475413028488e-12,6.947296819797764e-05,826.175312,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 02:00:59.856138,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29,73-1h,cbc,2.10.12,2024.0,ok,optimal,609.0886120840005,235.092,1044605.35874268,0.0,,608.8,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 02:14:46.959357,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29 -times-etimeseu-europe-elec+heat-single_stage,29-64ts,gurobi,12.0.0,2024.0,ok,optimal,10.817711415002124,880.128,430451.36492800846,,,8.033715963363647,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 02:24:56.724295,c4-standard-2,europe-west3-c,48cfc10,times-etimeseu-europe-elec+heat-single_stage-29-64ts,gurobi-12.0.0,times-etimeseu-europe-elec+heat-single_stage -times-etimeseu-europe-elec+heat-single_stage,29-64ts,highs,1.9.0,2024.0,ok,optimal,153.70197538299544,990.7,430451.3649280085,,,150.30839109420776,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 02:25:12.302606,c4-standard-2,europe-west3-c,48cfc10,times-etimeseu-europe-elec+heat-single_stage-29-64ts,highs-1.9.0,times-etimeseu-europe-elec+heat-single_stage -times-etimeseu-europe-elec+heat-single_stage,29-64ts,scip,9.2.0,2024.0,ok,optimal,353.1771179669886,3064.744,430451.36492800846,,,350.060731,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 02:27:50.929087,c4-standard-2,europe-west3-c,48cfc10,times-etimeseu-europe-elec+heat-single_stage-29-64ts,scip-9.2.0,times-etimeseu-europe-elec+heat-single_stage -times-etimeseu-europe-elec+heat-single_stage,29-64ts,cbc,2.10.12,2024.0,ER,,,287.584,,,,,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 02:33:49.849861,c4-standard-2,europe-west3-c,48cfc10,times-etimeseu-europe-elec+heat-single_stage-29-64ts,cbc-2.10.12,times-etimeseu-europe-elec+heat-single_stage -pypsa-power+ely+battery,1-1h,gurobi,12.0.0,2024.0,ok,optimal,17.030032908005523,513.716,31714138111.86075,,,16.014941930770874,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 02:33:50.455951,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely+battery-1-1h,gurobi-12.0.0,pypsa-power+ely+battery -pypsa-power+ely+battery,1-1h,highs,1.9.0,2024.0,ok,optimal,28.144725600999664,658.92,31714138111.86105,,,27.00066351890564,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 02:34:09.190570,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely+battery-1-1h,highs-1.9.0,pypsa-power+ely+battery -pypsa-power+ely+battery,1-1h,scip,9.2.0,2024.0,ok,optimal,161.4971814150049,1103.956,31714138111.860943,,,160.77338,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 02:34:39.036623,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely+battery-1-1h,scip-9.2.0,pypsa-power+ely+battery -pypsa-power+ely+battery,1-1h,cbc,2.10.12,2024.0,ok,optimal,39.14733581600012,382.724,31714138111.860737,,,,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 02:37:22.454189,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely+battery-1-1h,cbc-2.10.12,pypsa-power+ely+battery -pypsa-power+ely,1-1h,gurobi,12.0.0,2024.0,ok,optimal,4.441572316005477,402.128,31714138111.860744,,,3.8278541564941406,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 02:38:03.287776,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely-1-1h,gurobi-12.0.0,pypsa-power+ely -pypsa-power+ely,1-1h,highs,1.9.0,2024.0,ok,optimal,4.972537870999076,462.836,31714138111.86105,,,4.173490762710571,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 02:38:09.072166,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely-1-1h,highs-1.9.0,pypsa-power+ely -pypsa-power+ely,1-1h,scip,9.2.0,2024.0,ok,optimal,86.51520516400342,814.392,31714138111.860943,,,86.006986,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 02:38:15.381161,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely-1-1h,scip-9.2.0,pypsa-power+ely -pypsa-power+ely,1-1h,cbc,2.10.12,2024.0,ok,optimal,7.051800139000989,323.22,31714138111.860737,,,,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 02:39:43.407185,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely-1-1h,cbc-2.10.12,pypsa-power+ely -genx-3_three_zones_w_co2_capture,3-1h,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,3503.328,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 02:40:27.622217,c4-standard-2,europe-west3-c,48cfc10,genx-3_three_zones_w_co2_capture-3-1h,gurobi-13.0.0,genx-3_three_zones_w_co2_capture -genx-3_three_zones_w_co2_capture,3-1h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1771.568,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 03:44:07.183991,c4-standard-2,europe-west3-c,48cfc10,genx-3_three_zones_w_co2_capture-3-1h,highs-1.12.0,genx-3_three_zones_w_co2_capture -genx-3_three_zones_w_co2_capture,3-1h,scip,10.0.0,2025.0,TO,Timeout,3600.0,1999.796,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 04:47:42.948016,c4-standard-2,europe-west3-c,48cfc10,genx-3_three_zones_w_co2_capture-3-1h,scip-10.0.0,genx-3_three_zones_w_co2_capture -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29,73-1h,gurobi,13.0.0,2025.0,ok,optimal,897.6514113220037,448.268,1768633.657004689,0.0,9.964709509416456e-05,897.3510000705719,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 05:51:21.528507,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29,73-1h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1385.688,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 06:06:20.141683,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29,73-1h,scip,10.0.0,2025.0,TO,Timeout,3600.0,1913.792,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 07:09:56.085918,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29 -SWITCH-3-zone-toy,3-6ts,gurobi,13.0.0,2025.0,ok,optimal,0.1605400330154225,181.944,134733088.4292911,0.0,0.0,0.0043580532073974,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 08:13:32.219260,c4-standard-2,europe-west3-c,48cfc10,SWITCH-3-zone-toy-3-6ts,gurobi-13.0.0,SWITCH-3-zone-toy -SWITCH-3-zone-toy,3-6ts,highs,1.12.0,2025.0,ok,optimal,0.0128482549916952,169.736,134733088.4292911,0.0,0.0,0.0064191818237304,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 08:13:33.142757,c4-standard-2,europe-west3-c,48cfc10,SWITCH-3-zone-toy-3-6ts,highs-1.12.0,SWITCH-3-zone-toy -SWITCH-3-zone-toy,3-6ts,scip,10.0.0,2025.0,ok,optimal,0.0181966500240378,183.048,134733088.42929113,0.0,0.0,0.009616,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 08:13:33.897859,c4-standard-2,europe-west3-c,48cfc10,SWITCH-3-zone-toy-3-6ts,scip-10.0.0,SWITCH-3-zone-toy -pglib_opf_case1951_rte,1951-NA,gurobi,13.0.0,2025.0,ok,optimal,2.4483423130004667,213.516,2031627.915051015,0.0,0.0,2.392904996871948,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 08:13:34.654811,c4-standard-2,europe-west3-c,48cfc10,pglib_opf_case1951_rte-1951-NA,gurobi-13.0.0,pglib_opf_case1951_rte -pglib_opf_case1951_rte,1951-NA,highs,1.12.0,2025.0,TO,Timeout,3600.0,664.136,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 08:13:37.929025,c4-standard-2,europe-west3-c,48cfc10,pglib_opf_case1951_rte-1951-NA,highs-1.12.0,pglib_opf_case1951_rte -pglib_opf_case1951_rte,1951-NA,scip,10.0.0,2025.0,ok,optimal,462.7064499640255,303.028,2031627.9150498372,0.0,5.73014974664225e-14,462.607451,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 09:17:13.444271,c4-standard-2,europe-west3-c,48cfc10,pglib_opf_case1951_rte-1951-NA,scip-10.0.0,pglib_opf_case1951_rte -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29,73-1h,gurobi,13.0.0,2025.0,ok,optimal,46.578936956997495,275.588,1044605.3587121938,0.0,5.379661385545562e-05,46.34453511238098,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 09:24:56.997454,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29,73-1h,highs,1.12.0,2025.0,ok,optimal,447.5005121330032,571.528,1044605.35874562,1.551255544213918e-12,8.319005239658998e-05,447.3906185626984,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 09:25:44.439710,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29,73-1h,scip,10.0.0,2025.0,ok,optimal,823.3618708489812,1085.188,1044605.3587433776,9.132475413028488e-12,6.947296819797764e-05,823.213742,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 09:33:12.798995,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29 -times-etimeseu-europe-elec+heat-single_stage,29-64ts,gurobi,13.0.0,2025.0,ok,optimal,9.593139803997474,923.808,430451.3649280086,,,6.942401885986328,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 09:46:57.103155,c4-standard-2,europe-west3-c,48cfc10,times-etimeseu-europe-elec+heat-single_stage-29-64ts,gurobi-13.0.0,times-etimeseu-europe-elec+heat-single_stage -times-etimeseu-europe-elec+heat-single_stage,29-64ts,highs-hipo,1.12.0-hipo,2025.0,warning,Unknown,43.07550895499298,514.256,430451.36493,,,43.07550895499298,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 09:47:09.404641,c4-standard-2,europe-west3-c,48cfc10,times-etimeseu-europe-elec+heat-single_stage-29-64ts,highs-hipo-1.12.0-hipo,times-etimeseu-europe-elec+heat-single_stage -times-etimeseu-europe-elec+heat-single_stage,29-64ts,highs-ipx,1.12.0-hipo,2025.0,warning,Unknown,28.93037108500721,493.18,430451.36493,,,28.93037108500721,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 09:47:53.229721,c4-standard-2,europe-west3-c,48cfc10,times-etimeseu-europe-elec+heat-single_stage-29-64ts,highs-ipx-1.12.0-hipo,times-etimeseu-europe-elec+heat-single_stage -times-etimeseu-europe-elec+heat-single_stage,29-64ts,highs,1.12.0,2025.0,ok,optimal,184.86925376800357,1021.52,430451.36492800846,,,182.3879792690277,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 09:48:22.917538,c4-standard-2,europe-west3-c,48cfc10,times-etimeseu-europe-elec+heat-single_stage-29-64ts,highs-1.12.0,times-etimeseu-europe-elec+heat-single_stage -times-etimeseu-europe-elec+heat-single_stage,29-64ts,scip,10.0.0,2025.0,ok,optimal,353.0876431250072,3089.76,430451.36492800846,,,349.725159,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 09:51:30.390416,c4-standard-2,europe-west3-c,48cfc10,times-etimeseu-europe-elec+heat-single_stage-29-64ts,scip-10.0.0,times-etimeseu-europe-elec+heat-single_stage -pypsa-power+ely+battery,1-1h,gurobi,13.0.0,2025.0,ok,optimal,17.17853591000312,537.384,31714138111.86075,,,16.083613872528076,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 09:57:27.227839,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely+battery-1-1h,gurobi-13.0.0,pypsa-power+ely+battery -pypsa-power+ely+battery,1-1h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,58.52070639998419,347.452,31714138112.0,,,58.52070639998419,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 09:57:45.918375,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely+battery-1-1h,highs-hipo-1.12.0-hipo,pypsa-power+ely+battery -pypsa-power+ely+battery,1-1h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,104.95368107399554,198.012,31714138112.0,,,104.95368107399554,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 09:58:45.183284,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely+battery-1-1h,highs-ipx-1.12.0-hipo,pypsa-power+ely+battery -pypsa-power+ely+battery,1-1h,highs,1.12.0,2025.0,ok,optimal,27.748052024981007,680.244,31714138111.86075,,,26.80495977401733,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 10:00:30.882456,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely+battery-1-1h,highs-1.12.0,pypsa-power+ely+battery -pypsa-power+ely+battery,1-1h,scip,10.0.0,2025.0,ok,optimal,161.18327874600072,1124.44,31714138111.860943,,,160.436214,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 10:01:00.103994,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely+battery-1-1h,scip-10.0.0,pypsa-power+ely+battery -pypsa-power+ely,1-1h,gurobi,13.0.0,2025.0,ok,optimal,4.534502000984503,430.98,31714138111.860744,,,3.810588121414185,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 10:03:43.020834,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely-1-1h,gurobi-13.0.0,pypsa-power+ely -pypsa-power+ely,1-1h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,25.743127801019,248.552,31714138112.0,,,25.743127801019,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 10:03:48.823859,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely-1-1h,highs-hipo-1.12.0-hipo,pypsa-power+ely -pypsa-power+ely,1-1h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,18.327995233004916,164.708,31714138112.0,,,18.327995233004916,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 10:04:15.318260,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely-1-1h,highs-ipx-1.12.0-hipo,pypsa-power+ely -pypsa-power+ely,1-1h,highs,1.12.0,2025.0,ok,optimal,4.750725718011381,485.412,31714138111.86075,,,4.092874765396118,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 10:04:34.397986,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely-1-1h,highs-1.12.0,pypsa-power+ely -pypsa-power+ely,1-1h,scip,10.0.0,2025.0,ok,optimal,86.36738786898786,843.848,31714138111.860943,,,85.828783,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 10:04:40.395845,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely-1-1h,scip-10.0.0,pypsa-power+ely -pglib_opf_case1803_snem,1803-NA,glpk,5.0,2020.0,TO,Timeout,3600.0,130.152,,,,3600.0,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-15 17:30:38.485497,c4-standard-2,europe-west2-a,48cfc10,pglib_opf_case1803_snem-1803-NA,glpk-5.0,pglib_opf_case1803_snem -times-ireland-noco2,1-1ts,glpk,5.0,2020.0,warning,unknown,0.1249551970004176,304.832,,,,,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-15 18:34:12.205728,c4-standard-2,europe-west2-a,48cfc10,times-ireland-noco2-1-1ts,glpk-5.0,times-ireland-noco2 -OEMOF-v2-invest-optimize-only-gas-and-storage,1-8760ts,glpk,5.0,2020.0,ER,,,149.696,,,,,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-15 18:34:12.823347,c4-standard-2,europe-west2-a,48cfc10,OEMOF-v2-invest-optimize-only-gas-and-storage-1-8760ts,glpk-5.0,OEMOF-v2-invest-optimize-only-gas-and-storage -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,133.784,,,,3600.0,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-15 18:34:16.274015,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314 -genx-4_three_zones_w_policies_slack-no_uc,3-1h,glpk,5.0,2020.0,ok,optimal,1334.5654262240005,273.276,21182.24822,,,,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-15 19:37:48.458903,c4-standard-2,europe-west2-a,48cfc10,genx-4_three_zones_w_policies_slack-no_uc-3-1h,glpk-5.0,genx-4_three_zones_w_policies_slack-no_uc -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332,73-1h,glpk,5.0,2020.0,ok,unknown,3359.225639799999,438.48,238867.4773,,,,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-15 20:00:03.520866,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332 -pglib_opf_case1803_snem,1803-NA,gurobi,10.0.0,2022.0,TO,Timeout,3600.0,1230.376,,,,3600.0,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-15 21:00:19.538119,c4-standard-2,europe-west2-a,48cfc10,pglib_opf_case1803_snem-1803-NA,gurobi-10.0.0,pglib_opf_case1803_snem -pglib_opf_case1803_snem,1803-NA,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,846.76,,,,3600.0,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-15 22:03:53.519491,c4-standard-2,europe-west2-a,48cfc10,pglib_opf_case1803_snem-1803-NA,highs-1.5.0.dev0,pglib_opf_case1803_snem -pglib_opf_case1803_snem,1803-NA,scip,8.0.3,2022.0,TO,Timeout,3600.0,2031.516,,,,3600.0,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-15 23:07:27.410118,c4-standard-2,europe-west2-a,48cfc10,pglib_opf_case1803_snem-1803-NA,scip-8.0.3,pglib_opf_case1803_snem -times-ireland-noco2,1-1ts,gurobi,10.0.0,2022.0,ok,optimal,664.3354869450013,1073.168,437542.76772149926,,,660.7416439056396,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 00:11:06.923496,c4-standard-2,europe-west2-a,48cfc10,times-ireland-noco2-1-1ts,gurobi-10.0.0,times-ireland-noco2 -times-ireland-noco2,1-1ts,highs,1.5.0.dev0,2022.0,ok,optimal,3501.795419326001,1286.344,437542.7677193059,,,3498.174464941025,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 00:22:14.934431,c4-standard-2,europe-west2-a,48cfc10,times-ireland-noco2-1-1ts,highs-1.5.0.dev0,times-ireland-noco2 -times-ireland-noco2,1-1ts,scip,8.0.3,2022.0,TO,Timeout,3600.0,3993.476,,,,3600.0,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 01:24:19.946102,c4-standard-2,europe-west2-a,48cfc10,times-ireland-noco2-1-1ts,scip-8.0.3,times-ireland-noco2 -OEMOF-v2-invest-optimize-only-gas-and-storage,1-8760ts,gurobi,10.0.0,2022.0,ok,optimal,0.9805449670020608,345.24,34853801.711324126,,,0.1685540676116943,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 02:27:56.036364,c4-standard-2,europe-west2-a,48cfc10,OEMOF-v2-invest-optimize-only-gas-and-storage-1-8760ts,gurobi-10.0.0,OEMOF-v2-invest-optimize-only-gas-and-storage -OEMOF-v2-invest-optimize-only-gas-and-storage,1-8760ts,highs,1.5.0.dev0,2022.0,ok,optimal,0.8028727559976687,346.004,34853801.711324126,,,0.2528893947601318,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 02:27:58.194391,c4-standard-2,europe-west2-a,48cfc10,OEMOF-v2-invest-optimize-only-gas-and-storage-1-8760ts,highs-1.5.0.dev0,OEMOF-v2-invest-optimize-only-gas-and-storage -OEMOF-v2-invest-optimize-only-gas-and-storage,1-8760ts,scip,8.0.3,2022.0,ok,optimal,1.597592813999654,641.144,34853801.71132404,,,1.098653,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 02:28:00.078133,c4-standard-2,europe-west2-a,48cfc10,OEMOF-v2-invest-optimize-only-gas-and-storage-1-8760ts,scip-8.0.3,OEMOF-v2-invest-optimize-only-gas-and-storage -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314,73-1h,gurobi,10.0.0,2022.0,ok,optimal,94.73114671800067,280.4,901032.5825652044,,,94.62047696113586,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 02:28:02.867331,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314,73-1h,highs,1.5.0.dev0,2022.0,ok,optimal,755.3017855129983,512.252,901032.582563227,,,755.1476819515228,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 02:29:38.365642,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314,73-1h,scip,8.0.3,2022.0,ok,optimal,1950.742227169001,1240.024,901032.5825639544,,,1950.580969,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 02:42:14.398689,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314 -genx-4_three_zones_w_policies_slack-no_uc,3-1h,gurobi,10.0.0,2022.0,ok,optimal,540.4886492850055,490.556,21182.2482196961,,,539.2319889068604,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 03:14:45.963761,c4-standard-2,europe-west2-a,48cfc10,genx-4_three_zones_w_policies_slack-no_uc-3-1h,gurobi-10.0.0,genx-4_three_zones_w_policies_slack-no_uc -genx-4_three_zones_w_policies_slack-no_uc,3-1h,highs,1.5.0.dev0,2022.0,ok,optimal,778.5874129769945,606.732,21182.24821793586,,,777.4830162525177,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 03:23:48.179902,c4-standard-2,europe-west2-a,48cfc10,genx-4_three_zones_w_policies_slack-no_uc-3-1h,highs-1.5.0.dev0,genx-4_three_zones_w_policies_slack-no_uc -genx-4_three_zones_w_policies_slack-no_uc,3-1h,scip,8.0.3,2022.0,ok,optimal,979.7811312539998,1252.5,21182.24821804184,,,978.851818,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 03:40:20.912737,c4-standard-2,europe-west2-a,48cfc10,genx-4_three_zones_w_policies_slack-no_uc-3-1h,scip-8.0.3,genx-4_three_zones_w_policies_slack-no_uc -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332,73-1h,gurobi,10.0.0,2022.0,ok,optimal,2.3859765300003346,204.012,238867.47730951896,,,2.133095979690552,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 03:56:42.438615,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332,73-1h,highs,1.5.0.dev0,2022.0,ok,optimal,16.272081506001996,274.068,238867.47730937696,,,16.09477686882019,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 03:56:45.587026,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332,73-1h,scip,8.0.3,2022.0,ok,optimal,36.335159757996735,440.004,238867.47730951925,,,36.211471,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 03:57:02.634371,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332 -pglib_opf_case1803_snem,1803-NA,gurobi,11.0.0,2023.0,TO,Timeout,3600.0,467.372,,,,3600.0,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 04:01:06.248868,c4-standard-2,europe-west2-a,48cfc10,pglib_opf_case1803_snem-1803-NA,gurobi-11.0.0,pglib_opf_case1803_snem -pglib_opf_case1803_snem,1803-NA,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,880.328,,,,3600.0,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 05:04:38.468488,c4-standard-2,europe-west2-a,48cfc10,pglib_opf_case1803_snem-1803-NA,highs-1.6.0.dev0,pglib_opf_case1803_snem -pglib_opf_case1803_snem,1803-NA,scip,8.1.0,2023.0,TO,Timeout,3600.0,2042.576,,,,3600.0,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 06:08:12.287489,c4-standard-2,europe-west2-a,48cfc10,pglib_opf_case1803_snem-1803-NA,scip-8.1.0,pglib_opf_case1803_snem -pglib_opf_case1803_snem,1803-NA,cbc,2.10.11,2023.0,TO,Timeout,3600.0,161.476,,,,3600.0,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 07:11:46.945770,c4-standard-2,europe-west2-a,48cfc10,pglib_opf_case1803_snem-1803-NA,cbc-2.10.11,pglib_opf_case1803_snem -times-ireland-noco2,1-1ts,gurobi,11.0.0,2023.0,ok,optimal,1936.2083773819977,1059.888,437542.7677205702,,,1933.3438000679016,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 08:15:29.369016,c4-standard-2,europe-west2-a,48cfc10,times-ireland-noco2-1-1ts,gurobi-11.0.0,times-ireland-noco2 -times-ireland-noco2,1-1ts,highs,1.6.0.dev0,2023.0,ok,optimal,3512.6449050429947,1247.172,437542.7677193059,,,3510.1435515880585,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 08:47:48.055944,c4-standard-2,europe-west2-a,48cfc10,times-ireland-noco2-1-1ts,highs-1.6.0.dev0,times-ireland-noco2 -times-ireland-noco2,1-1ts,scip,8.1.0,2023.0,TO,Timeout,3600.0,4005.12,,,,3600.0,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 09:50:12.276983,c4-standard-2,europe-west2-a,48cfc10,times-ireland-noco2-1-1ts,scip-8.1.0,times-ireland-noco2 -times-ireland-noco2,1-1ts,cbc,2.10.11,2023.0,ER,,,336.144,,,,,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 10:54:08.463730,c4-standard-2,europe-west2-a,48cfc10,times-ireland-noco2-1-1ts,cbc-2.10.11,times-ireland-noco2 -OEMOF-v2-invest-optimize-only-gas-and-storage,1-8760ts,gurobi,11.0.0,2023.0,ok,optimal,0.8849032250000164,357.196,34853801.711324126,,,0.1915159225463867,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 10:54:09.495177,c4-standard-2,europe-west2-a,48cfc10,OEMOF-v2-invest-optimize-only-gas-and-storage-1-8760ts,gurobi-11.0.0,OEMOF-v2-invest-optimize-only-gas-and-storage -OEMOF-v2-invest-optimize-only-gas-and-storage,1-8760ts,highs,1.6.0.dev0,2023.0,ok,optimal,0.8738204000037513,364.888,34853801.711324126,,,0.2978863716125488,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 10:54:11.568910,c4-standard-2,europe-west2-a,48cfc10,OEMOF-v2-invest-optimize-only-gas-and-storage-1-8760ts,highs-1.6.0.dev0,OEMOF-v2-invest-optimize-only-gas-and-storage -OEMOF-v2-invest-optimize-only-gas-and-storage,1-8760ts,scip,8.1.0,2023.0,ok,optimal,1.6049453989980975,657.5,34853801.71132404,,,1.160203,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 10:54:13.750935,c4-standard-2,europe-west2-a,48cfc10,OEMOF-v2-invest-optimize-only-gas-and-storage-1-8760ts,scip-8.1.0,OEMOF-v2-invest-optimize-only-gas-and-storage -OEMOF-v2-invest-optimize-only-gas-and-storage,1-8760ts,cbc,2.10.11,2023.0,ok,optimal,0.9369562540014158,256.768,34853801.71132413,,,,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 10:54:16.730113,c4-standard-2,europe-west2-a,48cfc10,OEMOF-v2-invest-optimize-only-gas-and-storage-1-8760ts,cbc-2.10.11,OEMOF-v2-invest-optimize-only-gas-and-storage -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314,73-1h,gurobi,11.0.0,2023.0,ok,optimal,119.84146092300216,294.156,901032.58211796,,,119.75020694732666,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 10:54:18.862603,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314,73-1h,highs,1.6.0.dev0,2023.0,ok,optimal,755.7748742780022,536.116,901032.582563227,,,755.6754925251007,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 10:56:19.540793,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314,73-1h,scip,8.1.0,2023.0,ok,optimal,2052.2013481050017,1251.512,901032.5825639544,,,2052.053348,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 11:08:56.137591,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314,73-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,165.312,,,,3600.0,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 11:43:09.275611,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314 -genx-4_three_zones_w_policies_slack-no_uc,3-1h,gurobi,11.0.0,2023.0,ok,optimal,501.153962027005,487.968,21182.24821932456,,,500.0793550014496,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 12:46:53.563300,c4-standard-2,europe-west2-a,48cfc10,genx-4_three_zones_w_policies_slack-no_uc-3-1h,gurobi-11.0.0,genx-4_three_zones_w_policies_slack-no_uc -genx-4_three_zones_w_policies_slack-no_uc,3-1h,highs,1.6.0.dev0,2023.0,ok,optimal,798.6600880210026,604.408,21182.24821793586,,,797.6840155124664,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 12:55:16.268345,c4-standard-2,europe-west2-a,48cfc10,genx-4_three_zones_w_policies_slack-no_uc-3-1h,highs-1.6.0.dev0,genx-4_three_zones_w_policies_slack-no_uc -genx-4_three_zones_w_policies_slack-no_uc,3-1h,scip,8.1.0,2023.0,ok,optimal,1008.8354965499892,1256.26,21182.24821804184,,,1007.998302,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 13:08:36.422166,c4-standard-2,europe-west2-a,48cfc10,genx-4_three_zones_w_policies_slack-no_uc-3-1h,scip-8.1.0,genx-4_three_zones_w_policies_slack-no_uc -genx-4_three_zones_w_policies_slack-no_uc,3-1h,cbc,2.10.11,2023.0,ok,optimal,694.1311292230093,332.352,21182.2482181,,,,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 13:25:27.097127,c4-standard-2,europe-west2-a,48cfc10,genx-4_three_zones_w_policies_slack-no_uc-3-1h,cbc-2.10.11,genx-4_three_zones_w_policies_slack-no_uc -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332,73-1h,gurobi,11.0.0,2023.0,ok,optimal,3.388925949009717,217.896,238867.47730951916,,,3.165389060974121,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 13:37:02.758317,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332,73-1h,highs,1.6.0.dev0,2023.0,ok,optimal,16.362343130997033,288.836,238867.47730937696,,,16.246681451797485,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 13:37:07.020195,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332,73-1h,scip,8.1.0,2023.0,ok,optimal,37.40157273900695,449.78,238867.47730951925,,,37.296638,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 13:37:24.246028,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332,73-1h,cbc,2.10.11,2023.0,ok,optimal,156.80453103600303,171.104,238867.47730952,,,156.7,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 13:38:02.553081,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332 -pglib_opf_case1803_snem,1803-NA,gurobi,12.0.0,2024.0,TO,Timeout,3600.0,882.52,,,,3600.0,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 13:41:15.306428,c4-standard-2,europe-west2-a,48cfc10,pglib_opf_case1803_snem-1803-NA,gurobi-12.0.0,pglib_opf_case1803_snem -pglib_opf_case1803_snem,1803-NA,highs,1.9.0,2024.0,TO,Timeout,3600.0,955.964,,,,3600.0,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 14:45:00.561297,c4-standard-2,europe-west2-a,48cfc10,pglib_opf_case1803_snem-1803-NA,highs-1.9.0,pglib_opf_case1803_snem -pglib_opf_case1803_snem,1803-NA,scip,9.2.0,2024.0,TO,Timeout,3600.0,1993.728,,,,3600.0,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 15:48:50.617585,c4-standard-2,europe-west2-a,48cfc10,pglib_opf_case1803_snem-1803-NA,scip-9.2.0,pglib_opf_case1803_snem -pglib_opf_case1803_snem,1803-NA,cbc,2.10.12,2024.0,TO,Timeout,3600.0,144.004,,,,3600.0,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 16:52:36.596217,c4-standard-2,europe-west2-a,48cfc10,pglib_opf_case1803_snem-1803-NA,cbc-2.10.12,pglib_opf_case1803_snem -times-ireland-noco2,1-1ts,gurobi,12.0.0,2024.0,ok,optimal,760.3959154990007,1107.832,437542.7677208471,,,757.5298619270325,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 17:56:18.687751,c4-standard-2,europe-west2-a,48cfc10,times-ireland-noco2-1-1ts,gurobi-12.0.0,times-ireland-noco2 -times-ireland-noco2,1-1ts,highs,1.9.0,2024.0,ok,optimal,3538.6565805240098,1264.196,437542.7677193059,,,3534.601442337036,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 18:09:04.814194,c4-standard-2,europe-west2-a,48cfc10,times-ireland-noco2-1-1ts,highs-1.9.0,times-ireland-noco2 -times-ireland-noco2,1-1ts,scip,9.2.0,2024.0,TO,Timeout,3600.0,4006.184,,,,3600.0,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 19:11:52.306773,c4-standard-2,europe-west2-a,48cfc10,times-ireland-noco2-1-1ts,scip-9.2.0,times-ireland-noco2 -times-ireland-noco2,1-1ts,cbc,2.10.12,2024.0,ER,,,318.952,,,,,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 20:15:34.610079,c4-standard-2,europe-west2-a,48cfc10,times-ireland-noco2-1-1ts,cbc-2.10.12,times-ireland-noco2 -OEMOF-v2-invest-optimize-only-gas-and-storage,1-8760ts,gurobi,12.0.0,2024.0,ok,optimal,0.9355939090019092,331.552,34853801.711324126,,,0.203477144241333,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 20:15:35.414983,c4-standard-2,europe-west2-a,48cfc10,OEMOF-v2-invest-optimize-only-gas-and-storage-1-8760ts,gurobi-12.0.0,OEMOF-v2-invest-optimize-only-gas-and-storage -OEMOF-v2-invest-optimize-only-gas-and-storage,1-8760ts,highs,1.9.0,2024.0,ok,optimal,0.8953460420016199,338.244,34853801.711324126,,,0.2897751331329345,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 20:15:37.592551,c4-standard-2,europe-west2-a,48cfc10,OEMOF-v2-invest-optimize-only-gas-and-storage-1-8760ts,highs-1.9.0,OEMOF-v2-invest-optimize-only-gas-and-storage -OEMOF-v2-invest-optimize-only-gas-and-storage,1-8760ts,scip,9.2.0,2024.0,ok,optimal,1.573601451003924,630.872,34853801.71132404,,,1.136133,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 20:15:39.742779,c4-standard-2,europe-west2-a,48cfc10,OEMOF-v2-invest-optimize-only-gas-and-storage-1-8760ts,scip-9.2.0,OEMOF-v2-invest-optimize-only-gas-and-storage -OEMOF-v2-invest-optimize-only-gas-and-storage,1-8760ts,cbc,2.10.12,2024.0,ok,optimal,1.452296920993831,275.156,34853801.71132413,,,,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 20:15:42.677974,c4-standard-2,europe-west2-a,48cfc10,OEMOF-v2-invest-optimize-only-gas-and-storage-1-8760ts,cbc-2.10.12,OEMOF-v2-invest-optimize-only-gas-and-storage -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314,73-1h,gurobi,12.0.0,2024.0,ok,optimal,51.50090348201047,241.924,901032.5825495484,0.0,8.571939230915391e-05,51.403045892715454,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 20:15:45.363356,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314,73-1h,highs,1.9.0,2024.0,ok,optimal,853.4084408740018,641.568,901032.5825632666,1.715799219875242e-13,9.837799690833862e-05,853.2339706420898,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 20:16:37.583394,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314,73-1h,scip,9.2.0,2024.0,ok,optimal,2021.8263153209991,1237.244,901032.5825639544,1.2332840423201111e-16,0.0,2021.675191,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 20:30:51.696113,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314,73-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,147.892,,,,3600.0,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 21:04:34.305188,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314 -genx-4_three_zones_w_policies_slack-no_uc,3-1h,gurobi,12.0.0,2024.0,ok,optimal,526.0967801769875,476.044,21182.24822418104,,,525.072478055954,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 22:08:17.577883,c4-standard-2,europe-west2-a,48cfc10,genx-4_three_zones_w_policies_slack-no_uc-3-1h,gurobi-12.0.0,genx-4_three_zones_w_policies_slack-no_uc -genx-4_three_zones_w_policies_slack-no_uc,3-1h,highs,1.9.0,2024.0,ok,optimal,1013.8421061440022,569.852,21182.248217935965,,,1012.6122019290924,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 22:17:05.640693,c4-standard-2,europe-west2-a,48cfc10,genx-4_three_zones_w_policies_slack-no_uc-3-1h,highs-1.9.0,genx-4_three_zones_w_policies_slack-no_uc -genx-4_three_zones_w_policies_slack-no_uc,3-1h,scip,9.2.0,2024.0,ok,optimal,998.5500708050096,1241.328,21182.24821804184,,,997.708622,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 22:34:01.531826,c4-standard-2,europe-west2-a,48cfc10,genx-4_three_zones_w_policies_slack-no_uc-3-1h,scip-9.2.0,genx-4_three_zones_w_policies_slack-no_uc -genx-4_three_zones_w_policies_slack-no_uc,3-1h,cbc,2.10.12,2024.0,ok,optimal,689.5917238900001,375.812,21182.2482181,,,,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 22:50:42.303455,c4-standard-2,europe-west2-a,48cfc10,genx-4_three_zones_w_policies_slack-no_uc-3-1h,cbc-2.10.12,genx-4_three_zones_w_policies_slack-no_uc -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332,73-1h,gurobi,12.0.0,2024.0,ok,optimal,3.394282316003228,195.592,238867.47730951916,0.0,0.0,3.184986114501953,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 23:02:13.880217,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332,73-1h,highs,1.9.0,2024.0,ok,optimal,33.191203798007336,269.948,238867.47730947056,1.2212453270876722e-13,0.0,32.991087675094604,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 23:02:17.995556,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332,73-1h,scip,9.2.0,2024.0,ok,optimal,36.895316562993685,436.196,238867.47730951925,1.9984014443252818e-15,0.0,36.790735,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 23:02:51.890913,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332,73-1h,cbc,2.10.12,2024.0,ok,optimal,155.0512028640078,156.908,238867.47730952,0.0,,154.76,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 23:03:29.550366,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332 -pglib_opf_case1803_snem,1803-NA,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,630.76,,,,3600.0,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 23:10:18.957472,c4-standard-2,europe-west2-a,48cfc10,pglib_opf_case1803_snem-1803-NA,gurobi-13.0.0,pglib_opf_case1803_snem -pglib_opf_case1803_snem,1803-NA,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,3600.0,164.136,,,,3600.0,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-17 00:13:56.918430,c4-standard-2,europe-west2-a,48cfc10,pglib_opf_case1803_snem-1803-NA,highs-hipo-1.12.0-hipo,pglib_opf_case1803_snem -pglib_opf_case1803_snem,1803-NA,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,3600.0,164.236,,,,3600.0,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-17 01:17:38.484890,c4-standard-2,europe-west2-a,48cfc10,pglib_opf_case1803_snem-1803-NA,highs-ipx-1.12.0-hipo,pglib_opf_case1803_snem -pglib_opf_case1803_snem,1803-NA,highs,1.12.0,2025.0,TO,Timeout,3600.0,643.476,,,,3600.0,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-17 02:21:13.652116,c4-standard-2,europe-west2-a,48cfc10,pglib_opf_case1803_snem-1803-NA,highs-1.12.0,pglib_opf_case1803_snem -pglib_opf_case1803_snem,1803-NA,scip,10.0.0,2025.0,TO,Timeout,3600.0,2049.392,,,,3600.0,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-17 03:24:49.160190,c4-standard-2,europe-west2-a,48cfc10,pglib_opf_case1803_snem-1803-NA,scip-10.0.0,pglib_opf_case1803_snem -times-ireland-noco2,1-1ts,gurobi,13.0.0,2025.0,ok,optimal,630.2318835819897,1073.976,437542.7677214298,,,627.4407200813293,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-17 04:28:24.880964,c4-standard-2,europe-west2-a,48cfc10,times-ireland-noco2-1-1ts,gurobi-13.0.0,times-ireland-noco2 -times-ireland-noco2,1-1ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,310.2426616559969,1234.372,437542.76779,,,310.2426616559969,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-17 04:38:58.188955,c4-standard-2,europe-west2-a,48cfc10,times-ireland-noco2-1-1ts,highs-hipo-1.12.0-hipo,times-ireland-noco2 -times-ireland-noco2,1-1ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,325.8606064409978,651.196,437542.76967,,,325.8606064409978,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-17 04:44:09.178789,c4-standard-2,europe-west2-a,48cfc10,times-ireland-noco2-1-1ts,highs-ipx-1.12.0-hipo,times-ireland-noco2 -times-ireland-noco2,1-1ts,highs,1.12.0,2025.0,TO,Timeout,3600.0,873.56,,,,3600.0,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-17 04:49:35.789023,c4-standard-2,europe-west2-a,48cfc10,times-ireland-noco2-1-1ts,highs-1.12.0,times-ireland-noco2 -times-ireland-noco2,1-1ts,scip,10.0.0,2025.0,TO,Timeout,3600.0,4039.996,,,,3600.0,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-17 05:53:10.591391,c4-standard-2,europe-west2-a,48cfc10,times-ireland-noco2-1-1ts,scip-10.0.0,times-ireland-noco2 -OEMOF-v2-invest-optimize-only-gas-and-storage,1-8760ts,gurobi,13.0.0,2025.0,ok,optimal,0.917251364007825,368.164,34853801.711324126,,,0.2009201049804687,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-17 06:56:47.060107,c4-standard-2,europe-west2-a,48cfc10,OEMOF-v2-invest-optimize-only-gas-and-storage-1-8760ts,gurobi-13.0.0,OEMOF-v2-invest-optimize-only-gas-and-storage -OEMOF-v2-invest-optimize-only-gas-and-storage,1-8760ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,13.611033780995058,198.192,34853801.712,,,13.611033780995058,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-17 06:56:49.415676,c4-standard-2,europe-west2-a,48cfc10,OEMOF-v2-invest-optimize-only-gas-and-storage-1-8760ts,highs-hipo-1.12.0-hipo,OEMOF-v2-invest-optimize-only-gas-and-storage -OEMOF-v2-invest-optimize-only-gas-and-storage,1-8760ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,2.959619911009213,163.272,34853801.757,,,2.959619911009213,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-17 06:57:03.786036,c4-standard-2,europe-west2-a,48cfc10,OEMOF-v2-invest-optimize-only-gas-and-storage-1-8760ts,highs-ipx-1.12.0-hipo,OEMOF-v2-invest-optimize-only-gas-and-storage -OEMOF-v2-invest-optimize-only-gas-and-storage,1-8760ts,highs,1.12.0,2025.0,ok,optimal,0.9490983799914828,385.428,34853801.711324126,,,0.3699812889099121,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-17 06:57:07.519683,c4-standard-2,europe-west2-a,48cfc10,OEMOF-v2-invest-optimize-only-gas-and-storage-1-8760ts,highs-1.12.0,OEMOF-v2-invest-optimize-only-gas-and-storage -OEMOF-v2-invest-optimize-only-gas-and-storage,1-8760ts,scip,10.0.0,2025.0,ok,optimal,1.562576110009104,667.556,34853801.71132404,,,1.114724,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-17 06:57:09.764647,c4-standard-2,europe-west2-a,48cfc10,OEMOF-v2-invest-optimize-only-gas-and-storage-1-8760ts,scip-10.0.0,OEMOF-v2-invest-optimize-only-gas-and-storage -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314,73-1h,gurobi,13.0.0,2025.0,ok,optimal,45.14305824099574,264.696,901032.5825359996,0.0,7.662968117287792e-05,45.04965591430664,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-17 06:57:12.713996,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314,73-1h,highs,1.12.0,2025.0,ok,optimal,893.2196914950036,764.992,901032.5825642232,1.5543122344752194e-15,9.983964040583783e-05,893.1048655509949,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-17 06:57:58.744659,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314,73-1h,scip,10.0.0,2025.0,ok,optimal,2007.0365233280168,1267.46,901032.5825639544,1.2332840423201111e-16,0.0,2006.885524,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-17 07:12:52.826757,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314 -genx-4_three_zones_w_policies_slack-no_uc,3-1h,gurobi,13.0.0,2025.0,ok,optimal,576.470955894998,500.656,21182.248221536327,,,570.4696340560913,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-17 07:46:20.812764,c4-standard-2,europe-west2-a,48cfc10,genx-4_three_zones_w_policies_slack-no_uc-3-1h,gurobi-13.0.0,genx-4_three_zones_w_policies_slack-no_uc -genx-4_three_zones_w_policies_slack-no_uc,3-1h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,143.57951366098132,337.384,21182.248219,,,143.57951366098132,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-17 07:59:43.899454,c4-standard-2,europe-west2-a,48cfc10,genx-4_three_zones_w_policies_slack-no_uc-3-1h,highs-hipo-1.12.0-hipo,genx-4_three_zones_w_policies_slack-no_uc -genx-4_three_zones_w_policies_slack-no_uc,3-1h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,129.49546981501044,184.232,21182.24822,,,129.49546981501044,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-17 08:02:08.264469,c4-standard-2,europe-west2-a,48cfc10,genx-4_three_zones_w_policies_slack-no_uc-3-1h,highs-ipx-1.12.0-hipo,genx-4_three_zones_w_policies_slack-no_uc -genx-4_three_zones_w_policies_slack-no_uc,3-1h,highs,1.12.0,2025.0,ok,optimal,1010.6828909280013,593.356,21182.248217936463,,,1009.65198802948,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-17 08:04:18.541601,c4-standard-2,europe-west2-a,48cfc10,genx-4_three_zones_w_policies_slack-no_uc-3-1h,highs-1.12.0,genx-4_three_zones_w_policies_slack-no_uc -genx-4_three_zones_w_policies_slack-no_uc,3-1h,scip,10.0.0,2025.0,ok,optimal,1009.214896399004,1266.4,21182.24821804184,,,1008.332066,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-17 08:21:10.860662,c4-standard-2,europe-west2-a,48cfc10,genx-4_three_zones_w_policies_slack-no_uc-3-1h,scip-10.0.0,genx-4_three_zones_w_policies_slack-no_uc -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332,73-1h,gurobi,13.0.0,2025.0,ok,optimal,4.092800198006444,233.216,238867.47730951916,0.0,0.0,3.8400049209594727,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-17 08:38:02.051202,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332,73-1h,highs,1.12.0,2025.0,ok,optimal,28.4091968019784,327.076,238867.47730952944,4.4519943287468784e-14,0.0,28.28203058242798,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-17 08:38:07.056120,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332,73-1h,scip,10.0.0,2025.0,ok,optimal,37.57468908900046,458.98,238867.47730951925,1.9984014443252818e-15,0.0,37.465625,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-17 08:38:36.385442,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,192.872,,,,3600.0,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-15 17:30:23.573323,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332 -DCOPF-Carolinas_uc_6M,997-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,183.288,,,,3600.0,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-15 18:33:24.162273,c4-standard-2,europe-west8-c,48cfc10,DCOPF-Carolinas_uc_6M-997-1h,glpk-5.0,DCOPF-Carolinas_uc_6M -SWITCH-3zone-toy-stochastic-PySP,3-6ts,glpk,5.0,2020.0,ER,,,125.176,,,,,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-15 19:36:25.099977,c4-standard-2,europe-west8-c,48cfc10,SWITCH-3zone-toy-stochastic-PySP-3-6ts,glpk-5.0,SWITCH-3zone-toy-stochastic-PySP -OEMOF-diesel-genset-nonconvex-investment,1-240ts,glpk,5.0,2020.0,TO,Timeout,3600.0,124.132,,,,3600.0,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-15 19:36:25.531828,c4-standard-2,europe-west8-c,48cfc10,OEMOF-diesel-genset-nonconvex-investment-1-240ts,glpk-5.0,OEMOF-diesel-genset-nonconvex-investment -genx-1_three_zones-no_uc,3-1h,glpk,5.0,2020.0,ok,optimal,400.72542984100073,252.7,17459.93062,,,,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-15 20:39:25.974341,c4-standard-2,europe-west8-c,48cfc10,genx-1_three_zones-no_uc-3-1h,glpk-5.0,genx-1_three_zones-no_uc -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332,73-1h,glpk,5.0,2020.0,ok,unknown,341.2093625239995,135.808,238370.8541,,,,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-15 20:46:07.125279,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332,73-1h,glpk,5.0,2020.0,ok,unknown,168.08179012799883,130.688,222003.3067,,,,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-15 20:51:48.749080,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332,73-1h,gurobi,10.0.0,2022.0,TO,Timeout,3600.0,676.748,,,,3600.0,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-15 20:55:25.153058,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332,73-1h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1168.788,,,,3600.0,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-15 21:58:26.378570,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332,73-1h,scip,8.0.3,2022.0,TO,Timeout,3600.0,1804.736,,,,3600.0,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-15 23:01:26.926142,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332 -DCOPF-Carolinas_uc_6M,997-1h,gurobi,10.0.0,2022.0,ok,optimal,220.7642090289992,790.74,9293729.207042484,,,219.75599002838132,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 00:04:27.402341,c4-standard-2,europe-west8-c,48cfc10,DCOPF-Carolinas_uc_6M-997-1h,gurobi-10.0.0,DCOPF-Carolinas_uc_6M -DCOPF-Carolinas_uc_6M,997-1h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,3434.084,,,,3600.0,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 00:08:09.656334,c4-standard-2,europe-west8-c,48cfc10,DCOPF-Carolinas_uc_6M-997-1h,highs-1.5.0.dev0,DCOPF-Carolinas_uc_6M -DCOPF-Carolinas_uc_6M,997-1h,scip,8.0.3,2022.0,ok,optimal,3011.315781391,2553.436,9293847.03960514,,,3010.065682,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 01:11:10.513420,c4-standard-2,europe-west8-c,48cfc10,DCOPF-Carolinas_uc_6M-997-1h,scip-8.0.3,DCOPF-Carolinas_uc_6M -SWITCH-3zone-toy-stochastic-PySP,3-6ts,gurobi,10.0.0,2022.0,ok,optimal,0.2017625030021008,159.248,134640056.6600334,,,0.0031819343566894,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 02:01:23.658159,c4-standard-2,europe-west8-c,48cfc10,SWITCH-3zone-toy-stochastic-PySP-3-6ts,gurobi-10.0.0,SWITCH-3zone-toy-stochastic-PySP -SWITCH-3zone-toy-stochastic-PySP,3-6ts,highs,1.5.0.dev0,2022.0,ok,optimal,0.0070952089990896,147.644,134640056.66003343,,,0.0021116733551025,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 02:01:24.378309,c4-standard-2,europe-west8-c,48cfc10,SWITCH-3zone-toy-stochastic-PySP-3-6ts,highs-1.5.0.dev0,SWITCH-3zone-toy-stochastic-PySP -SWITCH-3zone-toy-stochastic-PySP,3-6ts,scip,8.0.3,2022.0,ok,optimal,0.0127426690014544,161.012,134640056.66003346,,,0.006605,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 02:01:24.904654,c4-standard-2,europe-west8-c,48cfc10,SWITCH-3zone-toy-stochastic-PySP-3-6ts,scip-8.0.3,SWITCH-3zone-toy-stochastic-PySP -OEMOF-diesel-genset-nonconvex-investment,1-240ts,gurobi,10.0.0,2022.0,ok,optimal,5.148312432000239,180.2,1225.3609806257118,,,5.121219873428345,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 02:01:25.424754,c4-standard-2,europe-west8-c,48cfc10,OEMOF-diesel-genset-nonconvex-investment-1-240ts,gurobi-10.0.0,OEMOF-diesel-genset-nonconvex-investment -OEMOF-diesel-genset-nonconvex-investment,1-240ts,highs,1.5.0.dev0,2022.0,ok,optimal,42.90690881900082,212.58,1225.480940521999,,,42.880640268325806,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 02:01:31.115125,c4-standard-2,europe-west8-c,48cfc10,OEMOF-diesel-genset-nonconvex-investment-1-240ts,highs-1.5.0.dev0,OEMOF-diesel-genset-nonconvex-investment -OEMOF-diesel-genset-nonconvex-investment,1-240ts,scip,8.0.3,2022.0,ok,optimal,13.164852289999544,245.46,1225.360980625712,,,13.140221,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 02:02:14.569097,c4-standard-2,europe-west8-c,48cfc10,OEMOF-diesel-genset-nonconvex-investment-1-240ts,scip-8.0.3,OEMOF-diesel-genset-nonconvex-investment -genx-1_three_zones-no_uc,3-1h,gurobi,10.0.0,2022.0,ok,optimal,169.7090329019993,447.932,17459.930594140264,,,168.9232940673828,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 02:02:28.280151,c4-standard-2,europe-west8-c,48cfc10,genx-1_three_zones-no_uc-3-1h,gurobi-10.0.0,genx-1_three_zones-no_uc -genx-1_three_zones-no_uc,3-1h,highs,1.5.0.dev0,2022.0,ok,optimal,152.6525440229998,508.568,17459.93059173212,,,151.92344212532043,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 02:05:19.110466,c4-standard-2,europe-west8-c,48cfc10,genx-1_three_zones-no_uc-3-1h,highs-1.5.0.dev0,genx-1_three_zones-no_uc -genx-1_three_zones-no_uc,3-1h,scip,8.0.3,2022.0,ok,optimal,890.5224658070001,1047.26,17459.930591731896,,,889.836964,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 02:07:52.877350,c4-standard-2,europe-west8-c,48cfc10,genx-1_three_zones-no_uc-3-1h,scip-8.0.3,genx-1_three_zones-no_uc -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332,73-1h,gurobi,10.0.0,2022.0,ok,optimal,4.923913450002146,201.568,238370.8540669525,,,4.714142084121704,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 02:25:45.843431,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332,73-1h,highs,1.5.0.dev0,2022.0,ok,optimal,30.62411454199901,304.332,238370.85406694643,,,30.55979824066162,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 02:25:51.351895,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332,73-1h,scip,8.0.3,2022.0,ok,optimal,15.066943703001016,364.504,238370.8540722172,,,14.986393,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 02:26:22.546980,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332,73-1h,gurobi,10.0.0,2022.0,ok,optimal,1.981653433998872,190.828,222003.3003480607,,,1.9516808986663816,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 02:26:38.212185,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332,73-1h,highs,1.5.0.dev0,2022.0,ok,optimal,18.340364676001627,391.16,222003.30673421384,,,18.300694942474365,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 02:26:40.740762,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332,73-1h,scip,8.0.3,2022.0,ok,optimal,62.851612370999646,411.556,222003.30673421407,,,62.817597,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 02:26:59.623609,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332,73-1h,gurobi,11.0.0,2023.0,TO,Timeout,3600.0,678.224,,,,3600.0,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 02:30:56.324711,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332,73-1h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,1217.928,,,,3600.0,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 03:33:56.844239,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332,73-1h,scip,8.1.0,2023.0,TO,Timeout,3600.0,1811.528,,,,3600.0,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 04:36:57.185403,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332,73-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,224.4,,,,3600.0,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 05:39:57.056064,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332 -DCOPF-Carolinas_uc_6M,997-1h,gurobi,11.0.0,2023.0,ok,optimal,123.91760970400355,773.78,9293950.544169312,,,123.00904488563538,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 06:42:58.174023,c4-standard-2,europe-west8-c,48cfc10,DCOPF-Carolinas_uc_6M-997-1h,gurobi-11.0.0,DCOPF-Carolinas_uc_6M -DCOPF-Carolinas_uc_6M,997-1h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,4148.156,,,,3600.0,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 06:45:03.639838,c4-standard-2,europe-west8-c,48cfc10,DCOPF-Carolinas_uc_6M-997-1h,highs-1.6.0.dev0,DCOPF-Carolinas_uc_6M -DCOPF-Carolinas_uc_6M,997-1h,scip,8.1.0,2023.0,ok,optimal,3010.775553442996,2568.512,9293847.03960514,,,3009.670787,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 07:48:04.100097,c4-standard-2,europe-west8-c,48cfc10,DCOPF-Carolinas_uc_6M-997-1h,scip-8.1.0,DCOPF-Carolinas_uc_6M -DCOPF-Carolinas_uc_6M,997-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,214.736,,,,3600.0,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 08:38:16.771986,c4-standard-2,europe-west8-c,48cfc10,DCOPF-Carolinas_uc_6M-997-1h,cbc-2.10.11,DCOPF-Carolinas_uc_6M -SWITCH-3zone-toy-stochastic-PySP,3-6ts,gurobi,11.0.0,2023.0,ok,optimal,0.1333216380007797,169.26,134640056.6600334,,,0.0031280517578125,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 09:41:17.091504,c4-standard-2,europe-west8-c,48cfc10,SWITCH-3zone-toy-stochastic-PySP-3-6ts,gurobi-11.0.0,SWITCH-3zone-toy-stochastic-PySP -SWITCH-3zone-toy-stochastic-PySP,3-6ts,highs,1.6.0.dev0,2023.0,ok,optimal,0.0069390579956234,158.364,134640056.66003343,,,0.0022418498992919,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 09:41:17.853490,c4-standard-2,europe-west8-c,48cfc10,SWITCH-3zone-toy-stochastic-PySP-3-6ts,highs-1.6.0.dev0,SWITCH-3zone-toy-stochastic-PySP -SWITCH-3zone-toy-stochastic-PySP,3-6ts,scip,8.1.0,2023.0,ok,optimal,0.0123579289938788,171.36,134640056.66003346,,,0.006542,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 09:41:18.468772,c4-standard-2,europe-west8-c,48cfc10,SWITCH-3zone-toy-stochastic-PySP-3-6ts,scip-8.1.0,SWITCH-3zone-toy-stochastic-PySP -SWITCH-3zone-toy-stochastic-PySP,3-6ts,cbc,2.10.11,2023.0,ok,optimal,0.034051531998557,156.732,134640056.6600334,,,0.02,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 09:41:19.088620,c4-standard-2,europe-west8-c,48cfc10,SWITCH-3zone-toy-stochastic-PySP-3-6ts,cbc-2.10.11,SWITCH-3zone-toy-stochastic-PySP -OEMOF-diesel-genset-nonconvex-investment,1-240ts,gurobi,11.0.0,2023.0,ok,optimal,4.355592134001199,187.684,1225.3609806257225,,,4.332168102264404,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 09:41:19.731588,c4-standard-2,europe-west8-c,48cfc10,OEMOF-diesel-genset-nonconvex-investment-1-240ts,gurobi-11.0.0,OEMOF-diesel-genset-nonconvex-investment -OEMOF-diesel-genset-nonconvex-investment,1-240ts,highs,1.6.0.dev0,2023.0,ok,optimal,45.26459260400589,236.696,1225.480940521999,,,45.23970866203308,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 09:41:24.717378,c4-standard-2,europe-west8-c,48cfc10,OEMOF-diesel-genset-nonconvex-investment-1-240ts,highs-1.6.0.dev0,OEMOF-diesel-genset-nonconvex-investment -OEMOF-diesel-genset-nonconvex-investment,1-240ts,scip,8.1.0,2023.0,ok,optimal,13.183650771999964,255.816,1225.360980625712,,,13.158921,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 09:42:10.629609,c4-standard-2,europe-west8-c,48cfc10,OEMOF-diesel-genset-nonconvex-investment-1-240ts,scip-8.1.0,OEMOF-diesel-genset-nonconvex-investment -OEMOF-diesel-genset-nonconvex-investment,1-240ts,cbc,2.10.11,2023.0,ok,optimal,14.922486262999882,161.852,1225.36098063,,,14.87,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 09:42:24.466236,c4-standard-2,europe-west8-c,48cfc10,OEMOF-diesel-genset-nonconvex-investment-1-240ts,cbc-2.10.11,OEMOF-diesel-genset-nonconvex-investment -genx-1_three_zones-no_uc,3-1h,gurobi,11.0.0,2023.0,ok,optimal,182.80404270799767,448.04,17459.93059456835,,,182.1546041965485,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 09:42:40.029444,c4-standard-2,europe-west8-c,48cfc10,genx-1_three_zones-no_uc-3-1h,gurobi-11.0.0,genx-1_three_zones-no_uc -genx-1_three_zones-no_uc,3-1h,highs,1.6.0.dev0,2023.0,ok,optimal,151.18653660899872,521.26,17459.93059173212,,,150.55737328529358,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 09:45:43.952517,c4-standard-2,europe-west8-c,48cfc10,genx-1_three_zones-no_uc-3-1h,highs-1.6.0.dev0,genx-1_three_zones-no_uc -genx-1_three_zones-no_uc,3-1h,scip,8.1.0,2023.0,ok,optimal,890.3191667200008,1048.924,17459.930591731896,,,889.750806,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 09:48:16.232765,c4-standard-2,europe-west8-c,48cfc10,genx-1_three_zones-no_uc-3-1h,scip-8.1.0,genx-1_three_zones-no_uc -genx-1_three_zones-no_uc,3-1h,cbc,2.10.11,2023.0,ok,optimal,126.7106201209972,301.944,17459.93059173,,,,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 10:03:07.851582,c4-standard-2,europe-west8-c,48cfc10,genx-1_three_zones-no_uc-3-1h,cbc-2.10.11,genx-1_three_zones-no_uc -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332,73-1h,gurobi,11.0.0,2023.0,ok,optimal,4.280984229000751,208.916,238370.8540669524,,,4.071359872817993,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 10:05:15.648243,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332,73-1h,highs,1.6.0.dev0,2023.0,ok,optimal,29.312108163998342,322.296,238370.85406694643,,,29.27223038673401,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 10:05:20.575211,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332,73-1h,scip,8.1.0,2023.0,ok,optimal,14.90827125999931,375.2,238370.8540722172,,,14.849242,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 10:05:50.546372,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332,73-1h,cbc,2.10.11,2023.0,ok,optimal,483.4017987949992,161.916,238370.85406695,,,483.34,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 10:06:06.138719,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332,73-1h,gurobi,11.0.0,2023.0,ok,optimal,2.771833238002728,201.628,222003.305088556,,,2.5803959369659424,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 10:14:10.189314,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332,73-1h,highs,1.6.0.dev0,2023.0,ok,optimal,17.67258357100218,400.76,222003.30673421384,,,17.647238969802856,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 10:14:13.597720,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332,73-1h,scip,8.1.0,2023.0,ok,optimal,63.05727545500122,411.428,222003.30673421407,,,63.021772,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 10:14:31.920913,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332,73-1h,cbc,2.10.11,2023.0,ok,optimal,60.62077792699711,159.488,222003.30673421,,,60.58,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 10:15:35.650301,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332,73-1h,gurobi,12.0.0,2024.0,TO,Timeout,3600.0,701.092,,,,3600.0,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 10:17:07.044467,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332,73-1h,highs,1.9.0,2024.0,TO,Timeout,3600.0,1306.584,,,,3600.0,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 11:20:07.593840,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332,73-1h,scip,9.2.0,2024.0,TO,Timeout,3600.0,1794.688,,,,3600.0,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 12:23:07.865704,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332,73-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,206.696,,,,3600.0,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 13:26:08.631824,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332 -DCOPF-Carolinas_uc_6M,997-1h,gurobi,12.0.0,2024.0,ok,optimal,213.3421070049953,728.216,9293888.655730247,0.0,9.97359661031243e-05,212.4834561347961,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 14:29:10.015389,c4-standard-2,europe-west8-c,48cfc10,DCOPF-Carolinas_uc_6M-997-1h,gurobi-12.0.0,DCOPF-Carolinas_uc_6M -DCOPF-Carolinas_uc_6M,997-1h,highs,1.9.0,2024.0,TO,Timeout,3600.0,2979.568,,,,3600.0,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 14:32:44.902168,c4-standard-2,europe-west8-c,48cfc10,DCOPF-Carolinas_uc_6M-997-1h,highs-1.9.0,DCOPF-Carolinas_uc_6M -DCOPF-Carolinas_uc_6M,997-1h,scip,9.2.0,2024.0,ok,optimal,3019.2842143610037,2561.084,9293847.03960514,1.0913936421275139e-10,9.803835986456303e-05,3018.177159,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 15:35:46.001073,c4-standard-2,europe-west8-c,48cfc10,DCOPF-Carolinas_uc_6M-997-1h,scip-9.2.0,DCOPF-Carolinas_uc_6M -DCOPF-Carolinas_uc_6M,997-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,197.1,,,,3600.0,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 16:26:07.166029,c4-standard-2,europe-west8-c,48cfc10,DCOPF-Carolinas_uc_6M-997-1h,cbc-2.10.12,DCOPF-Carolinas_uc_6M -SWITCH-3zone-toy-stochastic-PySP,3-6ts,gurobi,12.0.0,2024.0,ok,optimal,0.2270428759948117,153.864,134640056.6600334,0.0,0.0,0.0032219886779785,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 17:29:08.259188,c4-standard-2,europe-west8-c,48cfc10,SWITCH-3zone-toy-stochastic-PySP-3-6ts,gurobi-12.0.0,SWITCH-3zone-toy-stochastic-PySP -SWITCH-3zone-toy-stochastic-PySP,3-6ts,highs,1.9.0,2024.0,ok,optimal,0.0074371700029587,142.58,134640056.66003343,0.0,0.0,0.0023629665374755,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 17:29:08.923120,c4-standard-2,europe-west8-c,48cfc10,SWITCH-3zone-toy-stochastic-PySP-3-6ts,highs-1.9.0,SWITCH-3zone-toy-stochastic-PySP -SWITCH-3zone-toy-stochastic-PySP,3-6ts,scip,9.2.0,2024.0,ok,optimal,0.0126720609987387,155.892,134640056.66003346,0.0,0.0,0.0067269999999999,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 17:29:09.355708,c4-standard-2,europe-west8-c,48cfc10,SWITCH-3zone-toy-stochastic-PySP-3-6ts,scip-9.2.0,SWITCH-3zone-toy-stochastic-PySP -SWITCH-3zone-toy-stochastic-PySP,3-6ts,cbc,2.10.12,2024.0,ok,optimal,0.0372920920053729,141.76,134640056.6600334,0.0,,0.02,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 17:29:09.797612,c4-standard-2,europe-west8-c,48cfc10,SWITCH-3zone-toy-stochastic-PySP-3-6ts,cbc-2.10.12,SWITCH-3zone-toy-stochastic-PySP -OEMOF-diesel-genset-nonconvex-investment,1-240ts,gurobi,12.0.0,2024.0,ok,optimal,7.911353514005896,175.804,1225.3609806257114,0.0,9.99560445677694e-05,7.887282133102417,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 17:29:10.257335,c4-standard-2,europe-west8-c,48cfc10,OEMOF-diesel-genset-nonconvex-investment-1-240ts,gurobi-12.0.0,OEMOF-diesel-genset-nonconvex-investment -OEMOF-diesel-genset-nonconvex-investment,1-240ts,highs,1.9.0,2024.0,ok,optimal,28.309008730997448,196.32,1225.4549137050722,0.0,9.96892456242816e-05,28.282825231552124,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 17:29:18.630515,c4-standard-2,europe-west8-c,48cfc10,OEMOF-diesel-genset-nonconvex-investment-1-240ts,highs-1.9.0,OEMOF-diesel-genset-nonconvex-investment -OEMOF-diesel-genset-nonconvex-investment,1-240ts,scip,9.2.0,2024.0,ok,optimal,13.176997650996782,240.316,1225.360980625712,4.218847493575595e-15,9.88370037681696e-05,13.152139,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 17:29:47.401256,c4-standard-2,europe-west8-c,48cfc10,OEMOF-diesel-genset-nonconvex-investment-1-240ts,scip-9.2.0,OEMOF-diesel-genset-nonconvex-investment -OEMOF-diesel-genset-nonconvex-investment,1-240ts,cbc,2.10.12,2024.0,ok,optimal,15.019448348000878,151.372,1225.36098063,0.0,,14.95,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 17:30:01.043395,c4-standard-2,europe-west8-c,48cfc10,OEMOF-diesel-genset-nonconvex-investment-1-240ts,cbc-2.10.12,OEMOF-diesel-genset-nonconvex-investment -genx-1_three_zones-no_uc,3-1h,gurobi,12.0.0,2024.0,ok,optimal,120.65218431501124,427.268,17459.930592743152,,,120.00944805145264,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 17:30:16.514397,c4-standard-2,europe-west8-c,48cfc10,genx-1_three_zones-no_uc-3-1h,gurobi-12.0.0,genx-1_three_zones-no_uc -genx-1_three_zones-no_uc,3-1h,highs,1.9.0,2024.0,ok,optimal,128.2960630699963,494.832,17459.93059173206,,,127.51222848892212,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 17:32:18.526301,c4-standard-2,europe-west8-c,48cfc10,genx-1_three_zones-no_uc-3-1h,highs-1.9.0,genx-1_three_zones-no_uc -genx-1_three_zones-no_uc,3-1h,scip,9.2.0,2024.0,ok,optimal,891.4639195759955,1029.316,17459.930591731896,,,890.894725,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 17:34:28.195007,c4-standard-2,europe-west8-c,48cfc10,genx-1_three_zones-no_uc-3-1h,scip-9.2.0,genx-1_three_zones-no_uc -genx-1_three_zones-no_uc,3-1h,cbc,2.10.12,2024.0,ok,optimal,127.41836208800667,343.544,17459.93059173,,,,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 17:49:21.222265,c4-standard-2,europe-west8-c,48cfc10,genx-1_three_zones-no_uc-3-1h,cbc-2.10.12,genx-1_three_zones-no_uc -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332,73-1h,gurobi,12.0.0,2024.0,ok,optimal,3.28265303200169,193.16,238370.85406695248,0.0,0.0,3.0648088455200195,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 17:51:29.985029,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332,73-1h,highs,1.9.0,2024.0,ok,optimal,29.21845667700109,287.124,238370.85406695056,7.266914343001024e-14,0.0,29.145914316177368,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 17:51:33.789576,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332,73-1h,scip,9.2.0,2024.0,ok,optimal,14.967520887992578,359.732,238370.8540722172,0.0,1.843381744761681e-05,14.907969,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 17:52:03.518042,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332,73-1h,cbc,2.10.12,2024.0,ok,optimal,484.3648503049917,155.504,238370.85406695,0.0,,484.24,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 17:52:19.020549,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332,73-1h,gurobi,12.0.0,2024.0,ok,optimal,2.7017198679968715,186.108,222003.30673421395,0.0,3.932891480518886e-16,2.525643110275269,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 18:00:23.878140,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332,73-1h,highs,1.9.0,2024.0,ok,optimal,18.263488163996957,437.1,222003.3067342134,4.1744385725905886e-14,0.0,18.21958565711975,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 18:00:27.074259,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332,73-1h,scip,9.2.0,2024.0,ok,optimal,62.682463887002086,406.876,222003.30673421407,0.0,0.0,62.647076,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 18:00:45.819481,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332,73-1h,cbc,2.10.12,2024.0,ok,optimal,60.734407237003325,146.74,222003.30673421,0.0,,60.65,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 18:01:49.011209,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332,73-1h,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,736.46,,,,3600.0,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 18:03:18.869715,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332,73-1h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1420.884,,,,3600.0,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 19:06:20.049847,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332,73-1h,scip,10.0.0,2025.0,TO,Timeout,3600.0,1821.168,,,,3600.0,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 20:09:21.358928,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332 -DCOPF-Carolinas_uc_6M,997-1h,gurobi,13.0.0,2025.0,ok,optimal,221.73801885799912,805.26,9293841.830767842,0.0,9.996984334041578e-05,220.8424370288849,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 21:12:22.933683,c4-standard-2,europe-west8-c,48cfc10,DCOPF-Carolinas_uc_6M-997-1h,gurobi-13.0.0,DCOPF-Carolinas_uc_6M -DCOPF-Carolinas_uc_6M,997-1h,highs,1.12.0,2025.0,TO,Timeout,3600.0,2866.468,,,,3600.0,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 21:16:06.321646,c4-standard-2,europe-west8-c,48cfc10,DCOPF-Carolinas_uc_6M-997-1h,highs-1.12.0,DCOPF-Carolinas_uc_6M -DCOPF-Carolinas_uc_6M,997-1h,scip,10.0.0,2025.0,ok,optimal,3016.389615742999,2570.284,9293847.03960514,1.0913936421275139e-10,9.803835986456303e-05,3015.247577,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 22:19:07.435403,c4-standard-2,europe-west8-c,48cfc10,DCOPF-Carolinas_uc_6M-997-1h,scip-10.0.0,DCOPF-Carolinas_uc_6M -SWITCH-3zone-toy-stochastic-PySP,3-6ts,gurobi,13.0.0,2025.0,ok,optimal,0.1634574729978339,182.06,134640056.6600334,0.0,0.0,0.0030062198638916,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 23:09:25.806860,c4-standard-2,europe-west8-c,48cfc10,SWITCH-3zone-toy-stochastic-PySP-3-6ts,gurobi-13.0.0,SWITCH-3zone-toy-stochastic-PySP -SWITCH-3zone-toy-stochastic-PySP,3-6ts,highs,1.12.0,2025.0,ok,optimal,0.0097743710066424,170.052,134640056.66003343,0.0,0.0,0.0047755241394042,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 23:09:26.606351,c4-standard-2,europe-west8-c,48cfc10,SWITCH-3zone-toy-stochastic-PySP-3-6ts,highs-1.12.0,SWITCH-3zone-toy-stochastic-PySP -SWITCH-3zone-toy-stochastic-PySP,3-6ts,scip,10.0.0,2025.0,ok,optimal,0.0129988620028598,182.376,134640056.66003346,0.0,0.0,0.006657,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 23:09:27.227342,c4-standard-2,europe-west8-c,48cfc10,SWITCH-3zone-toy-stochastic-PySP-3-6ts,scip-10.0.0,SWITCH-3zone-toy-stochastic-PySP -OEMOF-diesel-genset-nonconvex-investment,1-240ts,gurobi,13.0.0,2025.0,ok,optimal,15.82257642399054,222.028,1225.360980625714,0.0,9.776751903014411e-05,15.796075105667114,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 23:09:27.860500,c4-standard-2,europe-west8-c,48cfc10,OEMOF-diesel-genset-nonconvex-investment-1-240ts,gurobi-13.0.0,OEMOF-diesel-genset-nonconvex-investment -OEMOF-diesel-genset-nonconvex-investment,1-240ts,highs,1.12.0,2025.0,ok,optimal,33.19320287001028,222.144,1225.461653772261,1.177425677187888e-10,9.990017116023649e-05,33.16791868209839,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 23:09:44.336901,c4-standard-2,europe-west8-c,48cfc10,OEMOF-diesel-genset-nonconvex-investment-1-240ts,highs-1.12.0,OEMOF-diesel-genset-nonconvex-investment -OEMOF-diesel-genset-nonconvex-investment,1-240ts,scip,10.0.0,2025.0,ok,optimal,13.19393124600174,267.092,1225.360980625712,4.218847493575595e-15,9.88370037681696e-05,13.166655,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 23:10:18.179954,c4-standard-2,europe-west8-c,48cfc10,OEMOF-diesel-genset-nonconvex-investment-1-240ts,scip-10.0.0,OEMOF-diesel-genset-nonconvex-investment -genx-1_three_zones-no_uc,3-1h,gurobi,13.0.0,2025.0,ok,optimal,127.02004440399467,456.536,17459.930593410314,,,126.3975579738617,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 23:10:32.037051,c4-standard-2,europe-west8-c,48cfc10,genx-1_three_zones-no_uc-3-1h,gurobi-13.0.0,genx-1_three_zones-no_uc -genx-1_three_zones-no_uc,3-1h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,30.302177289006067,279.024,17459.930592,,,30.302177289006067,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 23:12:40.271083,c4-standard-2,europe-west8-c,48cfc10,genx-1_three_zones-no_uc-3-1h,highs-hipo-1.12.0-hipo,genx-1_three_zones-no_uc -genx-1_three_zones-no_uc,3-1h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,47.22999958100263,164.956,17459.930593,,,47.22999958100263,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 23:13:11.194449,c4-standard-2,europe-west8-c,48cfc10,genx-1_three_zones-no_uc-3-1h,highs-ipx-1.12.0-hipo,genx-1_three_zones-no_uc -genx-1_three_zones-no_uc,3-1h,highs,1.12.0,2025.0,ok,optimal,127.2534609830036,525.236,17459.930591732253,,,126.58934044837952,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 23:13:59.053734,c4-standard-2,europe-west8-c,48cfc10,genx-1_three_zones-no_uc-3-1h,highs-1.12.0,genx-1_three_zones-no_uc -genx-1_three_zones-no_uc,3-1h,scip,10.0.0,2025.0,ok,optimal,891.9530831680022,1060.424,17459.930591731896,,,891.353682,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 23:19:08.310820,c4-standard-2,europe-west8-c,48cfc10,genx-1_three_zones-no_uc-3-1h,scip-10.0.0,genx-1_three_zones-no_uc -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332,73-1h,gurobi,13.0.0,2025.0,ok,optimal,1.551293552009156,219.852,238370.8540669524,0.0,0.0,1.371981859207153,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 23:34:01.673137,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332,73-1h,highs,1.12.0,2025.0,ok,optimal,23.912098890010384,334.068,238370.8540669502,5.403308390564106e-13,0.0,23.867517948150635,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 23:34:03.900572,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332,73-1h,scip,10.0.0,2025.0,ok,optimal,14.980284214994754,385.384,238370.8540722172,0.0,1.843381744761681e-05,14.916783,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 23:34:28.478486,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332,73-1h,gurobi,13.0.0,2025.0,ok,optimal,1.9905897519929567,210.464,222003.30673421395,0.0,5.243855307358516e-16,1.966108083724976,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 23:34:44.158630,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332,73-1h,highs,1.12.0,2025.0,ok,optimal,16.14904199600278,316.016,222003.30673421387,7.771561172376097e-16,4.0670256775337926e-05,16.119792222976685,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 23:34:46.799132,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332,73-1h,scip,10.0.0,2025.0,ok,optimal,63.14429511099297,431.636,222003.30673421407,0.0,0.0,63.106051,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 23:35:03.606681,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332 -genx-8_three_zones_w_colocated_VRE_storage_electrolyzers,3-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,241.388,,,,3600.0,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-15 17:31:40.225597,c4-standard-2,us-west3-a,48cfc10,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers-3-1h,glpk-5.0,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,145.972,,,,3600.0,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-15 18:35:09.033320,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29 -SWITCH-hydrogen,3-6ts,glpk,5.0,2020.0,ER,,,125.692,,,,,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-15 19:38:37.223394,c4-standard-2,us-west3-a,48cfc10,SWITCH-hydrogen-3-6ts,glpk-5.0,SWITCH-hydrogen -OEMOF-house-with-nonconvex-investment,1-365ts,glpk,5.0,2020.0,TO,Timeout,3600.0,123.292,,,,3600.0,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-15 19:38:37.721032,c4-standard-2,us-west3-a,48cfc10,OEMOF-house-with-nonconvex-investment-1-365ts,glpk-5.0,OEMOF-house-with-nonconvex-investment -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314,73-1h,glpk,5.0,2020.0,ok,unknown,1862.678395445,606.088,289911.8718,,,,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-15 20:42:07.195777,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314 -pypsa-power+ely+battery-ucgas-mod,1-1h,glpk,5.0,2020.0,ok,optimal,184.11380408399964,301.328,79990723060.0,,,,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-15 21:13:10.368571,c4-standard-2,us-west3-a,48cfc10,pypsa-power+ely+battery-ucgas-mod-1-1h,glpk-5.0,pypsa-power+ely+battery-ucgas-mod -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332,73-1h,glpk,5.0,2020.0,ok,unknown,245.4936126020002,133.256,221968.1041,,,,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-15 21:16:14.963400,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332 -genx-7_three_zones_w_colocated_VRE_storage,3-24h,glpk,5.0,2020.0,ok,unknown,0.6647408099997847,128.228,443334.4306,,,,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-15 21:20:20.934400,c4-standard-2,us-west3-a,48cfc10,genx-7_three_zones_w_colocated_VRE_storage-3-24h,glpk-5.0,genx-7_three_zones_w_colocated_VRE_storage -times-etimeseu-france-elec+heat-co2-single_stage,1-64ts,glpk,5.0,2020.0,warning,unknown,0.0056715199989412,127.088,,,,,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-15 21:20:22.077501,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-co2-single_stage-1-64ts,glpk-5.0,times-etimeseu-france-elec+heat-co2-single_stage -times-etimeseu-france-elec+heat-single_stage,1-64ts,glpk,5.0,2020.0,warning,unknown,0.0050969129988516,126.792,,,,,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-15 21:20:22.551854,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-single_stage-1-64ts,glpk-5.0,times-etimeseu-france-elec+heat-single_stage -temoa-utopia,1-6ts,glpk,5.0,2020.0,ER,,,126.608,,,,,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-15 21:20:23.021245,c4-standard-2,us-west3-a,48cfc10,temoa-utopia-1-6ts,glpk-5.0,temoa-utopia -genx-8_three_zones_w_colocated_VRE_storage_electrolyzers,3-1h,gurobi,10.0.0,2022.0,ok,optimal,793.0518377070002,916.316,21204230232888.88,,,791.5732378959656,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-15 21:21:08.691834,c4-standard-2,us-west3-a,48cfc10,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers-3-1h,gurobi-10.0.0,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers -genx-8_three_zones_w_colocated_VRE_storage_electrolyzers,3-1h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,2714.268,,,,3600.0,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-15 21:37:51.958541,c4-standard-2,us-west3-a,48cfc10,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers-3-1h,highs-1.5.0.dev0,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers -genx-8_three_zones_w_colocated_VRE_storage_electrolyzers,3-1h,scip,8.0.3,2022.0,TO,Timeout,3600.0,2096.776,,,,3600.0,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-15 22:41:20.655891,c4-standard-2,us-west3-a,48cfc10,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers-3-1h,scip-8.0.3,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29,73-1h,gurobi,10.0.0,2022.0,ok,optimal,878.6581304889987,437.736,2086569.4765676323,,,878.165689945221,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-15 23:44:49.597528,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29,73-1h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,833.892,,,,3600.0,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-15 23:59:29.124676,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29,73-1h,scip,8.0.3,2022.0,TO,Timeout,3600.0,1699.74,,,,3600.0,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 01:02:58.465599,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29 -SWITCH-hydrogen,3-6ts,gurobi,10.0.0,2022.0,ok,optimal,0.298988949998602,157.696,188714938.7949839,,,0.0058708190917968,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:06:27.685611,c4-standard-2,us-west3-a,48cfc10,SWITCH-hydrogen-3-6ts,gurobi-10.0.0,SWITCH-hydrogen -SWITCH-hydrogen,3-6ts,highs,1.5.0.dev0,2022.0,ok,optimal,0.0120651840006758,148.436,188714938.79498395,,,0.003939151763916,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:06:28.580581,c4-standard-2,us-west3-a,48cfc10,SWITCH-hydrogen-3-6ts,highs-1.5.0.dev0,SWITCH-hydrogen -SWITCH-hydrogen,3-6ts,scip,8.0.3,2022.0,ok,optimal,0.0204061029980948,162.4,188714938.79498383,,,0.012097,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:06:29.178468,c4-standard-2,us-west3-a,48cfc10,SWITCH-hydrogen-3-6ts,scip-8.0.3,SWITCH-hydrogen -OEMOF-house-with-nonconvex-investment,1-365ts,gurobi,10.0.0,2022.0,ok,optimal,1.6668174049991649,174.124,10566.886465925116,,,1.6492900848388672,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:06:29.785820,c4-standard-2,us-west3-a,48cfc10,OEMOF-house-with-nonconvex-investment-1-365ts,gurobi-10.0.0,OEMOF-house-with-nonconvex-investment -OEMOF-house-with-nonconvex-investment,1-365ts,highs,1.5.0.dev0,2022.0,ok,optimal,5.455558745001326,194.096,10566.886465925118,,,5.4366419315338135,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:06:32.052728,c4-standard-2,us-west3-a,48cfc10,OEMOF-house-with-nonconvex-investment-1-365ts,highs-1.5.0.dev0,OEMOF-house-with-nonconvex-investment -OEMOF-house-with-nonconvex-investment,1-365ts,scip,8.0.3,2022.0,ok,optimal,5.150730252000358,231.964,10566.886465925068,,,5.131762,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:06:38.132255,c4-standard-2,us-west3-a,48cfc10,OEMOF-house-with-nonconvex-investment-1-365ts,scip-8.0.3,OEMOF-house-with-nonconvex-investment -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314,73-1h,gurobi,10.0.0,2022.0,ok,optimal,9.089622303999931,208.512,289911.871777454,,,9.015384197235107,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:06:43.908192,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314,73-1h,highs,1.5.0.dev0,2022.0,ok,optimal,48.73904845099969,323.808,289911.87177745113,,,48.56324005126953,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:06:53.753309,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314,73-1h,scip,8.0.3,2022.0,ok,optimal,158.76254871399942,482.516,289911.87163205753,,,158.639486,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:07:43.264654,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314 -pypsa-power+ely+battery-ucgas-mod,1-1h,gurobi,10.0.0,2022.0,ok,optimal,19.00974004300224,527.7,79991181956.196,,,18.3170018196106,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:10:22.798522,c4-standard-2,us-west3-a,48cfc10,pypsa-power+ely+battery-ucgas-mod-1-1h,gurobi-10.0.0,pypsa-power+ely+battery-ucgas-mod -pypsa-power+ely+battery-ucgas-mod,1-1h,highs,1.5.0.dev0,2022.0,ok,optimal,125.1701110799986,684.696,79991181956.1961,,,124.06081867218018,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:10:43.346769,c4-standard-2,us-west3-a,48cfc10,pypsa-power+ely+battery-ucgas-mod-1-1h,highs-1.5.0.dev0,pypsa-power+ely+battery-ucgas-mod -pypsa-power+ely+battery-ucgas-mod,1-1h,scip,8.0.3,2022.0,ok,optimal,230.85836547800136,1235.908,79991181956.1961,,,229.703803,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:12:50.043851,c4-standard-2,us-west3-a,48cfc10,pypsa-power+ely+battery-ucgas-mod-1-1h,scip-8.0.3,pypsa-power+ely+battery-ucgas-mod -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332,73-1h,gurobi,10.0.0,2022.0,ok,optimal,6.092909817001782,196.928,221968.1040850238,,,5.785482883453369,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:16:42.863712,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332,73-1h,highs,1.5.0.dev0,2022.0,ok,optimal,24.753240483998525,322.004,221968.1040850234,,,24.690897703170776,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:16:49.616742,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332,73-1h,scip,8.0.3,2022.0,ok,optimal,65.57848001599996,415.628,221968.1040850238,,,65.497827,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:17:15.025565,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332 -genx-7_three_zones_w_colocated_VRE_storage,3-24h,gurobi,10.0.0,2022.0,ok,optimal,0.1425356279978586,165.328,443334.4305876119,,,0.1206810474395752,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:18:21.277444,c4-standard-2,us-west3-a,48cfc10,genx-7_three_zones_w_colocated_VRE_storage-3-24h,gurobi-10.0.0,genx-7_three_zones_w_colocated_VRE_storage -genx-7_three_zones_w_colocated_VRE_storage,3-24h,highs,1.5.0.dev0,2022.0,ok,optimal,0.1860808390010788,160.884,443334.430587612,,,0.1601746082305908,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:18:22.028608,c4-standard-2,us-west3-a,48cfc10,genx-7_three_zones_w_colocated_VRE_storage-3-24h,highs-1.5.0.dev0,genx-7_three_zones_w_colocated_VRE_storage -genx-7_three_zones_w_colocated_VRE_storage,3-24h,scip,8.0.3,2022.0,ok,optimal,1.0255660520015226,191.928,443337.472426686,,,0.999943,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:18:22.809230,c4-standard-2,us-west3-a,48cfc10,genx-7_three_zones_w_colocated_VRE_storage-3-24h,scip-8.0.3,genx-7_three_zones_w_colocated_VRE_storage -times-etimeseu-france-elec+heat-co2-single_stage,1-64ts,gurobi,10.0.0,2022.0,ok,optimal,0.1649692880018847,180.2,48230.35317510068,,,0.0625548362731933,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:18:24.449361,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-co2-single_stage-1-64ts,gurobi-10.0.0,times-etimeseu-france-elec+heat-co2-single_stage -times-etimeseu-france-elec+heat-co2-single_stage,1-64ts,highs,1.5.0.dev0,2022.0,ok,optimal,0.2066760119996615,176.78,48230.3531751006,,,0.1136763095855712,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:18:25.262393,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-co2-single_stage-1-64ts,highs-1.5.0.dev0,times-etimeseu-france-elec+heat-co2-single_stage -times-etimeseu-france-elec+heat-co2-single_stage,1-64ts,scip,8.0.3,2022.0,ok,optimal,0.6902926990005653,284.172,48230.353175100616,,,0.583994,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:18:26.126365,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-co2-single_stage-1-64ts,scip-8.0.3,times-etimeseu-france-elec+heat-co2-single_stage -times-etimeseu-france-elec+heat-single_stage,1-64ts,gurobi,10.0.0,2022.0,ok,optimal,0.162801706999744,180.484,48230.35317510065,,,0.0603461265563964,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:18:27.501106,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-single_stage-1-64ts,gurobi-10.0.0,times-etimeseu-france-elec+heat-single_stage -times-etimeseu-france-elec+heat-single_stage,1-64ts,highs,1.5.0.dev0,2022.0,ok,optimal,0.1816923029982717,177.676,48230.35317510058,,,0.0906755924224853,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:18:28.313209,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-single_stage-1-64ts,highs-1.5.0.dev0,times-etimeseu-france-elec+heat-single_stage -times-etimeseu-france-elec+heat-single_stage,1-64ts,scip,8.0.3,2022.0,ok,optimal,0.7409577770013129,286.64,48230.353175100594,,,0.6345029999999999,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:18:29.146216,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-single_stage-1-64ts,scip-8.0.3,times-etimeseu-france-elec+heat-single_stage -temoa-utopia,1-6ts,gurobi,10.0.0,2022.0,ok,optimal,0.0217602359989541,156.636,36535.63125749815,,,0.0067989826202392,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:18:30.573102,c4-standard-2,us-west3-a,48cfc10,temoa-utopia-1-6ts,gurobi-10.0.0,temoa-utopia -temoa-utopia,1-6ts,highs,1.5.0.dev0,2022.0,ok,optimal,0.0651383159965917,150.608,36535.63125749814,,,0.052689790725708,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:18:31.186934,c4-standard-2,us-west3-a,48cfc10,temoa-utopia-1-6ts,highs-1.5.0.dev0,temoa-utopia -temoa-utopia,1-6ts,scip,8.0.3,2022.0,ok,optimal,0.0278597470023669,166.808,36535.63125749816,,,0.016346,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:18:31.840773,c4-standard-2,us-west3-a,48cfc10,temoa-utopia-1-6ts,scip-8.0.3,temoa-utopia -genx-8_three_zones_w_colocated_VRE_storage_electrolyzers,3-1h,gurobi,11.0.0,2023.0,ok,optimal,860.1579257670019,937.284,21204230235710.95,,,858.9673309326172,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:21:54.547743,c4-standard-2,us-west3-a,48cfc10,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers-3-1h,gurobi-11.0.0,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers -genx-8_three_zones_w_colocated_VRE_storage_electrolyzers,3-1h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,2731.68,,,,3600.0,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:39:44.467393,c4-standard-2,us-west3-a,48cfc10,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers-3-1h,highs-1.6.0.dev0,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers -genx-8_three_zones_w_colocated_VRE_storage_electrolyzers,3-1h,scip,8.1.0,2023.0,TO,Timeout,3600.0,2110.188,,,,3600.0,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 03:43:12.046539,c4-standard-2,us-west3-a,48cfc10,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers-3-1h,scip-8.1.0,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers -genx-8_three_zones_w_colocated_VRE_storage_electrolyzers,3-1h,cbc,2.10.11,2023.0,ok,optimal,3013.215939372996,1520.576,21204230382698.984,,,3011.93,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 04:46:41.975364,c4-standard-2,us-west3-a,48cfc10,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers-3-1h,cbc-2.10.11,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29,73-1h,gurobi,11.0.0,2023.0,ok,optimal,595.3694209129972,458.992,2086569.4792646128,,,594.9641988277435,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 05:36:56.724175,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29,73-1h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,876.66,,,,3600.0,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 05:50:21.227726,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29,73-1h,scip,8.1.0,2023.0,TO,Timeout,3600.0,1716.492,,,,3600.0,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 06:53:51.008986,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29,73-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,177.136,,,,3600.0,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 07:57:19.613089,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29 -SWITCH-hydrogen,3-6ts,gurobi,11.0.0,2023.0,ok,optimal,0.2569402680019266,168.04,188714938.7949839,,,0.0058269500732421,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:00:48.413655,c4-standard-2,us-west3-a,48cfc10,SWITCH-hydrogen-3-6ts,gurobi-11.0.0,SWITCH-hydrogen -SWITCH-hydrogen,3-6ts,highs,1.6.0.dev0,2023.0,ok,optimal,0.0116476339971995,159.336,188714938.79498395,,,0.0040352344512939,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:00:49.397045,c4-standard-2,us-west3-a,48cfc10,SWITCH-hydrogen-3-6ts,highs-1.6.0.dev0,SWITCH-hydrogen -SWITCH-hydrogen,3-6ts,scip,8.1.0,2023.0,ok,optimal,0.0205360399995697,173.06,188714938.79498383,,,0.0124669999999999,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:00:50.118519,c4-standard-2,us-west3-a,48cfc10,SWITCH-hydrogen-3-6ts,scip-8.1.0,SWITCH-hydrogen -SWITCH-hydrogen,3-6ts,cbc,2.10.11,2023.0,ok,optimal,0.0260938119972706,157.132,188714938.7949839,,,,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:00:50.851970,c4-standard-2,us-west3-a,48cfc10,SWITCH-hydrogen-3-6ts,cbc-2.10.11,SWITCH-hydrogen -OEMOF-house-with-nonconvex-investment,1-365ts,gurobi,11.0.0,2023.0,ok,optimal,2.7540003230024013,183.264,10566.886465925112,,,2.738858938217163,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:00:51.588092,c4-standard-2,us-west3-a,48cfc10,OEMOF-house-with-nonconvex-investment-1-365ts,gurobi-11.0.0,OEMOF-house-with-nonconvex-investment -OEMOF-house-with-nonconvex-investment,1-365ts,highs,1.6.0.dev0,2023.0,ok,optimal,5.605109998999978,209.592,10566.886465925118,,,5.586972951889038,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:00:55.083516,c4-standard-2,us-west3-a,48cfc10,OEMOF-house-with-nonconvex-investment-1-365ts,highs-1.6.0.dev0,OEMOF-house-with-nonconvex-investment -OEMOF-house-with-nonconvex-investment,1-365ts,scip,8.1.0,2023.0,ok,optimal,5.184015222002927,241.036,10566.886465925068,,,5.16556,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:01:01.431722,c4-standard-2,us-west3-a,48cfc10,OEMOF-house-with-nonconvex-investment-1-365ts,scip-8.1.0,OEMOF-house-with-nonconvex-investment -OEMOF-house-with-nonconvex-investment,1-365ts,cbc,2.10.11,2023.0,ok,optimal,6.155084525998973,159.556,10566.88646593,,,6.12,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:01:07.370890,c4-standard-2,us-west3-a,48cfc10,OEMOF-house-with-nonconvex-investment-1-365ts,cbc-2.10.11,OEMOF-house-with-nonconvex-investment -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314,73-1h,gurobi,11.0.0,2023.0,ok,optimal,9.380333436005458,220.804,289911.8717774541,,,9.313361167907717,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:01:14.272028,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314,73-1h,highs,1.6.0.dev0,2023.0,ok,optimal,48.04801837999548,338.12,289911.87177745113,,,47.93781042098999,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:01:24.476840,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314,73-1h,scip,8.1.0,2023.0,ok,optimal,158.32267280000087,506.524,289911.87163205753,,,158.220968,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:02:13.338117,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314,73-1h,cbc,2.10.11,2023.0,ok,optimal,2337.5832009040023,197.168,289911.87177745,,,2337.48,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:04:52.501115,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314 -pypsa-power+ely+battery-ucgas-mod,1-1h,gurobi,11.0.0,2023.0,ok,optimal,19.066004567001077,531.636,79991181956.19598,,,18.230149030685425,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:43:50.888482,c4-standard-2,us-west3-a,48cfc10,pypsa-power+ely+battery-ucgas-mod-1-1h,gurobi-11.0.0,pypsa-power+ely+battery-ucgas-mod -pypsa-power+ely+battery-ucgas-mod,1-1h,highs,1.6.0.dev0,2023.0,ok,optimal,123.77121757500572,617.316,79991181956.1961,,,122.8607132434845,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:44:11.409491,c4-standard-2,us-west3-a,48cfc10,pypsa-power+ely+battery-ucgas-mod-1-1h,highs-1.6.0.dev0,pypsa-power+ely+battery-ucgas-mod -pypsa-power+ely+battery-ucgas-mod,1-1h,scip,8.1.0,2023.0,ok,optimal,232.6820683249971,1236.744,79991181956.1961,,,231.670909,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:46:16.605352,c4-standard-2,us-west3-a,48cfc10,pypsa-power+ely+battery-ucgas-mod-1-1h,scip-8.1.0,pypsa-power+ely+battery-ucgas-mod -pypsa-power+ely+battery-ucgas-mod,1-1h,cbc,2.10.11,2023.0,ok,optimal,123.46942594899885,659.364,79990763473.80032,,,122.58,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:50:11.198617,c4-standard-2,us-west3-a,48cfc10,pypsa-power+ely+battery-ucgas-mod-1-1h,cbc-2.10.11,pypsa-power+ely+battery-ucgas-mod -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332,73-1h,gurobi,11.0.0,2023.0,ok,optimal,6.541551109003194,211.984,221968.1040850238,,,6.265594005584717,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:52:16.119696,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332,73-1h,highs,1.6.0.dev0,2023.0,ok,optimal,23.85888399900432,338.188,221968.1040850234,,,23.81954789161682,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:52:23.416741,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332,73-1h,scip,8.1.0,2023.0,ok,optimal,65.68316771900572,418.792,221968.1040850238,,,65.625754,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:52:48.026896,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332,73-1h,cbc,2.10.11,2023.0,ok,optimal,65.28585350300273,165.272,221968.10408502,,,65.22,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:53:54.493566,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332 -genx-7_three_zones_w_colocated_VRE_storage,3-24h,gurobi,11.0.0,2023.0,ok,optimal,0.1474947910028277,174.056,443334.4305876119,,,0.1295030117034912,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:55:00.527271,c4-standard-2,us-west3-a,48cfc10,genx-7_three_zones_w_colocated_VRE_storage-3-24h,gurobi-11.0.0,genx-7_three_zones_w_colocated_VRE_storage -genx-7_three_zones_w_colocated_VRE_storage,3-24h,highs,1.6.0.dev0,2023.0,ok,optimal,0.1753799470025114,172.38,443334.430587612,,,0.1582145690917968,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:55:01.401460,c4-standard-2,us-west3-a,48cfc10,genx-7_three_zones_w_colocated_VRE_storage-3-24h,highs-1.6.0.dev0,genx-7_three_zones_w_colocated_VRE_storage -genx-7_three_zones_w_colocated_VRE_storage,3-24h,scip,8.1.0,2023.0,ok,optimal,1.0266127809954924,200.54,443337.472426686,,,0.999904,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:55:02.294489,c4-standard-2,us-west3-a,48cfc10,genx-7_three_zones_w_colocated_VRE_storage-3-24h,scip-8.1.0,genx-7_three_zones_w_colocated_VRE_storage -genx-7_three_zones_w_colocated_VRE_storage,3-24h,cbc,2.10.11,2023.0,ok,optimal,1.3530062019999605,158.408,443334.43058761,,,1.32,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:55:04.049851,c4-standard-2,us-west3-a,48cfc10,genx-7_three_zones_w_colocated_VRE_storage-3-24h,cbc-2.10.11,genx-7_three_zones_w_colocated_VRE_storage -times-etimeseu-france-elec+heat-co2-single_stage,1-64ts,gurobi,11.0.0,2023.0,ok,optimal,0.1446595239976886,185.44,48230.35317510068,,,0.0630950927734375,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:55:06.123116,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-co2-single_stage-1-64ts,gurobi-11.0.0,times-etimeseu-france-elec+heat-co2-single_stage -times-etimeseu-france-elec+heat-co2-single_stage,1-64ts,highs,1.6.0.dev0,2023.0,ok,optimal,0.1765080600016517,184.676,48230.3531751006,,,0.112231969833374,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:55:07.017203,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-co2-single_stage-1-64ts,highs-1.6.0.dev0,times-etimeseu-france-elec+heat-co2-single_stage -times-etimeseu-france-elec+heat-co2-single_stage,1-64ts,scip,8.1.0,2023.0,ok,optimal,0.6777498109950102,291.868,48230.353175100616,,,0.587815,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:55:07.938454,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-co2-single_stage-1-64ts,scip-8.1.0,times-etimeseu-france-elec+heat-co2-single_stage -times-etimeseu-france-elec+heat-co2-single_stage,1-64ts,cbc,2.10.11,2023.0,ER,,,158.452,,,,,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:55:09.396174,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-co2-single_stage-1-64ts,cbc-2.10.11,times-etimeseu-france-elec+heat-co2-single_stage -times-etimeseu-france-elec+heat-single_stage,1-64ts,gurobi,11.0.0,2023.0,ok,optimal,0.1426928229993791,189.5,48230.35317510065,,,0.0618560314178466,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:55:10.117436,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-single_stage-1-64ts,gurobi-11.0.0,times-etimeseu-france-elec+heat-single_stage -times-etimeseu-france-elec+heat-single_stage,1-64ts,highs,1.6.0.dev0,2023.0,ok,optimal,0.1515388889965834,185.612,48230.35317510058,,,0.0885853767395019,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:55:11.013270,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-single_stage-1-64ts,highs-1.6.0.dev0,times-etimeseu-france-elec+heat-single_stage -times-etimeseu-france-elec+heat-single_stage,1-64ts,scip,8.1.0,2023.0,ok,optimal,0.743365440001071,294.68,48230.353175100594,,,0.652982,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:55:11.908246,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-single_stage-1-64ts,scip-8.1.0,times-etimeseu-france-elec+heat-single_stage -times-etimeseu-france-elec+heat-single_stage,1-64ts,cbc,2.10.11,2023.0,ER,,,158.008,,,,,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:55:13.432020,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-single_stage-1-64ts,cbc-2.10.11,times-etimeseu-france-elec+heat-single_stage -temoa-utopia,1-6ts,gurobi,11.0.0,2023.0,ok,optimal,0.0194546679995255,166.208,36535.63125749815,,,0.0067780017852783,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:55:14.156021,c4-standard-2,us-west3-a,48cfc10,temoa-utopia-1-6ts,gurobi-11.0.0,temoa-utopia -temoa-utopia,1-6ts,highs,1.6.0.dev0,2023.0,ok,optimal,0.0614055260011809,161.504,36535.63125749814,,,0.049567699432373,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:55:14.887746,c4-standard-2,us-west3-a,48cfc10,temoa-utopia-1-6ts,highs-1.6.0.dev0,temoa-utopia -temoa-utopia,1-6ts,scip,8.1.0,2023.0,ok,optimal,0.028143588999228,175.9,36535.63125749816,,,0.0168159999999999,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:55:15.676720,c4-standard-2,us-west3-a,48cfc10,temoa-utopia-1-6ts,scip-8.1.0,temoa-utopia -temoa-utopia,1-6ts,cbc,2.10.11,2023.0,ok,optimal,0.0368052699996042,157.876,36535.63125748,,,,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:55:16.433117,c4-standard-2,us-west3-a,48cfc10,temoa-utopia-1-6ts,cbc-2.10.11,temoa-utopia -genx-8_three_zones_w_colocated_VRE_storage_electrolyzers,3-1h,gurobi,12.0.0,2024.0,ok,optimal,1052.833605709995,1245.028,21204230232888.824,0.0,2.3817660471666885e-10,1051.655599117279,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:55:49.310268,c4-standard-2,us-west3-a,48cfc10,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers-3-1h,gurobi-12.0.0,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers -genx-8_three_zones_w_colocated_VRE_storage_electrolyzers,3-1h,highs,1.9.0,2024.0,TO,Timeout,3600.0,3038.348,,,,3600.0,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 10:16:53.193438,c4-standard-2,us-west3-a,48cfc10,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers-3-1h,highs-1.9.0,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers -genx-8_three_zones_w_colocated_VRE_storage_electrolyzers,3-1h,scip,9.2.0,2024.0,TO,Timeout,3600.0,2093.512,,,,3600.0,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 11:20:21.591464,c4-standard-2,us-west3-a,48cfc10,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers-3-1h,scip-9.2.0,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers -genx-8_three_zones_w_colocated_VRE_storage_electrolyzers,3-1h,cbc,2.10.12,2024.0,ok,optimal,2936.6689725130127,1513.192,21204230382698.984,0.0,0.0,2933.51,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 12:23:50.208052,c4-standard-2,us-west3-a,48cfc10,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers-3-1h,cbc-2.10.12,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29,73-1h,gurobi,12.0.0,2024.0,ok,optimal,734.1015359799931,422.004,2086569.479375356,0.0,9.95578852044614e-05,733.6514768600464,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 13:12:49.321261,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29,73-1h,highs,1.9.0,2024.0,TO,Timeout,3600.0,882.44,,,,3600.0,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 13:28:33.933246,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29,73-1h,scip,9.2.0,2024.0,TO,Timeout,3600.0,1685.868,,,,3600.0,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 14:32:03.433009,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29,73-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,159.652,,,,3600.0,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 15:35:31.753701,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29 -SWITCH-hydrogen,3-6ts,gurobi,12.0.0,2024.0,ok,optimal,0.2637986689951503,151.46,188714938.7949839,,,0.0045020580291748,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 16:39:00.027143,c4-standard-2,us-west3-a,48cfc10,SWITCH-hydrogen-3-6ts,gurobi-12.0.0,SWITCH-hydrogen -SWITCH-hydrogen,3-6ts,highs,1.9.0,2024.0,ok,optimal,0.01253931800602,142.232,188714938.79498395,,,0.0041139125823974,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 16:39:00.812757,c4-standard-2,us-west3-a,48cfc10,SWITCH-hydrogen-3-6ts,highs-1.9.0,SWITCH-hydrogen -SWITCH-hydrogen,3-6ts,scip,9.2.0,2024.0,ok,optimal,0.0203584369883174,156.412,188714938.79498383,,,0.0121479999999999,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 16:39:01.308713,c4-standard-2,us-west3-a,48cfc10,SWITCH-hydrogen-3-6ts,scip-9.2.0,SWITCH-hydrogen -SWITCH-hydrogen,3-6ts,cbc,2.10.12,2024.0,ok,optimal,0.0312546830100473,141.876,188714938.7949839,,,,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 16:39:01.822518,c4-standard-2,us-west3-a,48cfc10,SWITCH-hydrogen-3-6ts,cbc-2.10.12,SWITCH-hydrogen -OEMOF-house-with-nonconvex-investment,1-365ts,gurobi,12.0.0,2024.0,ok,optimal,2.354008466994856,169.604,10566.945884280196,0.0,9.488647708666463e-05,2.339116096496582,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 16:39:02.343265,c4-standard-2,us-west3-a,48cfc10,OEMOF-house-with-nonconvex-investment-1-365ts,gurobi-12.0.0,OEMOF-house-with-nonconvex-investment -OEMOF-house-with-nonconvex-investment,1-365ts,highs,1.9.0,2024.0,ok,optimal,5.499462592997588,186.684,10566.88646592512,0.0,9.97768149436638e-05,5.480053186416626,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 16:39:05.216008,c4-standard-2,us-west3-a,48cfc10,OEMOF-house-with-nonconvex-investment-1-365ts,highs-1.9.0,OEMOF-house-with-nonconvex-investment -OEMOF-house-with-nonconvex-investment,1-365ts,scip,9.2.0,2024.0,ok,optimal,5.140540329011856,226.376,10566.886465925068,8.437694987151191e-15,7.045312808848395e-05,5.122141,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 16:39:11.222452,c4-standard-2,us-west3-a,48cfc10,OEMOF-house-with-nonconvex-investment-1-365ts,scip-9.2.0,OEMOF-house-with-nonconvex-investment -OEMOF-house-with-nonconvex-investment,1-365ts,cbc,2.10.12,2024.0,ok,optimal,6.164802753992262,148.596,10566.88646593,0.0,,6.11,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 16:39:16.895460,c4-standard-2,us-west3-a,48cfc10,OEMOF-house-with-nonconvex-investment-1-365ts,cbc-2.10.12,OEMOF-house-with-nonconvex-investment -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314,73-1h,gurobi,12.0.0,2024.0,ok,optimal,6.703529680991778,196.72,289911.87177745404,0.0,0.0,6.637184858322144,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 16:39:23.571027,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314,73-1h,highs,1.9.0,2024.0,ok,optimal,54.49151600900223,297.24,289911.8717774538,2.933209231059664e-13,0.0,54.300814390182495,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 16:39:30.955139,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314,73-1h,scip,9.2.0,2024.0,ok,optimal,157.80277926000417,492.28,289911.87163205753,5.876986375330517e-08,0.0,157.700594,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 16:40:26.135017,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314,73-1h,cbc,2.10.12,2024.0,ok,optimal,2337.8072099220008,191.464,289911.87177745,0.0,0.0,2337.53,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 16:43:04.638624,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314 -pypsa-power+ely+battery-ucgas-mod,1-1h,gurobi,12.0.0,2024.0,ok,optimal,15.737964549989556,517.776,79991181956.19597,0.0,5.772469116968184e-06,14.872719049453735,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:22:03.119394,c4-standard-2,us-west3-a,48cfc10,pypsa-power+ely+battery-ucgas-mod-1-1h,gurobi-12.0.0,pypsa-power+ely+battery-ucgas-mod -pypsa-power+ely+battery-ucgas-mod,1-1h,highs,1.9.0,2024.0,ok,optimal,127.46764785599952,695.052,79991181956.1961,0.0,5.772469118875732e-06,126.30761694908142,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:22:20.450044,c4-standard-2,us-west3-a,48cfc10,pypsa-power+ely+battery-ucgas-mod-1-1h,highs-1.9.0,pypsa-power+ely+battery-ucgas-mod -pypsa-power+ely+battery-ucgas-mod,1-1h,scip,9.2.0,2024.0,ok,optimal,231.26080952100165,1221.14,79991181956.1961,0.0,5.772502441230841e-06,230.250107,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:24:29.558514,c4-standard-2,us-west3-a,48cfc10,pypsa-power+ely+battery-ucgas-mod-1-1h,scip-9.2.0,pypsa-power+ely+battery-ucgas-mod -pypsa-power+ely+battery-ucgas-mod,1-1h,cbc,2.10.12,2024.0,ok,optimal,124.34880194700963,656.924,79990763473.80032,0.0,0.0,122.44,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:28:22.876957,c4-standard-2,us-west3-a,48cfc10,pypsa-power+ely+battery-ucgas-mod-1-1h,cbc-2.10.12,pypsa-power+ely+battery-ucgas-mod -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332,73-1h,gurobi,12.0.0,2024.0,ok,optimal,4.327099963993533,193.348,221968.10408502375,0.0,0.0,4.045547008514404,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:30:28.845582,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332,73-1h,highs,1.9.0,2024.0,ok,optimal,35.89953843399417,342.604,221968.1040850237,5.218048215738236e-15,4.592821342141951e-05,35.83086895942688,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:30:33.752767,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332,73-1h,scip,9.2.0,2024.0,ok,optimal,65.64776786000584,403.912,221968.1040850238,0.0,0.0,65.58912,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:31:10.223300,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332,73-1h,cbc,2.10.12,2024.0,ok,optimal,65.35096005800006,154.376,221968.10408502,0.0,,65.22,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:32:16.492610,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332 -genx-7_three_zones_w_colocated_VRE_storage,3-24h,gurobi,12.0.0,2024.0,ok,optimal,0.1496892099967226,160.164,443334.4305869118,0.0,5.689386967240527e-06,0.1316721439361572,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:33:22.402683,c4-standard-2,us-west3-a,48cfc10,genx-7_three_zones_w_colocated_VRE_storage-3-24h,gurobi-12.0.0,genx-7_three_zones_w_colocated_VRE_storage -genx-7_three_zones_w_colocated_VRE_storage,3-24h,highs,1.9.0,2024.0,ok,optimal,0.1751874059991678,153.732,443334.430587612,0.0,5.6893869610606685e-06,0.1462733745574951,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:33:23.071929,c4-standard-2,us-west3-a,48cfc10,genx-7_three_zones_w_colocated_VRE_storage-3-24h,highs-1.9.0,genx-7_three_zones_w_colocated_VRE_storage -genx-7_three_zones_w_colocated_VRE_storage,3-24h,scip,9.2.0,2024.0,ok,optimal,1.0342710800032364,185.7,443337.472426686,0.0,7.154415732867402e-06,1.007276,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:33:23.757540,c4-standard-2,us-west3-a,48cfc10,genx-7_three_zones_w_colocated_VRE_storage-3-24h,scip-9.2.0,genx-7_three_zones_w_colocated_VRE_storage -genx-7_three_zones_w_colocated_VRE_storage,3-24h,cbc,2.10.12,2024.0,ok,optimal,1.379283554997528,147.86,443334.43058761,0.0,0.0,1.32,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:33:25.301941,c4-standard-2,us-west3-a,48cfc10,genx-7_three_zones_w_colocated_VRE_storage-3-24h,cbc-2.10.12,genx-7_three_zones_w_colocated_VRE_storage -times-etimeseu-france-elec+heat-co2-single_stage,1-64ts,gurobi,12.0.0,2024.0,ok,optimal,0.152720854996005,174.032,48230.35317510068,,,0.0701038837432861,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:33:27.198402,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-co2-single_stage-1-64ts,gurobi-12.0.0,times-etimeseu-france-elec+heat-co2-single_stage -times-etimeseu-france-elec+heat-co2-single_stage,1-64ts,highs,1.9.0,2024.0,ok,optimal,0.2264371050114277,170.124,48230.3531751006,,,0.1192188262939453,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:33:27.975308,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-co2-single_stage-1-64ts,highs-1.9.0,times-etimeseu-france-elec+heat-co2-single_stage -times-etimeseu-france-elec+heat-co2-single_stage,1-64ts,scip,9.2.0,2024.0,ok,optimal,0.67259023799852,275.904,48230.353175100616,,,0.581409,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:33:28.843052,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-co2-single_stage-1-64ts,scip-9.2.0,times-etimeseu-france-elec+heat-co2-single_stage -times-etimeseu-france-elec+heat-co2-single_stage,1-64ts,cbc,2.10.12,2024.0,ER,,,140.72,,,,,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:33:30.167704,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-co2-single_stage-1-64ts,cbc-2.10.12,times-etimeseu-france-elec+heat-co2-single_stage -times-etimeseu-france-elec+heat-single_stage,1-64ts,gurobi,12.0.0,2024.0,ok,optimal,0.1398179009993327,171.568,48230.35317510065,,,0.0586280822753906,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:33:30.672496,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-single_stage-1-64ts,gurobi-12.0.0,times-etimeseu-france-elec+heat-single_stage -times-etimeseu-france-elec+heat-single_stage,1-64ts,highs,1.9.0,2024.0,ok,optimal,0.198570186010329,167.988,48230.35317510058,,,0.0945169925689697,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:33:31.441671,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-single_stage-1-64ts,highs-1.9.0,times-etimeseu-france-elec+heat-single_stage -times-etimeseu-france-elec+heat-single_stage,1-64ts,scip,9.2.0,2024.0,ok,optimal,0.7250064560066676,278.86,48230.353175100594,,,0.6358809999999999,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:33:32.256398,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-single_stage-1-64ts,scip-9.2.0,times-etimeseu-france-elec+heat-single_stage -times-etimeseu-france-elec+heat-single_stage,1-64ts,cbc,2.10.12,2024.0,ER,,,140.684,,,,,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:33:33.626950,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-single_stage-1-64ts,cbc-2.10.12,times-etimeseu-france-elec+heat-single_stage -temoa-utopia,1-6ts,gurobi,12.0.0,2024.0,ok,optimal,0.0191041739890351,149.76,36535.63125749814,,,0.0061898231506347,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:33:34.123823,c4-standard-2,us-west3-a,48cfc10,temoa-utopia-1-6ts,gurobi-12.0.0,temoa-utopia -temoa-utopia,1-6ts,highs,1.9.0,2024.0,ok,optimal,0.0192319409979973,144.284,36535.63125749816,,,0.006072998046875,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:33:34.651029,c4-standard-2,us-west3-a,48cfc10,temoa-utopia-1-6ts,highs-1.9.0,temoa-utopia -temoa-utopia,1-6ts,scip,9.2.0,2024.0,ok,optimal,0.0275496980029856,159.836,36535.63125749816,,,0.016305,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:33:35.167651,c4-standard-2,us-west3-a,48cfc10,temoa-utopia-1-6ts,scip-9.2.0,temoa-utopia -temoa-utopia,1-6ts,cbc,2.10.12,2024.0,ok,optimal,0.0468585780035937,147.184,36535.63125748,,,,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:33:35.694554,c4-standard-2,us-west3-a,48cfc10,temoa-utopia-1-6ts,cbc-2.10.12,temoa-utopia -genx-8_three_zones_w_colocated_VRE_storage_electrolyzers,3-1h,gurobi,13.0.0,2025.0,ok,optimal,828.6305438209965,940.016,21204230232888.902,0.0,1.478261190372363e-10,827.4271140098572,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:34:08.770334,c4-standard-2,us-west3-a,48cfc10,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers-3-1h,gurobi-13.0.0,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers -genx-8_three_zones_w_colocated_VRE_storage_electrolyzers,3-1h,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,3600.0,162.912,,,,3600.0,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:51:29.083585,c4-standard-2,us-west3-a,48cfc10,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers-3-1h,highs-hipo-1.12.0-hipo,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers -genx-8_three_zones_w_colocated_VRE_storage_electrolyzers,3-1h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,3600.0,163.32,,,,3600.0,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 18:54:57.573654,c4-standard-2,us-west3-a,48cfc10,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers-3-1h,highs-ipx-1.12.0-hipo,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers -genx-8_three_zones_w_colocated_VRE_storage_electrolyzers,3-1h,highs,1.12.0,2025.0,TO,Timeout,3600.0,2250.58,,,,3600.0,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 19:58:26.109764,c4-standard-2,us-west3-a,48cfc10,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers-3-1h,highs-1.12.0,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers -genx-8_three_zones_w_colocated_VRE_storage_electrolyzers,3-1h,scip,10.0.0,2025.0,TO,Timeout,3600.0,2121.004,,,,3600.0,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 21:01:55.645547,c4-standard-2,us-west3-a,48cfc10,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers-3-1h,scip-10.0.0,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29,73-1h,gurobi,13.0.0,2025.0,ok,optimal,803.9758010819933,450.748,2086569.479384537,0.0,9.819285076666524e-05,803.5138700008392,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 22:05:24.223287,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29,73-1h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1077.34,,,,3600.0,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 22:18:49.178294,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29,73-1h,scip,10.0.0,2025.0,TO,Timeout,3600.0,1724.032,,,,3600.0,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 23:22:16.986008,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29 -SWITCH-hydrogen,3-6ts,gurobi,13.0.0,2025.0,ok,optimal,0.2874819209973793,179.512,188714938.7949839,,,0.0043120384216308,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:25:44.760816,c4-standard-2,us-west3-a,48cfc10,SWITCH-hydrogen-3-6ts,gurobi-13.0.0,SWITCH-hydrogen -SWITCH-hydrogen,3-6ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,0.1128127109986962,164.316,188714938.88,,,0.1128127109986962,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:25:45.782896,c4-standard-2,us-west3-a,48cfc10,SWITCH-hydrogen-3-6ts,highs-hipo-1.12.0-hipo,SWITCH-hydrogen -SWITCH-hydrogen,3-6ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,0.0279823640012182,163.78,188714938.85,,,0.0279823640012182,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:25:46.598494,c4-standard-2,us-west3-a,48cfc10,SWITCH-hydrogen-3-6ts,highs-ipx-1.12.0-hipo,SWITCH-hydrogen -SWITCH-hydrogen,3-6ts,highs,1.12.0,2025.0,ok,optimal,0.0126739179977448,169.412,188714938.79498392,,,0.0045568943023681,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:25:47.344507,c4-standard-2,us-west3-a,48cfc10,SWITCH-hydrogen-3-6ts,highs-1.12.0,SWITCH-hydrogen -SWITCH-hydrogen,3-6ts,scip,10.0.0,2025.0,ok,optimal,0.0213398439955199,183.464,188714938.79498383,,,0.0123749999999999,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:25:48.082513,c4-standard-2,us-west3-a,48cfc10,SWITCH-hydrogen-3-6ts,scip-10.0.0,SWITCH-hydrogen -OEMOF-house-with-nonconvex-investment,1-365ts,gurobi,13.0.0,2025.0,ok,optimal,2.4254079060046934,196.644,10566.886465925112,0.0,9.834299905729234e-05,2.4099109172821045,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:25:48.831288,c4-standard-2,us-west3-a,48cfc10,OEMOF-house-with-nonconvex-investment-1-365ts,gurobi-13.0.0,OEMOF-house-with-nonconvex-investment -OEMOF-house-with-nonconvex-investment,1-365ts,highs,1.12.0,2025.0,ok,optimal,1.2238075860077515,195.048,10566.88646592512,9.68341485577922e-15,2.510614932915821e-05,1.2064313888549805,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:25:51.998585,c4-standard-2,us-west3-a,48cfc10,OEMOF-house-with-nonconvex-investment-1-365ts,highs-1.12.0,OEMOF-house-with-nonconvex-investment -OEMOF-house-with-nonconvex-investment,1-365ts,scip,10.0.0,2025.0,ok,optimal,5.156029609002871,253.212,10566.886465925068,8.437694987151191e-15,7.045312808848395e-05,5.13541,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:25:53.965862,c4-standard-2,us-west3-a,48cfc10,OEMOF-house-with-nonconvex-investment-1-365ts,scip-10.0.0,OEMOF-house-with-nonconvex-investment -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314,73-1h,gurobi,13.0.0,2025.0,ok,optimal,6.062845385997207,221.732,289911.8717774541,0.0,0.0,5.995406150817871,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:25:59.881222,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314,73-1h,highs,1.12.0,2025.0,ok,optimal,54.43366038399108,300.564,289911.87177693925,5.7537260831596966e-11,4.064394521048813e-05,54.314897537231445,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:26:06.792159,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314,73-1h,scip,10.0.0,2025.0,ok,optimal,158.12900820100913,514.644,289911.87163205753,5.876986375330517e-08,0.0,158.025458,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:27:02.067233,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314 -pypsa-power+ely+battery-ucgas-mod,1-1h,gurobi,13.0.0,2025.0,ok,optimal,15.37302409899712,539.992,79991181956.19597,0.0,5.772469116968184e-06,14.778608083724976,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:29:41.063058,c4-standard-2,us-west3-a,48cfc10,pypsa-power+ely+battery-ucgas-mod-1-1h,gurobi-13.0.0,pypsa-power+ely+battery-ucgas-mod -pypsa-power+ely+battery-ucgas-mod,1-1h,highs,1.12.0,2025.0,ok,optimal,111.69929526800117,495.54,79991181956.19612,0.0,5.772469119066488e-06,110.75614786148073,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:29:58.073218,c4-standard-2,us-west3-a,48cfc10,pypsa-power+ely+battery-ucgas-mod-1-1h,highs-1.12.0,pypsa-power+ely+battery-ucgas-mod -pypsa-power+ely+battery-ucgas-mod,1-1h,scip,10.0.0,2025.0,ok,optimal,230.6230731709948,1248.584,79991181956.1961,0.0,5.772502441230841e-06,229.573018,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:31:51.315024,c4-standard-2,us-west3-a,48cfc10,pypsa-power+ely+battery-ucgas-mod-1-1h,scip-10.0.0,pypsa-power+ely+battery-ucgas-mod -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332,73-1h,gurobi,13.0.0,2025.0,ok,optimal,4.948205318010878,221.26,221968.103942129,0.0,0.0,4.6787049770355225,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:35:43.999703,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332,73-1h,highs,1.12.0,2025.0,ok,optimal,19.474143458995968,420.696,221968.10408502372,7.771561172376097e-16,0.0,19.43067693710327,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:35:49.735197,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332,73-1h,scip,10.0.0,2025.0,ok,optimal,66.17240519500047,431.192,221968.1040850238,0.0,0.0,66.111504,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:36:09.981594,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332 -genx-7_three_zones_w_colocated_VRE_storage,3-24h,gurobi,13.0.0,2025.0,ok,optimal,0.1478097810031613,186.616,443334.430586904,0.0,5.689386949384487e-06,0.1296870708465576,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:37:16.968723,c4-standard-2,us-west3-a,48cfc10,genx-7_three_zones_w_colocated_VRE_storage-3-24h,gurobi-13.0.0,genx-7_three_zones_w_colocated_VRE_storage -genx-7_three_zones_w_colocated_VRE_storage,3-24h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,0.2664480090024881,163.852,443334.430588,,,0.2664480090024881,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:37:17.884958,c4-standard-2,us-west3-a,48cfc10,genx-7_three_zones_w_colocated_VRE_storage-3-24h,highs-hipo-1.12.0-hipo,genx-7_three_zones_w_colocated_VRE_storage -genx-7_three_zones_w_colocated_VRE_storage,3-24h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,0.2715754179953364,163.688,443334.430588,,,0.2715754179953364,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:37:18.879059,c4-standard-2,us-west3-a,48cfc10,genx-7_three_zones_w_colocated_VRE_storage-3-24h,highs-ipx-1.12.0-hipo,genx-7_three_zones_w_colocated_VRE_storage -genx-7_three_zones_w_colocated_VRE_storage,3-24h,highs,1.12.0,2025.0,ok,optimal,0.2436668290029047,179.892,443334.4305876119,0.0,5.68938696158585e-06,0.2242586612701416,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:37:19.884639,c4-standard-2,us-west3-a,48cfc10,genx-7_three_zones_w_colocated_VRE_storage-3-24h,highs-1.12.0,genx-7_three_zones_w_colocated_VRE_storage -genx-7_three_zones_w_colocated_VRE_storage,3-24h,scip,10.0.0,2025.0,ok,optimal,1.0322816670086468,213.084,443337.472426686,0.0,7.154415732867402e-06,1.002509,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:37:20.871391,c4-standard-2,us-west3-a,48cfc10,genx-7_three_zones_w_colocated_VRE_storage-3-24h,scip-10.0.0,genx-7_three_zones_w_colocated_VRE_storage -times-etimeseu-france-elec+heat-co2-single_stage,1-64ts,gurobi,13.0.0,2025.0,ok,optimal,0.1599219350027851,200.976,48230.35317510065,,,0.0776979923248291,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:37:22.659263,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-co2-single_stage-1-64ts,gurobi-13.0.0,times-etimeseu-france-elec+heat-co2-single_stage -times-etimeseu-france-elec+heat-co2-single_stage,1-64ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,0.9158804149919888,163.964,48230.353175,,,0.9158804149919888,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:37:23.625882,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-co2-single_stage-1-64ts,highs-hipo-1.12.0-hipo,times-etimeseu-france-elec+heat-co2-single_stage -times-etimeseu-france-elec+heat-co2-single_stage,1-64ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,0.3172122239921009,163.816,48230.353175,,,0.3172122239921009,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:37:25.270604,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-co2-single_stage-1-64ts,highs-ipx-1.12.0-hipo,times-etimeseu-france-elec+heat-co2-single_stage -times-etimeseu-france-elec+heat-co2-single_stage,1-64ts,highs,1.12.0,2025.0,ok,optimal,0.1988990640093106,195.652,48230.3531751006,,,0.1240260601043701,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:37:26.320407,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-co2-single_stage-1-64ts,highs-1.12.0,times-etimeseu-france-elec+heat-co2-single_stage -times-etimeseu-france-elec+heat-co2-single_stage,1-64ts,scip,10.0.0,2025.0,ok,optimal,0.6915723779966356,302.048,48230.353175100616,,,0.593196,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:37:27.311380,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-co2-single_stage-1-64ts,scip-10.0.0,times-etimeseu-france-elec+heat-co2-single_stage -times-etimeseu-france-elec+heat-single_stage,1-64ts,gurobi,13.0.0,2025.0,ok,optimal,0.1422806420014239,199.476,48230.35317510064,,,0.059687852859497,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:37:28.823952,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-single_stage-1-64ts,gurobi-13.0.0,times-etimeseu-france-elec+heat-single_stage -times-etimeseu-france-elec+heat-single_stage,1-64ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,0.8304058630019426,163.8,48230.353176,,,0.8304058630019426,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:37:29.759131,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-single_stage-1-64ts,highs-hipo-1.12.0-hipo,times-etimeseu-france-elec+heat-single_stage -times-etimeseu-france-elec+heat-single_stage,1-64ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,0.259298838005634,163.92,48230.353175,,,0.259298838005634,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:37:31.325478,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-single_stage-1-64ts,highs-ipx-1.12.0-hipo,times-etimeseu-france-elec+heat-single_stage -times-etimeseu-france-elec+heat-single_stage,1-64ts,highs,1.12.0,2025.0,ok,optimal,0.172925656006555,196.396,48230.35317510058,,,0.1013436317443847,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:37:32.317262,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-single_stage-1-64ts,highs-1.12.0,times-etimeseu-france-elec+heat-single_stage -times-etimeseu-france-elec+heat-single_stage,1-64ts,scip,10.0.0,2025.0,ok,optimal,0.7398963470041053,304.608,48230.353175100594,,,0.642762,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:37:33.269752,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-single_stage-1-64ts,scip-10.0.0,times-etimeseu-france-elec+heat-single_stage -temoa-utopia,1-6ts,gurobi,13.0.0,2025.0,ok,optimal,0.019326000008732,176.564,36535.63125749814,,,0.0062432289123535,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:37:34.820984,c4-standard-2,us-west3-a,48cfc10,temoa-utopia-1-6ts,gurobi-13.0.0,temoa-utopia -temoa-utopia,1-6ts,highs-hipo,1.12.0-hipo,2025.0,warning,Unknown,0.099804113007849,163.892,36535.631258,,,0.099804113007849,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:37:35.585736,c4-standard-2,us-west3-a,48cfc10,temoa-utopia-1-6ts,highs-hipo-1.12.0-hipo,temoa-utopia -temoa-utopia,1-6ts,highs-ipx,1.12.0-hipo,2025.0,warning,Unknown,0.043210274001467,163.568,36535.631257,,,0.043210274001467,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:37:36.404562,c4-standard-2,us-west3-a,48cfc10,temoa-utopia-1-6ts,highs-ipx-1.12.0-hipo,temoa-utopia -temoa-utopia,1-6ts,highs,1.12.0,2025.0,ok,optimal,0.020041352006956,170.752,36535.63125749814,,,0.0073788166046142,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:37:37.160552,c4-standard-2,us-west3-a,48cfc10,temoa-utopia-1-6ts,highs-1.12.0,temoa-utopia -temoa-utopia,1-6ts,scip,10.0.0,2025.0,ok,optimal,0.0295759909931803,186.64,36535.63125749816,,,0.0169,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:37:37.908083,c4-standard-2,us-west3-a,48cfc10,temoa-utopia-1-6ts,scip-10.0.0,temoa-utopia -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,137.444,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-15 17:30:46.707090,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314 -genx-10_IEEE_9_bus_DC_OPF,9-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,502.056,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-15 18:34:30.323600,c4-standard-2,europe-west3-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-9-1h,glpk-5.0,genx-10_IEEE_9_bus_DC_OPF -SWITCH-rps-simple,3-6ts,glpk,5.0,2020.0,ER,,,124.86,,,,,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-15 19:38:14.687093,c4-standard-2,europe-west3-b,48cfc10,SWITCH-rps-simple-3-6ts,glpk-5.0,SWITCH-rps-simple -OEMOF-offset-diesel-genset-nonconvex-investment,1-8760ts,glpk,5.0,2020.0,TO,Timeout,3600.0,122.756,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-15 19:38:15.205874,c4-standard-2,europe-west3-b,48cfc10,OEMOF-offset-diesel-genset-nonconvex-investment-1-8760ts,glpk-5.0,OEMOF-offset-diesel-genset-nonconvex-investment -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,157.12,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-15 20:42:00.056986,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29 -genx-2_three_zones_w_electrolyzer-no_uc,3-1h,glpk,5.0,2020.0,ok,optimal,2855.4801665820014,316.696,19613.22288,,,,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-15 21:45:43.356360,c4-standard-2,europe-west3-b,48cfc10,genx-2_three_zones_w_electrolyzer-no_uc-3-1h,glpk-5.0,genx-2_three_zones_w_electrolyzer-no_uc -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314,73-1h,gurobi,10.0.0,2022.0,TO,Timeout,3600.0,583.628,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-15 22:34:01.985663,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314,73-1h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1210.12,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-15 23:37:44.918068,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314,73-1h,scip,8.0.3,2022.0,TO,Timeout,3600.0,1404.316,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 00:41:26.507924,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314 -genx-10_IEEE_9_bus_DC_OPF,9-1h,gurobi,10.0.0,2022.0,ok,optimal,45.21040815100059,1775.696,1151700.2005400015,,,41.483410120010376,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 01:45:09.050462,c4-standard-2,europe-west3-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-9-1h,gurobi-10.0.0,genx-10_IEEE_9_bus_DC_OPF -genx-10_IEEE_9_bus_DC_OPF,9-1h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,3628.54,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 01:46:00.435542,c4-standard-2,europe-west3-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-9-1h,highs-1.5.0.dev0,genx-10_IEEE_9_bus_DC_OPF -genx-10_IEEE_9_bus_DC_OPF,9-1h,scip,8.0.3,2022.0,ok,optimal,2416.6902964559995,4400.28,1151700.20054,,,2408.835828,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 02:49:42.157581,c4-standard-2,europe-west3-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-9-1h,scip-8.0.3,genx-10_IEEE_9_bus_DC_OPF -SWITCH-rps-simple,3-6ts,gurobi,10.0.0,2022.0,ok,optimal,0.1603048730030423,158.888,140343019.69266728,,,0.0049619674682617,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 03:30:07.112309,c4-standard-2,europe-west3-b,48cfc10,SWITCH-rps-simple-3-6ts,gurobi-10.0.0,SWITCH-rps-simple -SWITCH-rps-simple,3-6ts,highs,1.5.0.dev0,2022.0,ok,optimal,0.0097770159991341,147.82,140343019.69266728,,,0.0031895637512207,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 03:30:07.984714,c4-standard-2,europe-west3-b,48cfc10,SWITCH-rps-simple-3-6ts,highs-1.5.0.dev0,SWITCH-rps-simple -SWITCH-rps-simple,3-6ts,scip,8.0.3,2022.0,ok,optimal,0.0197045460008666,161.716,140343019.69266728,,,0.011368,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 03:30:08.613520,c4-standard-2,europe-west3-b,48cfc10,SWITCH-rps-simple-3-6ts,scip-8.0.3,SWITCH-rps-simple -OEMOF-offset-diesel-genset-nonconvex-investment,1-8760ts,gurobi,10.0.0,2022.0,ok,optimal,61.09613705899392,181.78,623.7156027544579,,,61.07941603660584,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 03:30:09.259786,c4-standard-2,europe-west3-b,48cfc10,OEMOF-offset-diesel-genset-nonconvex-investment-1-8760ts,gurobi-10.0.0,OEMOF-offset-diesel-genset-nonconvex-investment -OEMOF-offset-diesel-genset-nonconvex-investment,1-8760ts,highs,1.5.0.dev0,2022.0,ok,optimal,541.1492963530036,221.832,623.7528509370126,,,541.1325507164001,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 03:31:11.005898,c4-standard-2,europe-west3-b,48cfc10,OEMOF-offset-diesel-genset-nonconvex-investment-1-8760ts,highs-1.5.0.dev0,OEMOF-offset-diesel-genset-nonconvex-investment -OEMOF-offset-diesel-genset-nonconvex-investment,1-8760ts,scip,8.0.3,2022.0,ok,optimal,383.9262475060023,352.696,623.7156027544592,,,383.909586,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 03:40:12.802844,c4-standard-2,europe-west3-b,48cfc10,OEMOF-offset-diesel-genset-nonconvex-investment-1-8760ts,scip-8.0.3,OEMOF-offset-diesel-genset-nonconvex-investment -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29,73-1h,gurobi,10.0.0,2022.0,ok,optimal,53.12678073799907,272.136,1047440.6488318836,,,52.83984518051148,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 03:50:18.928044,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29,73-1h,highs,1.5.0.dev0,2022.0,ok,optimal,381.73856493600033,579.36,1047440.6488315046,,,381.37037467956543,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 03:51:13.021573,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29,73-1h,scip,8.0.3,2022.0,ok,optimal,734.8496810889992,1064.816,1047440.6488322646,,,734.621999,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 03:57:35.716940,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29 -genx-2_three_zones_w_electrolyzer-no_uc,3-1h,gurobi,10.0.0,2022.0,ok,optimal,131.5209071520003,575.308,19613.222882728605,,,123.78925704956056,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 04:09:51.594365,c4-standard-2,europe-west3-b,48cfc10,genx-2_three_zones_w_electrolyzer-no_uc-3-1h,gurobi-10.0.0,genx-2_three_zones_w_electrolyzer-no_uc -genx-2_three_zones_w_electrolyzer-no_uc,3-1h,highs,1.5.0.dev0,2022.0,ok,optimal,145.28865102800046,631.168,19613.22287909236,,,143.98191475868225,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 04:12:04.828172,c4-standard-2,europe-west3-b,48cfc10,genx-2_three_zones_w_electrolyzer-no_uc-3-1h,highs-1.5.0.dev0,genx-2_three_zones_w_electrolyzer-no_uc -genx-2_three_zones_w_electrolyzer-no_uc,3-1h,scip,8.0.3,2022.0,ok,optimal,242.3670187520038,1415.756,19613.222879092045,,,241.2271,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 04:14:31.879913,c4-standard-2,europe-west3-b,48cfc10,genx-2_three_zones_w_electrolyzer-no_uc-3-1h,scip-8.0.3,genx-2_three_zones_w_electrolyzer-no_uc -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314,73-1h,gurobi,11.0.0,2023.0,TO,Timeout,3600.0,589.228,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 04:22:06.116144,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314,73-1h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,1201.916,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 05:25:48.512291,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314,73-1h,scip,8.1.0,2023.0,TO,Timeout,3600.0,1415.884,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 06:29:27.770379,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314,73-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,168.24,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 07:33:08.932314,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314 -genx-10_IEEE_9_bus_DC_OPF,9-1h,gurobi,11.0.0,2023.0,ok,optimal,27.875404286001867,1965.128,1151700.20054,,,24.88855004310608,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 08:36:49.707443,c4-standard-2,europe-west3-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-9-1h,gurobi-11.0.0,genx-10_IEEE_9_bus_DC_OPF -genx-10_IEEE_9_bus_DC_OPF,9-1h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,3902.396,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 08:37:21.744856,c4-standard-2,europe-west3-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-9-1h,highs-1.6.0.dev0,genx-10_IEEE_9_bus_DC_OPF -genx-10_IEEE_9_bus_DC_OPF,9-1h,scip,8.1.0,2023.0,ok,optimal,2386.106619168997,4393.224,1151700.20054,,,2379.608765,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 09:41:03.683630,c4-standard-2,europe-west3-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-9-1h,scip-8.1.0,genx-10_IEEE_9_bus_DC_OPF -genx-10_IEEE_9_bus_DC_OPF,9-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,532.34,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 10:20:55.817383,c4-standard-2,europe-west3-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-9-1h,cbc-2.10.11,genx-10_IEEE_9_bus_DC_OPF -SWITCH-rps-simple,3-6ts,gurobi,11.0.0,2023.0,ok,optimal,0.2477234389953082,167.532,140343019.69266728,,,0.0434558391571044,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 11:24:36.449870,c4-standard-2,europe-west3-b,48cfc10,SWITCH-rps-simple-3-6ts,gurobi-11.0.0,SWITCH-rps-simple -SWITCH-rps-simple,3-6ts,highs,1.6.0.dev0,2023.0,ok,optimal,0.0207471090034232,157.612,140343019.69266728,,,0.0134744644165039,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 11:24:38.458800,c4-standard-2,europe-west3-b,48cfc10,SWITCH-rps-simple-3-6ts,highs-1.6.0.dev0,SWITCH-rps-simple -SWITCH-rps-simple,3-6ts,scip,8.1.0,2023.0,ok,optimal,0.0190218400020967,171.156,140343019.69266728,,,0.0112299999999999,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 11:24:39.222807,c4-standard-2,europe-west3-b,48cfc10,SWITCH-rps-simple-3-6ts,scip-8.1.0,SWITCH-rps-simple -SWITCH-rps-simple,3-6ts,cbc,2.10.11,2023.0,ok,optimal,0.0843548939956235,156.024,140343019.69266725,,,0.03,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 11:24:39.986930,c4-standard-2,europe-west3-b,48cfc10,SWITCH-rps-simple-3-6ts,cbc-2.10.11,SWITCH-rps-simple -OEMOF-offset-diesel-genset-nonconvex-investment,1-8760ts,gurobi,11.0.0,2023.0,ok,optimal,64.68455065699527,190.248,623.7156027544564,,,64.667729139328,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 11:24:40.808131,c4-standard-2,europe-west3-b,48cfc10,OEMOF-offset-diesel-genset-nonconvex-investment-1-8760ts,gurobi-11.0.0,OEMOF-offset-diesel-genset-nonconvex-investment -OEMOF-offset-diesel-genset-nonconvex-investment,1-8760ts,highs,1.6.0.dev0,2023.0,ok,optimal,549.3815304210002,237.604,623.7528509370126,,,549.3663609027863,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 11:25:46.259505,c4-standard-2,europe-west3-b,48cfc10,OEMOF-offset-diesel-genset-nonconvex-investment-1-8760ts,highs-1.6.0.dev0,OEMOF-offset-diesel-genset-nonconvex-investment -OEMOF-offset-diesel-genset-nonconvex-investment,1-8760ts,scip,8.1.0,2023.0,ok,optimal,384.3680740459968,361.5,623.7156027544592,,,384.352054,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 11:34:56.402204,c4-standard-2,europe-west3-b,48cfc10,OEMOF-offset-diesel-genset-nonconvex-investment-1-8760ts,scip-8.1.0,OEMOF-offset-diesel-genset-nonconvex-investment -OEMOF-offset-diesel-genset-nonconvex-investment,1-8760ts,cbc,2.10.11,2023.0,TO,Timeout,3600.0,154.372,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 11:41:21.543474,c4-standard-2,europe-west3-b,48cfc10,OEMOF-offset-diesel-genset-nonconvex-investment-1-8760ts,cbc-2.10.11,OEMOF-offset-diesel-genset-nonconvex-investment -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29,73-1h,gurobi,11.0.0,2023.0,ok,optimal,48.97322107899527,274.712,1047440.6488344624,,,48.56974792480469,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 12:45:02.080410,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29,73-1h,highs,1.6.0.dev0,2023.0,ok,optimal,372.7516721790016,601.328,1047440.6488315046,,,372.5222368240357,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 12:45:52.009338,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29,73-1h,scip,8.1.0,2023.0,ok,optimal,733.7014228820044,1073.068,1047440.6488322646,,,733.500131,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 12:52:05.691901,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29,73-1h,cbc,2.10.11,2023.0,ok,optimal,906.9759035379976,333.412,1047440.64883185,,,906.78,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 13:04:20.427457,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29 -genx-2_three_zones_w_electrolyzer-no_uc,3-1h,gurobi,11.0.0,2023.0,ok,optimal,128.8858295030077,568.508,19613.22287945323,,,127.52399921417236,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 13:19:28.339884,c4-standard-2,europe-west3-b,48cfc10,genx-2_three_zones_w_electrolyzer-no_uc-3-1h,gurobi-11.0.0,genx-2_three_zones_w_electrolyzer-no_uc -genx-2_three_zones_w_electrolyzer-no_uc,3-1h,highs,1.6.0.dev0,2023.0,ok,optimal,141.60602819699852,643.936,19613.22287909236,,,140.50906205177307,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 13:21:38.844167,c4-standard-2,europe-west3-b,48cfc10,genx-2_three_zones_w_electrolyzer-no_uc-3-1h,highs-1.6.0.dev0,genx-2_three_zones_w_electrolyzer-no_uc -genx-2_three_zones_w_electrolyzer-no_uc,3-1h,scip,8.1.0,2023.0,ok,optimal,241.1392788880039,1413.344,19613.222879092045,,,240.18225,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 13:24:02.028878,c4-standard-2,europe-west3-b,48cfc10,genx-2_three_zones_w_electrolyzer-no_uc-3-1h,scip-8.1.0,genx-2_three_zones_w_electrolyzer-no_uc -genx-2_three_zones_w_electrolyzer-no_uc,3-1h,cbc,2.10.11,2023.0,ok,optimal,154.03275611100253,369.704,19613.22287684,,,,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 13:28:05.140156,c4-standard-2,europe-west3-b,48cfc10,genx-2_three_zones_w_electrolyzer-no_uc-3-1h,cbc-2.10.11,genx-2_three_zones_w_electrolyzer-no_uc -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314,73-1h,gurobi,12.0.0,2024.0,TO,Timeout,3600.0,557.556,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 13:31:19.297875,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314,73-1h,highs,1.9.0,2024.0,TO,Timeout,3600.0,1112.496,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 14:35:00.130727,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314,73-1h,scip,9.2.0,2024.0,TO,Timeout,3600.0,1396.284,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 15:38:40.954328,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314,73-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,150.884,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 16:42:22.165215,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314 -genx-10_IEEE_9_bus_DC_OPF,9-1h,gurobi,12.0.0,2024.0,ok,optimal,28.503911330000847,1956.624,1151700.2005396802,0.0,0.0,25.19941806793213,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 17:46:02.931076,c4-standard-2,europe-west3-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-9-1h,gurobi-12.0.0,genx-10_IEEE_9_bus_DC_OPF -genx-10_IEEE_9_bus_DC_OPF,9-1h,highs,1.9.0,2024.0,TO,Timeout,3600.0,3956.692,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 17:46:38.666729,c4-standard-2,europe-west3-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-9-1h,highs-1.9.0,genx-10_IEEE_9_bus_DC_OPF -genx-10_IEEE_9_bus_DC_OPF,9-1h,scip,9.2.0,2024.0,ok,optimal,2397.2538860679924,4408.264,1151700.20054,0.0,0.0,2390.719136,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 18:50:20.485589,c4-standard-2,europe-west3-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-9-1h,scip-9.2.0,genx-10_IEEE_9_bus_DC_OPF -genx-10_IEEE_9_bus_DC_OPF,9-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,515.96,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 19:30:27.257469,c4-standard-2,europe-west3-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-9-1h,cbc-2.10.12,genx-10_IEEE_9_bus_DC_OPF -SWITCH-rps-simple,3-6ts,gurobi,12.0.0,2024.0,ok,optimal,0.2749276810063747,152.48,140343019.69266728,0.0,0.0,0.0438008308410644,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 20:34:09.398642,c4-standard-2,europe-west3-b,48cfc10,SWITCH-rps-simple-3-6ts,gurobi-12.0.0,SWITCH-rps-simple -SWITCH-rps-simple,3-6ts,highs,1.9.0,2024.0,ok,optimal,0.0235505500022554,141.904,140343019.69266728,0.0,0.0,0.0159456729888916,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 20:34:10.717987,c4-standard-2,europe-west3-b,48cfc10,SWITCH-rps-simple-3-6ts,highs-1.9.0,SWITCH-rps-simple -SWITCH-rps-simple,3-6ts,scip,9.2.0,2024.0,ok,optimal,0.1094271729962201,155.18,140343019.69266728,0.0,0.0,0.02291,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 20:34:11.270368,c4-standard-2,europe-west3-b,48cfc10,SWITCH-rps-simple-3-6ts,scip-9.2.0,SWITCH-rps-simple -SWITCH-rps-simple,3-6ts,cbc,2.10.12,2024.0,ok,optimal,0.0768713020079303,140.956,140343019.69266725,0.0,,0.03,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 20:34:11.904703,c4-standard-2,europe-west3-b,48cfc10,SWITCH-rps-simple-3-6ts,cbc-2.10.12,SWITCH-rps-simple -OEMOF-offset-diesel-genset-nonconvex-investment,1-8760ts,gurobi,12.0.0,2024.0,ok,optimal,62.04532308700436,178.264,623.7156027544579,0.0,9.91485594407914e-05,62.029268980026245,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 20:34:12.506947,c4-standard-2,europe-west3-b,48cfc10,OEMOF-offset-diesel-genset-nonconvex-investment-1-8760ts,gurobi-12.0.0,OEMOF-offset-diesel-genset-nonconvex-investment -OEMOF-offset-diesel-genset-nonconvex-investment,1-8760ts,highs,1.9.0,2024.0,ok,optimal,875.7681011670065,243.6,623.7156027541764,0.0,9.995073018794184e-05,875.7505078315735,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 20:35:15.098178,c4-standard-2,europe-west3-b,48cfc10,OEMOF-offset-diesel-genset-nonconvex-investment-1-8760ts,highs-1.9.0,OEMOF-offset-diesel-genset-nonconvex-investment -OEMOF-offset-diesel-genset-nonconvex-investment,1-8760ts,scip,9.2.0,2024.0,ok,optimal,382.1992126679979,343.668,623.7156027544592,1.5178267952823734e-15,0.0,382.182853,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 20:49:51.392822,c4-standard-2,europe-west3-b,48cfc10,OEMOF-offset-diesel-genset-nonconvex-investment-1-8760ts,scip-9.2.0,OEMOF-offset-diesel-genset-nonconvex-investment -OEMOF-offset-diesel-genset-nonconvex-investment,1-8760ts,cbc,2.10.12,2024.0,TO,Timeout,3600.0,136.568,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 20:56:14.130665,c4-standard-2,europe-west3-b,48cfc10,OEMOF-offset-diesel-genset-nonconvex-investment-1-8760ts,cbc-2.10.12,OEMOF-offset-diesel-genset-nonconvex-investment -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29,73-1h,gurobi,12.0.0,2024.0,ok,optimal,36.12526781500492,253.764,1047440.648820426,0.0,8.298764806096229e-05,35.677021980285645,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 21:59:55.675913,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29,73-1h,highs,1.9.0,2024.0,ok,optimal,438.1795857609977,574.04,1047440.6488319138,1.1102230246251563e-16,9.925005524212052e-05,437.76307344436646,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 22:00:32.724370,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29,73-1h,scip,9.2.0,2024.0,ok,optimal,729.0981146979902,1057.004,1047440.6488322646,0.0,0.0,728.897086,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 22:07:51.821979,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29,73-1h,cbc,2.10.12,2024.0,ok,optimal,899.4947056949895,330.104,1047440.64883185,0.0,,898.94,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 22:20:01.885450,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29 -genx-2_three_zones_w_electrolyzer-no_uc,3-1h,gurobi,12.0.0,2024.0,ok,optimal,105.7669694119977,559.388,19613.222881754195,,,104.43210005760191,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 22:35:02.270950,c4-standard-2,europe-west3-b,48cfc10,genx-2_three_zones_w_electrolyzer-no_uc-3-1h,gurobi-12.0.0,genx-2_three_zones_w_electrolyzer-no_uc -genx-2_three_zones_w_electrolyzer-no_uc,3-1h,highs,1.9.0,2024.0,ok,optimal,143.61127225900418,635.14,19613.22287909236,,,142.22199630737305,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 22:36:50.216512,c4-standard-2,europe-west3-b,48cfc10,genx-2_three_zones_w_electrolyzer-no_uc-3-1h,highs-1.9.0,genx-2_three_zones_w_electrolyzer-no_uc -genx-2_three_zones_w_electrolyzer-no_uc,3-1h,scip,9.2.0,2024.0,ok,optimal,240.4312716669956,1398.788,19613.222879092045,,,239.481924,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 22:39:16.111327,c4-standard-2,europe-west3-b,48cfc10,genx-2_three_zones_w_electrolyzer-no_uc-3-1h,scip-9.2.0,genx-2_three_zones_w_electrolyzer-no_uc -genx-2_three_zones_w_electrolyzer-no_uc,3-1h,cbc,2.10.12,2024.0,ok,optimal,154.96652103700035,397.9,19613.22287684,,,,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 22:43:19.060858,c4-standard-2,europe-west3-b,48cfc10,genx-2_three_zones_w_electrolyzer-no_uc-3-1h,cbc-2.10.12,genx-2_three_zones_w_electrolyzer-no_uc -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314,73-1h,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,572.096,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 22:46:30.963193,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314,73-1h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1213.408,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 23:50:10.787976,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314,73-1h,scip,10.0.0,2025.0,TO,Timeout,3600.0,1423.924,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-17 00:53:49.687243,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314 -genx-10_IEEE_9_bus_DC_OPF,9-1h,gurobi,13.0.0,2025.0,ok,optimal,42.431953117004014,1996.02,1151700.2005397468,0.0,0.0,39.19697999954224,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-17 01:57:28.584514,c4-standard-2,europe-west3-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-9-1h,gurobi-13.0.0,genx-10_IEEE_9_bus_DC_OPF -genx-10_IEEE_9_bus_DC_OPF,9-1h,highs,1.12.0,2025.0,TO,Timeout,3600.0,2718.264,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-17 01:58:16.197636,c4-standard-2,europe-west3-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-9-1h,highs-1.12.0,genx-10_IEEE_9_bus_DC_OPF -genx-10_IEEE_9_bus_DC_OPF,9-1h,scip,10.0.0,2025.0,ok,optimal,2407.9490702969924,4411.648,1151700.20054,0.0,0.0,2400.890102,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-17 03:01:55.733046,c4-standard-2,europe-west3-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-9-1h,scip-10.0.0,genx-10_IEEE_9_bus_DC_OPF -SWITCH-rps-simple,3-6ts,gurobi,13.0.0,2025.0,ok,optimal,0.1588529270084109,181.856,140343019.69266728,0.0,0.0,0.0047512054443359,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-17 03:42:10.772307,c4-standard-2,europe-west3-b,48cfc10,SWITCH-rps-simple-3-6ts,gurobi-13.0.0,SWITCH-rps-simple -SWITCH-rps-simple,3-6ts,highs,1.12.0,2025.0,ok,optimal,0.0165572489931946,169.592,140343019.69266728,0.0,0.0,0.0068216323852539,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-17 03:42:11.773146,c4-standard-2,europe-west3-b,48cfc10,SWITCH-rps-simple-3-6ts,highs-1.12.0,SWITCH-rps-simple -SWITCH-rps-simple,3-6ts,scip,10.0.0,2025.0,ok,optimal,0.0200558079959591,183.22,140343019.69266728,0.0,0.0,0.011587,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-17 03:42:12.547527,c4-standard-2,europe-west3-b,48cfc10,SWITCH-rps-simple-3-6ts,scip-10.0.0,SWITCH-rps-simple -OEMOF-offset-diesel-genset-nonconvex-investment,1-8760ts,gurobi,13.0.0,2025.0,ok,optimal,39.20460666199506,207.276,623.7156027544577,0.0,9.6837529812578e-05,39.18841910362244,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-17 03:42:13.326108,c4-standard-2,europe-west3-b,48cfc10,OEMOF-offset-diesel-genset-nonconvex-investment-1-8760ts,gurobi-13.0.0,OEMOF-offset-diesel-genset-nonconvex-investment -OEMOF-offset-diesel-genset-nonconvex-investment,1-8760ts,highs,1.12.0,2025.0,ok,optimal,733.5547720959876,270.732,623.7156027544571,2.97280683887021e-13,9.988314419856584e-05,733.5390636920929,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-17 03:42:53.314032,c4-standard-2,europe-west3-b,48cfc10,OEMOF-offset-diesel-genset-nonconvex-investment-1-8760ts,highs-1.12.0,OEMOF-offset-diesel-genset-nonconvex-investment -OEMOF-offset-diesel-genset-nonconvex-investment,1-8760ts,scip,10.0.0,2025.0,ok,optimal,381.4808397230081,372.132,623.7156027544592,1.5178267952823734e-15,0.0,381.462527,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-17 03:55:07.633163,c4-standard-2,europe-west3-b,48cfc10,OEMOF-offset-diesel-genset-nonconvex-investment-1-8760ts,scip-10.0.0,OEMOF-offset-diesel-genset-nonconvex-investment -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29,73-1h,gurobi,13.0.0,2025.0,ok,optimal,67.53143552700931,320.552,1047440.648400986,0.0,6.278008665832278e-05,67.23491287231445,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-17 04:05:11.567002,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29,73-1h,highs,1.12.0,2025.0,ok,optimal,399.302548275009,608.284,1047440.648831672,1.5020248845374436e-12,9.88503748362566e-05,399.0516555309296,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-17 04:06:20.105786,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29,73-1h,scip,10.0.0,2025.0,ok,optimal,728.2866948709998,1083.804,1047440.6488322646,0.0,0.0,728.078024,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-17 04:13:00.400316,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29 -genx-2_three_zones_w_electrolyzer-no_uc,3-1h,gurobi,13.0.0,2025.0,ok,optimal,101.89560621099372,590.808,19613.22288160002,,,100.62870502471924,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-17 04:25:09.761908,c4-standard-2,europe-west3-b,48cfc10,genx-2_three_zones_w_electrolyzer-no_uc-3-1h,gurobi-13.0.0,genx-2_three_zones_w_electrolyzer-no_uc -genx-2_three_zones_w_electrolyzer-no_uc,3-1h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,118.11894473699796,410.7,19613.222879,,,118.11894473699796,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-17 04:26:53.450181,c4-standard-2,europe-west3-b,48cfc10,genx-2_three_zones_w_electrolyzer-no_uc-3-1h,highs-hipo-1.12.0-hipo,genx-2_three_zones_w_electrolyzer-no_uc -genx-2_three_zones_w_electrolyzer-no_uc,3-1h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,172.4892202379997,235.44,19613.22288,,,172.4892202379997,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-17 04:28:52.326908,c4-standard-2,europe-west3-b,48cfc10,genx-2_three_zones_w_electrolyzer-no_uc-3-1h,highs-ipx-1.12.0-hipo,genx-2_three_zones_w_electrolyzer-no_uc -genx-2_three_zones_w_electrolyzer-no_uc,3-1h,highs,1.12.0,2025.0,ok,optimal,141.40889186399,665.576,19613.22287909139,,,140.24873566627502,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-17 04:31:45.567629,c4-standard-2,europe-west3-b,48cfc10,genx-2_three_zones_w_electrolyzer-no_uc-3-1h,highs-1.12.0,genx-2_three_zones_w_electrolyzer-no_uc -genx-2_three_zones_w_electrolyzer-no_uc,3-1h,scip,10.0.0,2025.0,ok,optimal,240.2650477049901,1431.968,19613.222879092045,,,239.261351,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-17 04:34:08.694842,c4-standard-2,europe-west3-b,48cfc10,genx-2_three_zones_w_electrolyzer-no_uc-3-1h,scip-10.0.0,genx-2_three_zones_w_electrolyzer-no_uc -genx-1_three_zones,3-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,191.18,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-15 17:30:57.841744,c4-standard-2,europe-west9-b,48cfc10,genx-1_three_zones-3-1h,glpk-5.0,genx-1_three_zones -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,131.576,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-15 18:34:01.476482,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332 -OEMOF-v1-invest-optimize-all-technologies,1-8760ts,glpk,5.0,2020.0,ER,,,157.06,,,,,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-15 19:37:04.684709,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v1-invest-optimize-all-technologies-1-8760ts,glpk-5.0,OEMOF-v1-invest-optimize-all-technologies -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332,73-1h,glpk,5.0,2020.0,warning,infeasible_or_unbounded,0.5773473460003515,157.84,,,,,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-15 19:37:31.587546,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,127.696,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-15 19:37:32.579515,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314 -pypsa-power+ely+battery-ucgas,1-1h,glpk,5.0,2020.0,ok,optimal,157.38891903999863,300.992,79990720210.0,,,,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-15 20:40:36.076704,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely+battery-ucgas-1-1h,glpk-5.0,pypsa-power+ely+battery-ucgas -pypsa-power+ely-co2,1-1h,glpk,5.0,2020.0,ok,optimal,97.941517285999,245.548,84667526620.0,,,,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-15 20:43:13.883802,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-1-1h,glpk-5.0,pypsa-power+ely-co2 -genx-10_IEEE_9_bus_DC_OPF-no_uc,9-1h,glpk,5.0,2020.0,warning,unknown,0.0584553610005968,237.884,,,,,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-15 20:44:52.248521,c4-standard-2,europe-west9-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-no_uc-9-1h,glpk-5.0,genx-10_IEEE_9_bus_DC_OPF-no_uc -genx-1_three_zones,3-1h,gurobi,10.0.0,2022.0,TO,Timeout,3600.0,1443.96,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-15 20:46:31.704147,c4-standard-2,europe-west9-b,48cfc10,genx-1_three_zones-3-1h,gurobi-10.0.0,genx-1_three_zones -genx-1_three_zones,3-1h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,3200.696,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-15 21:49:35.395923,c4-standard-2,europe-west9-b,48cfc10,genx-1_three_zones-3-1h,highs-1.5.0.dev0,genx-1_three_zones -genx-1_three_zones,3-1h,scip,8.0.3,2022.0,TO,Timeout,3600.0,1560.032,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-15 22:52:39.002849,c4-standard-2,europe-west9-b,48cfc10,genx-1_three_zones-3-1h,scip-8.0.3,genx-1_three_zones -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332,73-1h,gurobi,10.0.0,2022.0,ok,optimal,403.0889892369996,368.796,880489.4499393078,,,402.8446159362793,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-15 23:55:42.279693,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332,73-1h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1353.368,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 00:02:25.977581,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332,73-1h,scip,8.0.3,2022.0,TO,Timeout,3600.0,1999.544,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 01:05:29.357644,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332 -OEMOF-v1-invest-optimize-all-technologies,1-8760ts,gurobi,10.0.0,2022.0,ok,optimal,0.884713171999465,385.876,112686100.33285016,,,0.1635680198669433,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 02:08:32.915760,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v1-invest-optimize-all-technologies-1-8760ts,gurobi-10.0.0,OEMOF-v1-invest-optimize-all-technologies -OEMOF-v1-invest-optimize-all-technologies,1-8760ts,highs,1.5.0.dev0,2022.0,ok,optimal,1.4612636290003138,393.56,112686100.3328502,,,0.8556711673736572,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 02:08:34.796442,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v1-invest-optimize-all-technologies-1-8760ts,highs-1.5.0.dev0,OEMOF-v1-invest-optimize-all-technologies -OEMOF-v1-invest-optimize-all-technologies,1-8760ts,scip,8.0.3,2022.0,ok,optimal,7.373477321998507,750.4,112686100.33285011,,,6.812462,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 02:08:37.275036,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v1-invest-optimize-all-technologies-1-8760ts,scip-8.0.3,OEMOF-v1-invest-optimize-all-technologies -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332,73-1h,gurobi,10.0.0,2022.0,ok,optimal,72.42618821200085,300.22,893670.8875380402,,,72.30395293235779,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 02:08:45.800041,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332,73-1h,highs,1.5.0.dev0,2022.0,ok,optimal,1776.877761920001,1011.084,893670.8881064572,,,1776.559519290924,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 02:09:59.001355,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332,73-1h,scip,8.0.3,2022.0,ok,optimal,1367.807236683002,1201.964,893670.8877959596,,,1367.61943,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 02:39:36.694112,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314,73-1h,gurobi,10.0.0,2022.0,ok,optimal,16.138399985000433,205.028,289544.032677293,,,15.92957592010498,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 03:02:25.341503,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314,73-1h,highs,1.5.0.dev0,2022.0,ok,optimal,117.02644629499991,294.536,289544.0326772929,,,116.9602916240692,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 03:02:42.047016,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314,73-1h,scip,8.0.3,2022.0,ok,optimal,354.67059730800247,540.976,289544.0326772926,,,354.587815,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 03:04:39.653605,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314 -pypsa-power+ely+battery-ucgas,1-1h,gurobi,10.0.0,2022.0,ok,optimal,16.377129344000423,531.42,79990720209.56836,,,12.11633014678955,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 03:13:37.977978,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely+battery-ucgas-1-1h,gurobi-10.0.0,pypsa-power+ely+battery-ucgas -pypsa-power+ely+battery-ucgas,1-1h,highs,1.5.0.dev0,2022.0,ok,optimal,106.22243613399768,699.476,79990720209.56844,,,105.27853870391846,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 03:13:55.679478,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely+battery-ucgas-1-1h,highs-1.5.0.dev0,pypsa-power+ely+battery-ucgas -pypsa-power+ely+battery-ucgas,1-1h,scip,8.0.3,2022.0,ok,optimal,172.94205273399712,1189.268,79990720209.56842,,,171.975172,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 03:15:43.234310,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely+battery-ucgas-1-1h,scip-8.0.3,pypsa-power+ely+battery-ucgas -pypsa-power+ely-co2,1-1h,gurobi,10.0.0,2022.0,ok,optimal,11.360021233005682,421.976,84667526618.3104,,,10.731858015060425,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 03:18:37.740689,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-1-1h,gurobi-10.0.0,pypsa-power+ely-co2 -pypsa-power+ely-co2,1-1h,highs,1.5.0.dev0,2022.0,ok,optimal,45.54925958200329,490.74,84667526618.30804,,,44.926294803619385,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 03:18:50.118595,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-1-1h,highs-1.5.0.dev0,pypsa-power+ely-co2 -pypsa-power+ely-co2,1-1h,scip,8.0.3,2022.0,ok,optimal,77.77000182899792,792.752,84667526618.30798,,,77.206214,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 03:19:36.664788,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-1-1h,scip-8.0.3,pypsa-power+ely-co2 -genx-10_IEEE_9_bus_DC_OPF-no_uc,9-1h,gurobi,10.0.0,2022.0,ok,optimal,20.51643137099745,2184.872,1149079.0505399832,,,15.506612062454224,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 03:20:55.586541,c4-standard-2,europe-west9-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-no_uc-9-1h,gurobi-10.0.0,genx-10_IEEE_9_bus_DC_OPF-no_uc -genx-10_IEEE_9_bus_DC_OPF-no_uc,9-1h,highs,1.5.0.dev0,2022.0,ok,optimal,19.627130149005097,2346.772,1150959.0505401818,,,13.428508758544922,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 03:21:21.865481,c4-standard-2,europe-west9-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-no_uc-9-1h,highs-1.5.0.dev0,genx-10_IEEE_9_bus_DC_OPF-no_uc -genx-10_IEEE_9_bus_DC_OPF-no_uc,9-1h,scip,8.0.3,2022.0,ER,,,259.096,,,,,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 03:21:47.573199,c4-standard-2,europe-west9-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-no_uc-9-1h,scip-8.0.3,genx-10_IEEE_9_bus_DC_OPF-no_uc -genx-1_three_zones,3-1h,gurobi,11.0.0,2023.0,TO,Timeout,3600.0,1501.668,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 03:24:40.226615,c4-standard-2,europe-west9-b,48cfc10,genx-1_three_zones-3-1h,gurobi-11.0.0,genx-1_three_zones -genx-1_three_zones,3-1h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,3300.752,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 04:27:43.053151,c4-standard-2,europe-west9-b,48cfc10,genx-1_three_zones-3-1h,highs-1.6.0.dev0,genx-1_three_zones -genx-1_three_zones,3-1h,scip,8.1.0,2023.0,TO,Timeout,3600.0,1565.776,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 05:30:46.312724,c4-standard-2,europe-west9-b,48cfc10,genx-1_three_zones-3-1h,scip-8.1.0,genx-1_three_zones -genx-1_three_zones,3-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,222.496,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 06:33:49.538709,c4-standard-2,europe-west9-b,48cfc10,genx-1_three_zones-3-1h,cbc-2.10.11,genx-1_three_zones -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332,73-1h,gurobi,11.0.0,2023.0,ok,optimal,312.699311618002,302.776,880489.4441008847,,,312.43585681915283,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 07:36:53.365398,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332,73-1h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,1268.512,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 07:42:06.752012,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332,73-1h,scip,8.1.0,2023.0,TO,Timeout,3600.0,2008.872,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 08:45:09.432558,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332,73-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,163.092,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 09:48:12.694544,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332 -OEMOF-v1-invest-optimize-all-technologies,1-8760ts,gurobi,11.0.0,2023.0,ok,optimal,0.8151780199987115,407.032,112686100.33285016,,,0.1569240093231201,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 10:51:15.585628,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v1-invest-optimize-all-technologies-1-8760ts,gurobi-11.0.0,OEMOF-v1-invest-optimize-all-technologies -OEMOF-v1-invest-optimize-all-technologies,1-8760ts,highs,1.6.0.dev0,2023.0,ok,optimal,1.4322082409998984,415.736,112686100.3328502,,,0.8329205513000488,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 10:51:17.486547,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v1-invest-optimize-all-technologies-1-8760ts,highs-1.6.0.dev0,OEMOF-v1-invest-optimize-all-technologies -OEMOF-v1-invest-optimize-all-technologies,1-8760ts,scip,8.1.0,2023.0,ok,optimal,7.304339809998055,771.512,112686100.33285011,,,6.830258,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 10:51:20.070244,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v1-invest-optimize-all-technologies-1-8760ts,scip-8.1.0,OEMOF-v1-invest-optimize-all-technologies -OEMOF-v1-invest-optimize-all-technologies,1-8760ts,cbc,2.10.11,2023.0,ok,optimal,1.697268620999239,286.744,112686100.33285016,,,,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 10:51:28.626759,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v1-invest-optimize-all-technologies-1-8760ts,cbc-2.10.11,OEMOF-v1-invest-optimize-all-technologies -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332,73-1h,gurobi,11.0.0,2023.0,ok,optimal,47.49872153099568,273.428,893670.8876215103,,,47.38699102401733,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 10:51:31.361867,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332,73-1h,highs,1.6.0.dev0,2023.0,ok,optimal,1739.3366743460065,1031.016,893670.8881064572,,,1739.1460914611816,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 10:52:19.637793,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332,73-1h,scip,8.1.0,2023.0,ok,optimal,1371.5240458349945,1211.74,893670.8877959596,,,1371.352533,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 11:21:19.767568,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332,73-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,188.636,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 11:44:12.126418,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314,73-1h,gurobi,11.0.0,2023.0,ok,optimal,12.31129656000121,213.12,289544.03267729306,,,12.132303953170776,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 12:47:15.632805,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314,73-1h,highs,1.6.0.dev0,2023.0,ok,optimal,113.86837956299132,308.736,289544.0326772929,,,113.82769203186037,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 12:47:28.608463,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314,73-1h,scip,8.1.0,2023.0,ok,optimal,356.4075213509932,554.008,289544.0326772926,,,356.348848,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 12:49:23.131293,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314,73-1h,cbc,2.10.11,2023.0,ok,optimal,2682.127300652006,173.272,289544.03267729,,,2682.07,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 12:55:20.218350,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314 -pypsa-power+ely+battery-ucgas,1-1h,gurobi,11.0.0,2023.0,ok,optimal,10.4984824580024,531.488,79990720209.56836,,,9.8346688747406,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 13:40:03.001714,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely+battery-ucgas-1-1h,gurobi-11.0.0,pypsa-power+ely+battery-ucgas -pypsa-power+ely+battery-ucgas,1-1h,highs,1.6.0.dev0,2023.0,ok,optimal,105.32571536299656,619.148,79990720209.56844,,,104.53244471549988,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 13:40:14.764887,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely+battery-ucgas-1-1h,highs-1.6.0.dev0,pypsa-power+ely+battery-ucgas -pypsa-power+ely+battery-ucgas,1-1h,scip,8.1.0,2023.0,ok,optimal,173.01109451599768,1186.308,79990720209.56842,,,172.178331,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 13:42:01.302622,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely+battery-ucgas-1-1h,scip-8.1.0,pypsa-power+ely+battery-ucgas -pypsa-power+ely+battery-ucgas,1-1h,cbc,2.10.11,2023.0,ok,optimal,313.547089633008,571.48,79990720209.56766,,,312.78,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 13:48:00.204438,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely+battery-ucgas-1-1h,cbc-2.10.11,pypsa-power+ely+battery-ucgas -pypsa-power+ely-co2,1-1h,gurobi,11.0.0,2023.0,ok,optimal,18.527397927013222,417.432,84667526618.31042,,,17.843631982803345,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 13:53:15.034840,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-1-1h,gurobi-11.0.0,pypsa-power+ely-co2 -pypsa-power+ely-co2,1-1h,highs,1.6.0.dev0,2023.0,ok,optimal,46.3102441910014,479.956,84667526618.30804,,,45.766902446746826,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 13:53:34.621798,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-1-1h,highs-1.6.0.dev0,pypsa-power+ely-co2 -pypsa-power+ely-co2,1-1h,scip,8.1.0,2023.0,ok,optimal,77.89125929999864,792.592,84667526618.30798,,,77.417794,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 13:54:21.966836,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-1-1h,scip-8.1.0,pypsa-power+ely-co2 -pypsa-power+ely-co2,1-1h,cbc,2.10.11,2023.0,ok,optimal,9.546422981002252,280.964,84667526618.31052,,,,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 13:55:41.043824,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-1-1h,cbc-2.10.11,pypsa-power+ely-co2 -genx-10_IEEE_9_bus_DC_OPF-no_uc,9-1h,gurobi,11.0.0,2023.0,ok,optimal,20.55242841799918,2125.752,1149079.0505399832,,,16.47263503074646,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 13:55:51.594811,c4-standard-2,europe-west9-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-no_uc-9-1h,gurobi-11.0.0,genx-10_IEEE_9_bus_DC_OPF-no_uc -genx-10_IEEE_9_bus_DC_OPF-no_uc,9-1h,highs,1.6.0.dev0,2023.0,ok,optimal,18.100229981995653,2333.996,1150959.0505401818,,,12.9433856010437,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 13:56:16.931221,c4-standard-2,europe-west9-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-no_uc-9-1h,highs-1.6.0.dev0,genx-10_IEEE_9_bus_DC_OPF-no_uc -genx-10_IEEE_9_bus_DC_OPF-no_uc,9-1h,scip,8.1.0,2023.0,ER,,,269.12,,,,,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 13:56:39.619140,c4-standard-2,europe-west9-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-no_uc-9-1h,scip-8.1.0,genx-10_IEEE_9_bus_DC_OPF-no_uc -genx-10_IEEE_9_bus_DC_OPF-no_uc,9-1h,cbc,2.10.11,2023.0,ok,optimal,105.42244433199812,1207.232,1149079.05053998,,,,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 13:56:40.360968,c4-standard-2,europe-west9-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-no_uc-9-1h,cbc-2.10.11,genx-10_IEEE_9_bus_DC_OPF-no_uc -genx-1_three_zones,3-1h,gurobi,12.0.0,2024.0,TO,Timeout,3600.0,1385.368,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 13:58:59.250793,c4-standard-2,europe-west9-b,48cfc10,genx-1_three_zones-3-1h,gurobi-12.0.0,genx-1_three_zones -genx-1_three_zones,3-1h,highs,1.9.0,2024.0,TO,Timeout,3600.0,3730.388,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 15:02:02.381585,c4-standard-2,europe-west9-b,48cfc10,genx-1_three_zones-3-1h,highs-1.9.0,genx-1_three_zones -genx-1_three_zones,3-1h,scip,9.2.0,2024.0,TO,Timeout,3600.0,1549.968,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 16:05:06.483124,c4-standard-2,europe-west9-b,48cfc10,genx-1_three_zones-3-1h,scip-9.2.0,genx-1_three_zones -genx-1_three_zones,3-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,206.016,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 17:08:10.257466,c4-standard-2,europe-west9-b,48cfc10,genx-1_three_zones-3-1h,cbc-2.10.12,genx-1_three_zones -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332,73-1h,gurobi,12.0.0,2024.0,ok,optimal,294.1651020349964,291.876,880489.449951099,0.0,9.987228946772084e-05,293.9081130027771,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 18:11:13.612912,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332,73-1h,highs,1.9.0,2024.0,TO,Timeout,3600.0,1122.636,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 18:16:08.362944,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332,73-1h,scip,9.2.0,2024.0,TO,Timeout,3600.0,1992.456,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 19:19:11.567388,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332,73-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,145.184,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 20:22:15.133620,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332 -OEMOF-v1-invest-optimize-all-technologies,1-8760ts,gurobi,12.0.0,2024.0,ok,optimal,1.0753272020083386,390.516,112686100.33285016,,,0.167557954788208,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 21:25:18.803153,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v1-invest-optimize-all-technologies-1-8760ts,gurobi-12.0.0,OEMOF-v1-invest-optimize-all-technologies -OEMOF-v1-invest-optimize-all-technologies,1-8760ts,highs,1.9.0,2024.0,ok,optimal,1.4921355499973288,375.532,112686100.3328502,,,0.8587534427642822,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 21:25:21.045172,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v1-invest-optimize-all-technologies-1-8760ts,highs-1.9.0,OEMOF-v1-invest-optimize-all-technologies -OEMOF-v1-invest-optimize-all-technologies,1-8760ts,scip,9.2.0,2024.0,ok,optimal,7.296760683995672,739.824,112686100.33285011,,,6.823654,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 21:25:23.744703,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v1-invest-optimize-all-technologies-1-8760ts,scip-9.2.0,OEMOF-v1-invest-optimize-all-technologies -OEMOF-v1-invest-optimize-all-technologies,1-8760ts,cbc,2.10.12,2024.0,ok,optimal,2.2556805100030037,311.116,112686100.33285016,,,,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 21:25:32.373296,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v1-invest-optimize-all-technologies-1-8760ts,cbc-2.10.12,OEMOF-v1-invest-optimize-all-technologies -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332,73-1h,gurobi,12.0.0,2024.0,ok,optimal,61.60900828399463,296.912,893670.8881071579,0.0,9.93164882519969e-05,61.49908494949341,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 21:25:35.806342,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332,73-1h,highs,1.9.0,2024.0,ok,optimal,1917.9896011170056,1123.8,893670.8881063311,5.213742476722494e-13,9.757993051460335e-05,1917.6649219989777,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 21:26:38.166045,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332,73-1h,scip,9.2.0,2024.0,ok,optimal,1370.0332582499975,1196.864,893670.8877959596,3.2696650054120375e-08,0.0,1369.865217,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 21:58:36.899409,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332,73-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,170.868,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 22:21:27.741858,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314,73-1h,gurobi,12.0.0,2024.0,ok,optimal,19.089915902004577,207.492,289544.032677293,0.0,4.0206431039345156e-16,18.918862104415894,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 23:24:31.429243,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314,73-1h,highs,1.9.0,2024.0,ok,optimal,98.11445500499394,260.884,289544.03267729253,1.2323505179289094e-13,7.659109459087911e-05,98.04238510131836,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 23:24:51.043835,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314,73-1h,scip,9.2.0,2024.0,ok,optimal,354.9330807380029,539.652,289544.0326772926,4.446406199981499e-15,7.616206480239003e-06,354.872714,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 23:26:29.657789,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314,73-1h,cbc,2.10.12,2024.0,ok,optimal,2664.219127583987,171.656,289544.03267729,0.0,0.0,2664.09,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 23:32:25.120849,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314 -pypsa-power+ely+battery-ucgas,1-1h,gurobi,12.0.0,2024.0,ok,optimal,12.837575539000682,518.036,79990720209.56836,0.0,7.248765642513133e-15,12.196474075317385,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 00:16:49.860578,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely+battery-ucgas-1-1h,gurobi-12.0.0,pypsa-power+ely+battery-ucgas -pypsa-power+ely+battery-ucgas,1-1h,highs,1.9.0,2024.0,ok,optimal,107.64485967099608,699.456,79990720209.56844,0.0,0.0,106.65358686447144,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 00:17:04.074843,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely+battery-ucgas-1-1h,highs-1.9.0,pypsa-power+ely+battery-ucgas -pypsa-power+ely+battery-ucgas,1-1h,scip,9.2.0,2024.0,ok,optimal,172.89815163600724,1173.792,79990720209.56842,0.0,0.0,172.075655,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 00:18:53.147255,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely+battery-ucgas-1-1h,scip-9.2.0,pypsa-power+ely+battery-ucgas -pypsa-power+ely+battery-ucgas,1-1h,cbc,2.10.12,2024.0,ok,optimal,313.26830912999867,571.648,79990720209.56766,0.0,,311.6,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 00:24:51.379617,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely+battery-ucgas-1-1h,cbc-2.10.12,pypsa-power+ely+battery-ucgas -pypsa-power+ely-co2,1-1h,gurobi,12.0.0,2024.0,ok,optimal,13.774793085991403,403.836,84667526618.31038,,,13.11122703552246,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 00:30:06.064462,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-1-1h,gurobi-12.0.0,pypsa-power+ely-co2 -pypsa-power+ely-co2,1-1h,highs,1.9.0,2024.0,ok,optimal,46.293246405999525,482.036,84667526618.30804,,,45.61420512199402,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 00:30:20.954050,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-1-1h,highs-1.9.0,pypsa-power+ely-co2 -pypsa-power+ely-co2,1-1h,scip,9.2.0,2024.0,ok,optimal,77.70444772200426,781.056,84667526618.30798,,,77.231666,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 00:31:08.348061,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-1-1h,scip-9.2.0,pypsa-power+ely-co2 -pypsa-power+ely-co2,1-1h,cbc,2.10.12,2024.0,ok,optimal,10.077526723005576,320.944,84667526618.31052,,,,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 00:32:27.330678,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-1-1h,cbc-2.10.12,pypsa-power+ely-co2 -genx-10_IEEE_9_bus_DC_OPF-no_uc,9-1h,gurobi,12.0.0,2024.0,ok,optimal,19.702748285999405,2113.18,1149079.0505399755,,,15.597351789474487,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 00:32:38.515206,c4-standard-2,europe-west9-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-no_uc-9-1h,gurobi-12.0.0,genx-10_IEEE_9_bus_DC_OPF-no_uc -genx-10_IEEE_9_bus_DC_OPF-no_uc,9-1h,highs,1.9.0,2024.0,ok,optimal,14.52329789000214,2293.88,1150959.0505401755,,,7.967008590698242,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 00:33:05.630278,c4-standard-2,europe-west9-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-no_uc-9-1h,highs-1.9.0,genx-10_IEEE_9_bus_DC_OPF-no_uc -genx-10_IEEE_9_bus_DC_OPF-no_uc,9-1h,scip,9.2.0,2024.0,ER,,,251.564,,,,,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 00:33:28.093429,c4-standard-2,europe-west9-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-no_uc-9-1h,scip-9.2.0,genx-10_IEEE_9_bus_DC_OPF-no_uc -genx-10_IEEE_9_bus_DC_OPF-no_uc,9-1h,cbc,2.10.12,2024.0,ok,optimal,110.43240963900462,1482.424,1149079.05053998,,,,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 00:33:28.636574,c4-standard-2,europe-west9-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-no_uc-9-1h,cbc-2.10.12,genx-10_IEEE_9_bus_DC_OPF-no_uc -genx-1_three_zones,3-1h,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,1476.968,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 00:35:56.434668,c4-standard-2,europe-west9-b,48cfc10,genx-1_three_zones-3-1h,gurobi-13.0.0,genx-1_three_zones -genx-1_three_zones,3-1h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1296.244,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 01:39:00.156962,c4-standard-2,europe-west9-b,48cfc10,genx-1_three_zones-3-1h,highs-1.12.0,genx-1_three_zones -genx-1_three_zones,3-1h,scip,10.0.0,2025.0,TO,Timeout,3600.0,1577.46,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 02:42:03.474814,c4-standard-2,europe-west9-b,48cfc10,genx-1_three_zones-3-1h,scip-10.0.0,genx-1_three_zones -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332,73-1h,gurobi,13.0.0,2025.0,ok,optimal,345.04361495199555,335.08,880489.4499591019,0.0,9.770523778746032e-05,341.60171914100647,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 03:45:07.021112,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332,73-1h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1720.484,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 03:50:52.780644,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332,73-1h,scip,10.0.0,2025.0,TO,Timeout,3600.0,2016.612,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 04:53:56.521976,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332 -OEMOF-v1-invest-optimize-all-technologies,1-8760ts,gurobi,13.0.0,2025.0,ok,optimal,0.7928334529860877,416.36,112686100.33285016,,,0.1752340793609619,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 05:57:00.549649,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v1-invest-optimize-all-technologies-1-8760ts,gurobi-13.0.0,OEMOF-v1-invest-optimize-all-technologies -OEMOF-v1-invest-optimize-all-technologies,1-8760ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,21.49607234200812,216.632,112686100.33,,,21.49607234200812,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 05:57:02.518518,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v1-invest-optimize-all-technologies-1-8760ts,highs-hipo-1.12.0-hipo,OEMOF-v1-invest-optimize-all-technologies -OEMOF-v1-invest-optimize-all-technologies,1-8760ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,3.779218383016996,169.504,112686100.39,,,3.779218383016996,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 05:57:24.642068,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v1-invest-optimize-all-technologies-1-8760ts,highs-ipx-1.12.0-hipo,OEMOF-v1-invest-optimize-all-technologies -OEMOF-v1-invest-optimize-all-technologies,1-8760ts,highs,1.12.0,2025.0,ok,optimal,1.5103549060004298,439.688,112686100.33285016,,,0.8570971488952637,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 05:57:29.061335,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v1-invest-optimize-all-technologies-1-8760ts,highs-1.12.0,OEMOF-v1-invest-optimize-all-technologies -OEMOF-v1-invest-optimize-all-technologies,1-8760ts,scip,10.0.0,2025.0,ok,optimal,7.361185982008465,781.96,112686100.33285011,,,6.858985,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 05:57:31.777071,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v1-invest-optimize-all-technologies-1-8760ts,scip-10.0.0,OEMOF-v1-invest-optimize-all-technologies -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332,73-1h,gurobi,13.0.0,2025.0,ok,optimal,75.9047764519928,332.672,893670.8881086225,0.0,8.719023339981052e-05,75.79419207572937,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 05:57:40.458953,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332,73-1h,highs,1.12.0,2025.0,ok,optimal,1312.4484538100078,1156.192,893670.8881054556,9.769962616701378e-15,9.746112240388094e-05,1312.246490240097,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 05:58:57.202949,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332,73-1h,scip,10.0.0,2025.0,ok,optimal,1370.62148798001,1220.816,893670.8877959596,3.2696650054120375e-08,0.0,1370.44565,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 06:20:50.469209,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314,73-1h,gurobi,13.0.0,2025.0,ok,optimal,19.06914137399872,238.752,289544.0326772941,0.0,0.0,18.907830953598022,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 06:43:41.964663,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314,73-1h,highs,1.12.0,2025.0,ok,optimal,158.50123603700197,400.872,289544.0326772928,8.881784197001252e-16,9.053114589943396e-05,158.45605301856995,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 06:44:01.719347,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314,73-1h,scip,10.0.0,2025.0,ok,optimal,356.06194986999617,562.42,289544.0326772926,4.446406199981499e-15,7.616206480239003e-06,355.997535,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 06:46:40.908498,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314 -pypsa-power+ely+battery-ucgas,1-1h,gurobi,13.0.0,2025.0,ok,optimal,13.253140123997582,542.772,79990720209.56836,0.0,7.248765642513133e-15,12.1266930103302,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 06:52:37.676005,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely+battery-ucgas-1-1h,gurobi-13.0.0,pypsa-power+ely+battery-ucgas -pypsa-power+ely+battery-ucgas,1-1h,highs,1.12.0,2025.0,ok,optimal,105.7531680809916,492.692,79990720209.56845,0.0,0.0,104.92529392242432,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 06:52:52.329665,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely+battery-ucgas-1-1h,highs-1.12.0,pypsa-power+ely+battery-ucgas -pypsa-power+ely+battery-ucgas,1-1h,scip,10.0.0,2025.0,ok,optimal,172.7771782919881,1199.256,79990720209.56842,0.0,0.0,171.915515,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 06:57:43.221621,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely+battery-ucgas-1-1h,scip-10.0.0,pypsa-power+ely+battery-ucgas -pypsa-power+ely-co2,1-1h,gurobi,13.0.0,2025.0,ok,optimal,13.721779068990145,431.444,84667526618.31038,,,12.981060981750488,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 07:00:37.667836,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-1-1h,gurobi-13.0.0,pypsa-power+ely-co2 -pypsa-power+ely-co2,1-1h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,18.31534054799704,222.312,84667526618.0,,,18.31534054799704,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 07:00:52.471268,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-1-1h,highs-hipo-1.12.0-hipo,pypsa-power+ely-co2 -pypsa-power+ely-co2,1-1h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,28.105258686991878,163.492,84667526618.0,,,28.105258686991878,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 07:01:11.437105,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-1-1h,highs-ipx-1.12.0-hipo,pypsa-power+ely-co2 -pypsa-power+ely-co2,1-1h,highs,1.12.0,2025.0,ok,optimal,45.50145749398507,500.792,84667526618.31046,,,44.94770646095276,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 07:01:40.176663,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-1-1h,highs-1.12.0,pypsa-power+ely-co2 -pypsa-power+ely-co2,1-1h,scip,10.0.0,2025.0,ok,optimal,77.55780171402148,804.08,84667526618.30798,,,77.063111,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 07:02:26.716430,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-1-1h,scip-10.0.0,pypsa-power+ely-co2 -genx-10_IEEE_9_bus_DC_OPF-no_uc,9-1h,gurobi,13.0.0,2025.0,ok,optimal,19.5794363009918,2117.976,1149079.0505399832,,,15.54720401763916,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 07:03:45.487362,c4-standard-2,europe-west9-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-no_uc-9-1h,gurobi-13.0.0,genx-10_IEEE_9_bus_DC_OPF-no_uc -genx-10_IEEE_9_bus_DC_OPF-no_uc,9-1h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,45.20414335600799,1049.936,1150959.0505,,,45.20414335600799,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 07:04:10.154036,c4-standard-2,europe-west9-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-no_uc-9-1h,highs-hipo-1.12.0-hipo,genx-10_IEEE_9_bus_DC_OPF-no_uc -genx-10_IEEE_9_bus_DC_OPF-no_uc,9-1h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,24.15740655499394,977.784,1150959.0505,,,24.15740655499394,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 07:04:55.987193,c4-standard-2,europe-west9-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-no_uc-9-1h,highs-ipx-1.12.0-hipo,genx-10_IEEE_9_bus_DC_OPF-no_uc -genx-10_IEEE_9_bus_DC_OPF-no_uc,9-1h,highs,1.12.0,2025.0,ok,optimal,13.416589825996198,2306.56,1150959.0505398668,,,7.969469308853149,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 07:05:20.779662,c4-standard-2,europe-west9-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-no_uc-9-1h,highs-1.12.0,genx-10_IEEE_9_bus_DC_OPF-no_uc -genx-10_IEEE_9_bus_DC_OPF-no_uc,9-1h,scip,10.0.0,2025.0,ER,,,279.128,,,,,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 07:05:39.153131,c4-standard-2,europe-west9-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-no_uc-9-1h,scip-10.0.0,genx-10_IEEE_9_bus_DC_OPF-no_uc -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,145.764,,,,3600.0,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-15 17:31:29.955020,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314 -pglib_opf_case2868,2868-NA,glpk,5.0,2020.0,TO,Timeout,3600.0,133.328,,,,3600.0,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-15 18:35:30.180858,c4-standard-2,europe-west3-a,48cfc10,pglib_opf_case2868-2868-NA,glpk-5.0,pglib_opf_case2868 -SWITCH-retrofits,3-6ts,glpk,5.0,2020.0,ER,,,125.58,,,,,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-15 19:39:32.896418,c4-standard-2,europe-west3-a,48cfc10,SWITCH-retrofits-3-6ts,glpk-5.0,SWITCH-retrofits -OEMOF-invest-optimize-all-technologies-using-mp-and-tsam,1-1920ts,glpk,5.0,2020.0,ER,,,147.628,,,,,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-15 19:39:33.463623,c4-standard-2,europe-west3-a,48cfc10,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam-1-1920ts,glpk-5.0,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam -tulipa-1_EU_investment_simple,28-4.3h,glpk,5.0,2020.0,ok,unknown,3026.9443333639992,656.596,3094030666.0,,,,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-15 19:39:39.281020,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-4.3h,glpk-5.0,tulipa-1_EU_investment_simple -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314,73-1h,glpk,5.0,2020.0,warning,infeasible_or_unbounded,0.0929176549998374,125.96,,,,,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-15 20:30:06.759812,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314 -pypsa-power+ely-mod,1-1h,glpk,5.0,2020.0,ok,unknown,91.13194271199971,229.952,31715129950.0,,,,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-15 20:30:07.375832,c4-standard-2,europe-west3-a,48cfc10,pypsa-power+ely-mod-1-1h,glpk-5.0,pypsa-power+ely-mod -tulipa-1_EU_investment_simple,28-24h,glpk,5.0,2020.0,ok,unknown,2.224163620001491,129.848,213320198.2,,,,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-15 20:31:39.029294,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-24h,glpk-5.0,tulipa-1_EU_investment_simple -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314,73-1h,gurobi,10.0.0,2022.0,TO,Timeout,3600.0,584.044,,,,3600.0,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-15 20:32:27.191690,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314,73-1h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1003.744,,,,3600.0,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-15 21:36:28.779418,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314,73-1h,scip,8.0.3,2022.0,TO,Timeout,3600.0,1502.004,,,,3600.0,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-15 22:40:28.503646,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314 -pglib_opf_case2868,2868-NA,gurobi,10.0.0,2022.0,ok,optimal,52.98746793900136,236.972,1966683.7348992007,,,52.72526216506958,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-15 23:44:25.184397,c4-standard-2,europe-west3-a,48cfc10,pglib_opf_case2868-2868-NA,gurobi-10.0.0,pglib_opf_case2868 -pglib_opf_case2868,2868-NA,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,568.588,,,,3600.0,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-15 23:45:18.953877,c4-standard-2,europe-west3-a,48cfc10,pglib_opf_case2868-2868-NA,highs-1.5.0.dev0,pglib_opf_case2868 -pglib_opf_case2868,2868-NA,scip,8.0.3,2022.0,TO,Timeout,3600.0,378.632,,,,3600.0,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 00:49:12.983203,c4-standard-2,europe-west3-a,48cfc10,pglib_opf_case2868-2868-NA,scip-8.0.3,pglib_opf_case2868 -SWITCH-retrofits,3-6ts,gurobi,10.0.0,2022.0,ok,optimal,0.1969675040018046,160.908,140405713.74608132,,,0.0095369815826416,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 01:53:07.830290,c4-standard-2,europe-west3-a,48cfc10,SWITCH-retrofits-3-6ts,gurobi-10.0.0,SWITCH-retrofits -SWITCH-retrofits,3-6ts,highs,1.5.0.dev0,2022.0,ok,optimal,0.0411495100015599,151.188,140405713.74608102,,,0.0288188457489013,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 01:53:08.693868,c4-standard-2,europe-west3-a,48cfc10,SWITCH-retrofits-3-6ts,highs-1.5.0.dev0,SWITCH-retrofits -SWITCH-retrofits,3-6ts,scip,8.0.3,2022.0,ok,optimal,0.0643451470023137,169.748,140405713.7460813,,,0.050588,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 01:53:09.390773,c4-standard-2,europe-west3-a,48cfc10,SWITCH-retrofits-3-6ts,scip-8.0.3,SWITCH-retrofits -OEMOF-invest-optimize-all-technologies-using-mp-and-tsam,1-1920ts,gurobi,10.0.0,2022.0,ok,optimal,1.839050126000075,282.58,1168755874.5556026,,,1.4735620021820068,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 01:53:10.108315,c4-standard-2,europe-west3-a,48cfc10,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam-1-1920ts,gurobi-10.0.0,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam -OEMOF-invest-optimize-all-technologies-using-mp-and-tsam,1-1920ts,highs,1.5.0.dev0,2022.0,ok,optimal,4.256030898999597,298.984,1168755874.5554314,,,3.896502733230591,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 01:53:12.873922,c4-standard-2,europe-west3-a,48cfc10,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam-1-1920ts,highs-1.5.0.dev0,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam -OEMOF-invest-optimize-all-technologies-using-mp-and-tsam,1-1920ts,scip,8.0.3,2022.0,ok,optimal,1.944618722998712,477.376,1168755874.5554311,,,1.695913,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 01:53:18.073443,c4-standard-2,europe-west3-a,48cfc10,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam-1-1920ts,scip-8.0.3,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam -tulipa-1_EU_investment_simple,28-4.3h,gurobi,10.0.0,2022.0,ok,optimal,28.81277868700272,1309.208,3104026345.986785,,,26.88878297805786,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 01:53:21.016753,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-4.3h,gurobi-10.0.0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-4.3h,highs,1.5.0.dev0,2022.0,ok,optimal,579.2113448970013,4518.08,3104026345.986783,,,575.7549803256989,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 01:53:53.525148,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-4.3h,highs-1.5.0.dev0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-4.3h,scip,8.0.3,2022.0,ok,optimal,184.7009920920027,3867.448,3104171624.2663574,,,180.363583,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 02:03:36.805947,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-4.3h,scip-8.0.3,tulipa-1_EU_investment_simple -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314,73-1h,gurobi,10.0.0,2022.0,ok,optimal,8.143676507002965,189.456,250269.69995049405,,,7.915598154067993,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 02:06:46.586460,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314,73-1h,highs,1.5.0.dev0,2022.0,ok,optimal,74.03536858499865,341.204,250269.6999504206,,,73.98440980911255,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 02:06:55.437700,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314,73-1h,scip,8.0.3,2022.0,ok,optimal,161.39190083100038,445.364,250269.69993087923,,,161.348004,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 02:08:10.157595,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314 -pypsa-power+ely-mod,1-1h,gurobi,10.0.0,2022.0,ok,optimal,7.376032116997521,383.984,31715824201.142406,,,6.9274818897247314,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 02:10:52.291497,c4-standard-2,europe-west3-a,48cfc10,pypsa-power+ely-mod-1-1h,gurobi-10.0.0,pypsa-power+ely-mod -pypsa-power+ely-mod,1-1h,highs,1.5.0.dev0,2022.0,ok,optimal,6.2473133630010125,431.672,31715824201.142406,,,5.530292749404907,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 02:11:00.958416,c4-standard-2,europe-west3-a,48cfc10,pypsa-power+ely-mod-1-1h,highs-1.5.0.dev0,pypsa-power+ely-mod -pypsa-power+ely-mod,1-1h,scip,8.0.3,2022.0,ok,optimal,86.50464208500125,865.612,31715824201.1424,,,85.753839,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 02:11:08.510368,c4-standard-2,europe-west3-a,48cfc10,pypsa-power+ely-mod-1-1h,scip-8.0.3,pypsa-power+ely-mod -tulipa-1_EU_investment_simple,28-24h,gurobi,10.0.0,2022.0,ok,optimal,0.5628273149995948,172.948,223319501.4791828,,,0.3658580780029297,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 02:12:36.656272,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-24h,gurobi-10.0.0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-24h,highs,1.5.0.dev0,2022.0,ok,optimal,7.750029980998079,222.932,223314143.5291478,,,7.715865850448608,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 02:12:37.908583,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-24h,highs-1.5.0.dev0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-24h,scip,8.0.3,2022.0,ok,optimal,2.278196274997754,223.872,223327430.0315647,,,2.236724,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 02:12:46.342665,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-24h,scip-8.0.3,tulipa-1_EU_investment_simple -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314,73-1h,gurobi,11.0.0,2023.0,TO,Timeout,3600.0,602.36,,,,3600.0,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 02:16:31.146997,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314,73-1h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,1070.544,,,,3600.0,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 03:20:13.136488,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314,73-1h,scip,8.1.0,2023.0,TO,Timeout,3600.0,1503.228,,,,3600.0,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 04:23:57.005615,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314,73-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,177.404,,,,3600.0,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 05:27:38.186488,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314 -pglib_opf_case2868,2868-NA,gurobi,11.0.0,2023.0,ok,optimal,559.0115553829964,275.864,1966683.7348997483,,,558.6574478149414,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 06:31:19.381907,c4-standard-2,europe-west3-a,48cfc10,pglib_opf_case2868-2868-NA,gurobi-11.0.0,pglib_opf_case2868 -pglib_opf_case2868,2868-NA,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,598.552,,,,3600.0,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 06:40:39.210354,c4-standard-2,europe-west3-a,48cfc10,pglib_opf_case2868-2868-NA,highs-1.6.0.dev0,pglib_opf_case2868 -pglib_opf_case2868,2868-NA,scip,8.1.0,2023.0,TO,Timeout,3600.0,387.592,,,,3600.0,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 07:44:24.161732,c4-standard-2,europe-west3-a,48cfc10,pglib_opf_case2868-2868-NA,scip-8.1.0,pglib_opf_case2868 -pglib_opf_case2868,2868-NA,cbc,2.10.11,2023.0,ok,optimal,327.20539419200213,168.956,1966683.73490107,,,327.08,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 08:48:06.169845,c4-standard-2,europe-west3-a,48cfc10,pglib_opf_case2868-2868-NA,cbc-2.10.11,pglib_opf_case2868 -SWITCH-retrofits,3-6ts,gurobi,11.0.0,2023.0,ok,optimal,0.1631684719977784,170.992,140405713.7460813,,,0.0094099044799804,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 08:53:34.193197,c4-standard-2,europe-west3-a,48cfc10,SWITCH-retrofits-3-6ts,gurobi-11.0.0,SWITCH-retrofits -SWITCH-retrofits,3-6ts,highs,1.6.0.dev0,2023.0,ok,optimal,0.0407157340014237,161.556,140405713.74608102,,,0.0294134616851806,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 08:53:35.128392,c4-standard-2,europe-west3-a,48cfc10,SWITCH-retrofits-3-6ts,highs-1.6.0.dev0,SWITCH-retrofits -SWITCH-retrofits,3-6ts,scip,8.1.0,2023.0,ok,optimal,0.0638423269992927,179.636,140405713.7460813,,,0.0510059999999999,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 08:53:35.934348,c4-standard-2,europe-west3-a,48cfc10,SWITCH-retrofits-3-6ts,scip-8.1.0,SWITCH-retrofits -SWITCH-retrofits,3-6ts,cbc,2.10.11,2023.0,ok,optimal,0.1684144120008568,158.0,140405713.74608126,,,0.14,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 08:53:36.769384,c4-standard-2,europe-west3-a,48cfc10,SWITCH-retrofits-3-6ts,cbc-2.10.11,SWITCH-retrofits -OEMOF-invest-optimize-all-technologies-using-mp-and-tsam,1-1920ts,gurobi,11.0.0,2023.0,ok,optimal,1.536934506999387,289.32,1168755874.5556026,,,1.2313950061798096,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 08:53:37.711340,c4-standard-2,europe-west3-a,48cfc10,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam-1-1920ts,gurobi-11.0.0,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam -OEMOF-invest-optimize-all-technologies-using-mp-and-tsam,1-1920ts,highs,1.6.0.dev0,2023.0,ok,optimal,4.124993465004081,319.456,1168755874.5554314,,,3.790006637573242,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 08:53:40.245236,c4-standard-2,europe-west3-a,48cfc10,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam-1-1920ts,highs-1.6.0.dev0,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam -OEMOF-invest-optimize-all-technologies-using-mp-and-tsam,1-1920ts,scip,8.1.0,2023.0,ok,optimal,1.881324836998829,483.972,1168755874.5554311,,,1.6567539999999998,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 08:53:45.393328,c4-standard-2,europe-west3-a,48cfc10,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam-1-1920ts,scip-8.1.0,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam -OEMOF-invest-optimize-all-technologies-using-mp-and-tsam,1-1920ts,cbc,2.10.11,2023.0,ok,optimal,4.329775764999795,218.64,1168755874.5554314,,,,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 08:53:48.363457,c4-standard-2,europe-west3-a,48cfc10,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam-1-1920ts,cbc-2.10.11,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam -tulipa-1_EU_investment_simple,28-4.3h,gurobi,11.0.0,2023.0,ok,optimal,18.863542762002908,1295.916,3104033766.1693506,,,17.348462104797363,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 08:53:53.688673,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-4.3h,gurobi-11.0.0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-4.3h,highs,1.6.0.dev0,2023.0,ok,optimal,536.4841162740049,4777.844,3104026345.986783,,,534.3270058631897,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 08:54:15.002468,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-4.3h,highs-1.6.0.dev0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-4.3h,scip,8.1.0,2023.0,ok,optimal,175.3487167159983,4083.328,3104171624.2663574,,,171.751791,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 09:03:13.908501,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-4.3h,scip-8.1.0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-4.3h,cbc,2.10.11,2023.0,ok,optimal,2262.965127757001,2268.436,3104270913.4954505,,,2260.78,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 09:06:13.004393,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-4.3h,cbc-2.10.11,tulipa-1_EU_investment_simple -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314,73-1h,gurobi,11.0.0,2023.0,ok,optimal,9.207838947004348,201.48,250269.697947503,,,9.003881931304932,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 09:43:58.441354,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314,73-1h,highs,1.6.0.dev0,2023.0,ok,optimal,71.7606709640022,367.86,250269.6999504206,,,71.72952651977539,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 09:44:08.461011,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314,73-1h,scip,8.1.0,2023.0,ok,optimal,158.39203067700146,454.612,250269.69993087923,,,158.348068,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 09:49:09.990106,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314,73-1h,cbc,2.10.11,2023.0,ok,optimal,1201.2070712439963,158.848,250269.69995049,,,1201.16,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 09:51:49.195686,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314 -pypsa-power+ely-mod,1-1h,gurobi,11.0.0,2023.0,ok,optimal,7.527503459998115,390.12,31715824201.142406,,,6.983925104141235,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 10:11:51.188047,c4-standard-2,europe-west3-a,48cfc10,pypsa-power+ely-mod-1-1h,gurobi-11.0.0,pypsa-power+ely-mod -pypsa-power+ely-mod,1-1h,highs,1.6.0.dev0,2023.0,ok,optimal,5.863882741003181,389.412,31715824201.142406,,,5.295896768569946,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 10:11:59.958924,c4-standard-2,europe-west3-a,48cfc10,pypsa-power+ely-mod-1-1h,highs-1.6.0.dev0,pypsa-power+ely-mod -pypsa-power+ely-mod,1-1h,scip,8.1.0,2023.0,ok,optimal,84.30738901499717,864.644,31715824201.1424,,,83.697335,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 10:12:07.013485,c4-standard-2,europe-west3-a,48cfc10,pypsa-power+ely-mod-1-1h,scip-8.1.0,pypsa-power+ely-mod -pypsa-power+ely-mod,1-1h,cbc,2.10.11,2023.0,ok,optimal,53.73152170600224,440.324,31715204639.26688,,,53.13,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 10:13:32.912789,c4-standard-2,europe-west3-a,48cfc10,pypsa-power+ely-mod-1-1h,cbc-2.10.11,pypsa-power+ely-mod -tulipa-1_EU_investment_simple,28-24h,gurobi,11.0.0,2023.0,ok,optimal,0.3765841569984332,178.828,223319501.47918275,,,0.3519768714904785,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 10:14:27.863618,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-24h,gurobi-11.0.0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-24h,highs,1.6.0.dev0,2023.0,ok,optimal,7.30145181199623,236.772,223314143.5291478,,,7.278712034225464,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 10:14:29.036149,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-24h,highs-1.6.0.dev0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-24h,scip,8.1.0,2023.0,ok,optimal,2.216260781002348,235.06,223327430.0315647,,,2.175714,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 10:14:37.131368,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-24h,scip-8.1.0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-24h,cbc,2.10.11,2023.0,ok,optimal,3.1226807269995334,158.404,223310171.7601738,,,3.08,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 10:14:40.143644,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-24h,cbc-2.10.11,tulipa-1_EU_investment_simple -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314,73-1h,gurobi,12.0.0,2024.0,TO,Timeout,3600.0,587.188,,,,3600.0,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 10:15:21.001569,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314,73-1h,highs,1.9.0,2024.0,TO,Timeout,3600.0,929.616,,,,3600.0,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 11:19:05.668790,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314,73-1h,scip,9.2.0,2024.0,TO,Timeout,3600.0,1485.988,,,,3600.0,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 12:22:51.000478,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314,73-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,159.668,,,,3600.0,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 13:26:43.476844,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314 -pglib_opf_case2868,2868-NA,gurobi,12.0.0,2024.0,ok,optimal,101.79627391000396,244.228,1966778.8677271556,4.5929419201229393e-07,4.836986345574557e-05,101.59137606620789,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 14:30:37.554026,c4-standard-2,europe-west3-a,48cfc10,pglib_opf_case2868-2868-NA,gurobi-12.0.0,pglib_opf_case2868 -pglib_opf_case2868,2868-NA,highs,1.9.0,2024.0,TO,Timeout,3600.0,565.688,,,,3600.0,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 14:32:20.052499,c4-standard-2,europe-west3-a,48cfc10,pglib_opf_case2868-2868-NA,highs-1.9.0,pglib_opf_case2868 -pglib_opf_case2868,2868-NA,scip,9.2.0,2024.0,TO,Timeout,3600.0,369.676,,,,3600.0,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 15:36:14.598221,c4-standard-2,europe-west3-a,48cfc10,pglib_opf_case2868-2868-NA,scip-9.2.0,pglib_opf_case2868 -pglib_opf_case2868,2868-NA,cbc,2.10.12,2024.0,ok,optimal,334.946804916006,165.28,1966683.73490107,0.0,0.0,334.68,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 16:40:09.789251,c4-standard-2,europe-west3-a,48cfc10,pglib_opf_case2868-2868-NA,cbc-2.10.12,pglib_opf_case2868 -SWITCH-retrofits,3-6ts,gurobi,12.0.0,2024.0,ok,optimal,0.1396056009980384,155.212,140405713.7460813,0.0,4.605467967360673e-05,0.0090510845184326,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 16:45:45.431158,c4-standard-2,europe-west3-a,48cfc10,SWITCH-retrofits-3-6ts,gurobi-12.0.0,SWITCH-retrofits -SWITCH-retrofits,3-6ts,highs,1.9.0,2024.0,ok,optimal,0.0430003359942929,145.74,140405713.74608102,0.0,0.0,0.0299346446990966,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 16:45:46.133695,c4-standard-2,europe-west3-a,48cfc10,SWITCH-retrofits-3-6ts,highs-1.9.0,SWITCH-retrofits -SWITCH-retrofits,3-6ts,scip,9.2.0,2024.0,ok,optimal,0.0653255879878997,164.4,140405713.7460813,0.0,0.0,0.051536,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 16:45:46.740473,c4-standard-2,europe-west3-a,48cfc10,SWITCH-retrofits-3-6ts,scip-9.2.0,SWITCH-retrofits -SWITCH-retrofits,3-6ts,cbc,2.10.12,2024.0,ok,optimal,0.1840769940026803,146.724,140405713.74608126,0.0,,0.14,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 16:45:47.353066,c4-standard-2,europe-west3-a,48cfc10,SWITCH-retrofits-3-6ts,cbc-2.10.12,SWITCH-retrofits -OEMOF-invest-optimize-all-technologies-using-mp-and-tsam,1-1920ts,gurobi,12.0.0,2024.0,ok,optimal,1.9041166779934429,275.12,1168755874.5556026,,,1.5903069972991943,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 16:45:48.077293,c4-standard-2,europe-west3-a,48cfc10,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam-1-1920ts,gurobi-12.0.0,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam -OEMOF-invest-optimize-all-technologies-using-mp-and-tsam,1-1920ts,highs,1.9.0,2024.0,ok,optimal,4.34536547800235,291.808,1168755874.5554314,,,3.949340581893921,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 16:45:50.863379,c4-standard-2,europe-west3-a,48cfc10,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam-1-1920ts,highs-1.9.0,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam -OEMOF-invest-optimize-all-technologies-using-mp-and-tsam,1-1920ts,scip,9.2.0,2024.0,ok,optimal,1.93261357099982,469.172,1168755874.5554311,,,1.700201,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 16:45:56.153515,c4-standard-2,europe-west3-a,48cfc10,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam-1-1920ts,scip-9.2.0,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam -OEMOF-invest-optimize-all-technologies-using-mp-and-tsam,1-1920ts,cbc,2.10.12,2024.0,ok,optimal,4.690955896003288,233.212,1168755874.5554314,,,,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 16:45:59.055417,c4-standard-2,europe-west3-a,48cfc10,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam-1-1920ts,cbc-2.10.12,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam -tulipa-1_EU_investment_simple,28-4.3h,gurobi,12.0.0,2024.0,ok,optimal,36.21633687899157,1417.776,3104103860.724514,0.0,4.1201910452247326e-05,34.66468906402588,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 16:46:04.650249,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-4.3h,gurobi-12.0.0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-4.3h,highs,1.9.0,2024.0,ok,optimal,606.8988743990049,4587.824,3104198397.329652,5.115907697472721e-13,8.478994045552863e-05,603.1301071643829,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 16:46:45.053402,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-4.3h,highs-1.9.0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-4.3h,scip,9.2.0,2024.0,ok,optimal,183.9739442699938,3940.796,3104171624.2663574,2.273736754432321e-13,9.45320055122828e-05,180.272563,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 16:56:56.550612,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-4.3h,scip-9.2.0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-4.3h,cbc,2.10.12,2024.0,ok,optimal,2311.233591850003,2279.912,3104270913.4954505,0.0,0.0,2305.26,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 17:00:05.863328,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-4.3h,cbc-2.10.12,tulipa-1_EU_investment_simple -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314,73-1h,gurobi,12.0.0,2024.0,ok,optimal,9.46155737299705,186.768,250269.69995049416,0.0,5.2928865537302365e-05,9.239076852798462,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 17:42:35.588648,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314,73-1h,highs,1.9.0,2024.0,ok,optimal,82.03844013500202,492.12,250269.6999504916,3.083809706563984e-13,5.929168779360234e-05,81.98151564598083,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 17:42:45.655601,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314,73-1h,scip,9.2.0,2024.0,ok,optimal,161.61197719200572,440.1,250269.69993087923,5.1973693349083305e-08,0.0,161.567038,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 17:44:08.297003,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314,73-1h,cbc,2.10.12,2024.0,ok,optimal,1228.974928285999,150.028,250269.69995049,0.0,0.0,1228.87,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 17:46:50.531470,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314 -pypsa-power+ely-mod,1-1h,gurobi,12.0.0,2024.0,ok,optimal,5.789843873004429,377.136,31715824201.142406,0.0,5.316239838795617e-05,5.257544040679932,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 18:07:20.101888,c4-standard-2,europe-west3-a,48cfc10,pypsa-power+ely-mod-1-1h,gurobi-12.0.0,pypsa-power+ely-mod -pypsa-power+ely-mod,1-1h,highs,1.9.0,2024.0,ok,optimal,6.327339896990452,427.48,31715824201.142406,5.2373732372850713e-14,5.3162398390482e-05,5.591774225234985,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 18:07:27.095401,c4-standard-2,europe-west3-a,48cfc10,pypsa-power+ely-mod-1-1h,highs-1.9.0,pypsa-power+ely-mod -pypsa-power+ely-mod,1-1h,scip,9.2.0,2024.0,ok,optimal,85.47132816701196,848.896,31715824201.1424,0.0,5.3165224781101776e-05,84.834251,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 18:07:34.677085,c4-standard-2,europe-west3-a,48cfc10,pypsa-power+ely-mod-1-1h,scip-9.2.0,pypsa-power+ely-mod -pypsa-power+ely-mod,1-1h,cbc,2.10.12,2024.0,ok,optimal,55.7691981310054,438.66,31715204639.26688,0.0,0.0,54.51,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 18:09:01.741366,c4-standard-2,europe-west3-a,48cfc10,pypsa-power+ely-mod-1-1h,cbc-2.10.12,pypsa-power+ely-mod -tulipa-1_EU_investment_simple,28-24h,gurobi,12.0.0,2024.0,ok,optimal,0.3065746630018111,162.74,223311299.67404896,0.0,7.576933498487933e-05,0.2810540199279785,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 18:09:58.749967,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-24h,gurobi-12.0.0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-24h,highs,1.9.0,2024.0,ok,optimal,8.366172766996897,226.596,223317241.5340944,2.842170943040401e-13,7.673794226949795e-05,8.327989339828491,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 18:09:59.642006,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-24h,highs-1.9.0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-24h,scip,9.2.0,2024.0,ok,optimal,2.2643121269939,221.116,223327430.0315647,2.085442929455894e-11,8.583544744270419e-05,2.222585,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 18:10:08.584170,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-24h,scip-9.2.0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-24h,cbc,2.10.12,2024.0,ok,optimal,3.185060630989028,148.224,223310171.7601738,0.0,,3.11,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 18:10:11.437967,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-24h,cbc-2.10.12,tulipa-1_EU_investment_simple -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314,73-1h,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,564.972,,,,3600.0,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 18:10:51.261987,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314,73-1h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1187.144,,,,3600.0,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 19:14:45.228550,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314,73-1h,scip,10.0.0,2025.0,TO,Timeout,3600.0,1520.288,,,,3600.0,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 20:18:37.121542,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314 -pglib_opf_case2868,2868-NA,gurobi,13.0.0,2025.0,ok,optimal,5.2249207369895885,224.912,1966683.7349006317,0.0,0.0,5.000744104385376,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 21:22:33.602109,c4-standard-2,europe-west3-a,48cfc10,pglib_opf_case2868-2868-NA,gurobi-13.0.0,pglib_opf_case2868 -pglib_opf_case2868,2868-NA,highs,1.12.0,2025.0,TO,Timeout,3600.0,617.04,,,,3600.0,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 21:22:39.739408,c4-standard-2,europe-west3-a,48cfc10,pglib_opf_case2868-2868-NA,highs-1.12.0,pglib_opf_case2868 -pglib_opf_case2868,2868-NA,scip,10.0.0,2025.0,TO,Timeout,3600.0,397.944,,,,3600.0,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 22:26:34.667325,c4-standard-2,europe-west3-a,48cfc10,pglib_opf_case2868-2868-NA,scip-10.0.0,pglib_opf_case2868 -SWITCH-retrofits,3-6ts,gurobi,13.0.0,2025.0,ok,optimal,0.1283809440064942,183.812,140405713.7460813,0.0,4.605467967360673e-05,0.008847951889038,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 23:30:29.392982,c4-standard-2,europe-west3-a,48cfc10,SWITCH-retrofits-3-6ts,gurobi-13.0.0,SWITCH-retrofits -SWITCH-retrofits,3-6ts,highs,1.12.0,2025.0,ok,optimal,0.0476751329988474,173.344,140405713.74608102,0.0,0.0,0.0351195335388183,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 23:30:30.334663,c4-standard-2,europe-west3-a,48cfc10,SWITCH-retrofits-3-6ts,highs-1.12.0,SWITCH-retrofits -SWITCH-retrofits,3-6ts,scip,10.0.0,2025.0,ok,optimal,0.0653347580082481,190.636,140405713.7460813,0.0,0.0,0.0507489999999999,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 23:30:31.190549,c4-standard-2,europe-west3-a,48cfc10,SWITCH-retrofits-3-6ts,scip-10.0.0,SWITCH-retrofits -OEMOF-invest-optimize-all-technologies-using-mp-and-tsam,1-1920ts,gurobi,13.0.0,2025.0,ok,optimal,1.855137439008104,301.116,1168755874.5556026,,,1.5419611930847168,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 23:30:32.050450,c4-standard-2,europe-west3-a,48cfc10,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam-1-1920ts,gurobi-13.0.0,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam -OEMOF-invest-optimize-all-technologies-using-mp-and-tsam,1-1920ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,23.48107725399313,164.4,1168755874.6,,,23.48107725399313,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 23:30:34.967313,c4-standard-2,europe-west3-a,48cfc10,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam-1-1920ts,highs-hipo-1.12.0-hipo,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam -OEMOF-invest-optimize-all-technologies-using-mp-and-tsam,1-1920ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,7.33308099200076,164.088,1168755874.6,,,7.33308099200076,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 23:30:59.240109,c4-standard-2,europe-west3-a,48cfc10,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam-1-1920ts,highs-ipx-1.12.0-hipo,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam -OEMOF-invest-optimize-all-technologies-using-mp-and-tsam,1-1920ts,highs,1.12.0,2025.0,ok,optimal,2.696566951999557,330.944,1168755874.5554314,,,2.325834035873413,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 23:31:07.358224,c4-standard-2,europe-west3-a,48cfc10,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam-1-1920ts,highs-1.12.0,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam -OEMOF-invest-optimize-all-technologies-using-mp-and-tsam,1-1920ts,scip,10.0.0,2025.0,ok,optimal,1.9258307029958812,496.968,1168755874.5554311,,,1.68847,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 23:31:11.110005,c4-standard-2,europe-west3-a,48cfc10,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam-1-1920ts,scip-10.0.0,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam -tulipa-1_EU_investment_simple,28-4.3h,gurobi,13.0.0,2025.0,ok,optimal,35.73677494400181,1391.672,3104103860.724516,0.0,4.097061445598509e-05,34.18549609184265,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 23:31:14.170824,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-4.3h,gurobi-13.0.0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-4.3h,highs,1.12.0,2025.0,ok,optimal,459.5128939670103,4773.744,3104026345.986783,1.7053025658242404e-13,8.995849425871914e-05,456.8279416561127,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 23:31:53.202757,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-4.3h,highs-1.12.0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-4.3h,scip,10.0.0,2025.0,ok,optimal,186.98980441701133,3888.864,3104171624.2663574,2.273736754432321e-13,9.45320055122828e-05,182.97252,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 23:39:35.944678,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-4.3h,scip-10.0.0,tulipa-1_EU_investment_simple -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314,73-1h,gurobi,13.0.0,2025.0,ok,optimal,12.65583155999775,226.576,250269.69994926645,0.0,8.617882937875697e-05,12.466551065444946,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 23:42:47.892357,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314,73-1h,highs,1.12.0,2025.0,ok,optimal,156.46737793101056,548.004,250269.69995049373,6.187184098393865e-14,9.642454814737583e-05,156.42936944961548,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 23:43:01.402486,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314,73-1h,scip,10.0.0,2025.0,ok,optimal,161.49607582100725,464.676,250269.69993087923,5.1973693349083305e-08,0.0,161.448059,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 23:45:38.716345,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314 -pypsa-power+ely-mod,1-1h,gurobi,13.0.0,2025.0,ok,optimal,5.75466010600212,404.54,31715824201.142406,0.0,5.316239838795617e-05,5.256044864654541,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 23:48:21.092290,c4-standard-2,europe-west3-a,48cfc10,pypsa-power+ely-mod-1-1h,gurobi-13.0.0,pypsa-power+ely-mod -pypsa-power+ely-mod,1-1h,highs,1.12.0,2025.0,ok,optimal,6.72748640399368,413.252,31715824201.142406,5.2373732372850713e-14,5.3162398390482e-05,6.115431070327759,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 23:48:28.225661,c4-standard-2,europe-west3-a,48cfc10,pypsa-power+ely-mod-1-1h,highs-1.12.0,pypsa-power+ely-mod -pypsa-power+ely-mod,1-1h,scip,10.0.0,2025.0,ok,optimal,84.909131790002,877.436,31715824201.1424,0.0,5.3165224781101776e-05,84.237608,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 23:48:36.297524,c4-standard-2,europe-west3-a,48cfc10,pypsa-power+ely-mod-1-1h,scip-10.0.0,pypsa-power+ely-mod -tulipa-1_EU_investment_simple,28-24h,gurobi,13.0.0,2025.0,ok,optimal,0.3749310759885702,189.6,223310235.30422255,0.0,7.112018150631671e-05,0.3509731292724609,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 23:50:02.918449,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-24h,gurobi-13.0.0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-24h,highs,1.12.0,2025.0,ok,optimal,7.897010224987753,243.592,223314289.8091698,3.6809780879947495e-10,6.898237690154196e-05,7.8709189891815186,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 23:50:04.135287,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-24h,highs-1.12.0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-24h,scip,10.0.0,2025.0,ok,optimal,2.2616305200062925,248.424,223327430.0315647,2.085442929455894e-11,8.583544744270419e-05,2.217686,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 23:50:12.855093,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-24h,scip-10.0.0,tulipa-1_EU_investment_simple -genx-4_three_zones_w_policies_slack,3-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,204.76,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-15 17:30:41.499685,c4-standard-2,europe-west9-a,48cfc10,genx-4_three_zones_w_policies_slack-3-1h,glpk-5.0,genx-4_three_zones_w_policies_slack -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,137.428,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-15 18:33:46.144113,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29 -OEMOF-simple-dispatch,1-8760ts,glpk,5.0,2020.0,ER,,,159.272,,,,,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-15 19:36:50.353935,c4-standard-2,europe-west9-a,48cfc10,OEMOF-simple-dispatch-1-8760ts,glpk-5.0,OEMOF-simple-dispatch -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,129.22,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-15 19:37:13.562109,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314 -times-nz-tui,2-24ts,glpk,5.0,2020.0,warning,unknown,0.0970601720000559,290.824,,,,,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-15 20:40:16.790914,c4-standard-2,europe-west9-a,48cfc10,times-nz-tui-2-24ts,glpk-5.0,times-nz-tui -tulipa-1_EU_investment_simple,28-52.1h,glpk,5.0,2020.0,ok,unknown,25.45045712499996,163.544,510254679.1,,,,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-15 20:40:17.316298,c4-standard-2,europe-west9-a,48cfc10,tulipa-1_EU_investment_simple-28-52.1h,glpk-5.0,tulipa-1_EU_investment_simple -genx-4_three_zones_w_policies_slack,3-1h,gurobi,10.0.0,2022.0,TO,Timeout,3600.0,1589.64,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-15 20:41:22.686092,c4-standard-2,europe-west9-a,48cfc10,genx-4_three_zones_w_policies_slack-3-1h,gurobi-10.0.0,genx-4_three_zones_w_policies_slack -genx-4_three_zones_w_policies_slack,3-1h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,3117.144,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-15 21:44:27.801730,c4-standard-2,europe-west9-a,48cfc10,genx-4_three_zones_w_policies_slack-3-1h,highs-1.5.0.dev0,genx-4_three_zones_w_policies_slack -genx-4_three_zones_w_policies_slack,3-1h,scip,8.0.3,2022.0,TO,Timeout,3600.0,2196.472,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-15 22:47:32.245570,c4-standard-2,europe-west9-a,48cfc10,genx-4_three_zones_w_policies_slack-3-1h,scip-8.0.3,genx-4_three_zones_w_policies_slack -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29,73-1h,gurobi,10.0.0,2022.0,ok,optimal,615.6089159399999,397.036,1768933.6969285358,,,615.3045301437378,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-15 23:50:36.695515,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29,73-1h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1190.808,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 00:00:52.982028,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29,73-1h,scip,8.0.3,2022.0,TO,Timeout,3600.0,1478.74,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 01:03:56.806306,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29 -OEMOF-simple-dispatch,1-8760ts,gurobi,10.0.0,2022.0,ok,optimal,1.1033925199990335,458.476,10971074.84862532,,,0.0935649871826171,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 02:07:02.212531,c4-standard-2,europe-west9-a,48cfc10,OEMOF-simple-dispatch-1-8760ts,gurobi-10.0.0,OEMOF-simple-dispatch -OEMOF-simple-dispatch,1-8760ts,highs,1.5.0.dev0,2022.0,ok,optimal,1.0098935099995288,457.508,10971074.848618068,,,0.1394901275634765,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 02:07:04.548864,c4-standard-2,europe-west9-a,48cfc10,OEMOF-simple-dispatch-1-8760ts,highs-1.5.0.dev0,OEMOF-simple-dispatch -OEMOF-simple-dispatch,1-8760ts,scip,8.0.3,2022.0,ok,optimal,1.5020930440005031,807.984,10971074.848625014,,,0.5843349999999999,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 02:07:06.856062,c4-standard-2,europe-west9-a,48cfc10,OEMOF-simple-dispatch-1-8760ts,scip-8.0.3,OEMOF-simple-dispatch -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314,73-1h,gurobi,10.0.0,2022.0,ok,optimal,45.20703681899977,239.132,796885.027724022,,,45.147778034210205,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 02:07:09.762024,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314,73-1h,highs,1.5.0.dev0,2022.0,ok,optimal,625.8563398869992,796.392,796885.0277277983,,,625.7735114097595,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 02:07:55.571097,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314,73-1h,scip,8.0.3,2022.0,ok,optimal,1501.8550025910008,1124.004,796885.0277282712,,,1501.762668,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 02:18:22.015129,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314 -times-nz-tui,2-24ts,gurobi,10.0.0,2022.0,ok,optimal,329.35336906100565,677.396,1402087.101123006,,,327.6131751537323,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 02:43:24.520501,c4-standard-2,europe-west9-a,48cfc10,times-nz-tui-2-24ts,gurobi-10.0.0,times-nz-tui -times-nz-tui,2-24ts,highs,1.5.0.dev0,2022.0,ok,optimal,148.00433237600373,846.992,1402087.1200728202,,,145.9225251674652,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 02:48:56.159032,c4-standard-2,europe-west9-a,48cfc10,times-nz-tui-2-24ts,highs-1.5.0.dev0,times-nz-tui -times-nz-tui,2-24ts,scip,8.0.3,2022.0,ok,optimal,3079.630394625994,3070.296,1402087.1141087697,,,3077.766783,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 02:51:26.421885,c4-standard-2,europe-west9-a,48cfc10,times-nz-tui-2-24ts,scip-8.0.3,times-nz-tui -tulipa-1_EU_investment_simple,28-52.1h,gurobi,10.0.0,2022.0,ok,optimal,1.3147240430043894,252.444,520251971.241518,,,1.021876096725464,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 03:45:53.881626,c4-standard-2,europe-west9-a,48cfc10,tulipa-1_EU_investment_simple-28-52.1h,gurobi-10.0.0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-52.1h,highs,1.5.0.dev0,2022.0,ok,optimal,29.477626009000232,573.548,520257276.87008464,,,29.292049646377563,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 03:45:55.881172,c4-standard-2,europe-west9-a,48cfc10,tulipa-1_EU_investment_simple-28-52.1h,highs-1.5.0.dev0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-52.1h,scip,8.0.3,2022.0,ok,optimal,10.51757575699594,506.304,520256206.2552681,,,10.266682,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 03:46:26.050223,c4-standard-2,europe-west9-a,48cfc10,tulipa-1_EU_investment_simple-28-52.1h,scip-8.0.3,tulipa-1_EU_investment_simple -genx-4_three_zones_w_policies_slack,3-1h,gurobi,11.0.0,2023.0,TO,Timeout,3600.0,1641.144,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 03:49:27.766227,c4-standard-2,europe-west9-a,48cfc10,genx-4_three_zones_w_policies_slack-3-1h,gurobi-11.0.0,genx-4_three_zones_w_policies_slack -genx-4_three_zones_w_policies_slack,3-1h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,3158.592,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 04:52:31.819089,c4-standard-2,europe-west9-a,48cfc10,genx-4_three_zones_w_policies_slack-3-1h,highs-1.6.0.dev0,genx-4_three_zones_w_policies_slack -genx-4_three_zones_w_policies_slack,3-1h,scip,8.1.0,2023.0,TO,Timeout,3600.0,2206.3,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 05:55:35.880230,c4-standard-2,europe-west9-a,48cfc10,genx-4_three_zones_w_policies_slack-3-1h,scip-8.1.0,genx-4_three_zones_w_policies_slack -genx-4_three_zones_w_policies_slack,3-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,235.368,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 06:58:39.702241,c4-standard-2,europe-west9-a,48cfc10,genx-4_three_zones_w_policies_slack-3-1h,cbc-2.10.11,genx-4_three_zones_w_policies_slack -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29,73-1h,gurobi,11.0.0,2023.0,ok,optimal,362.5743010849983,384.688,1768933.7020238978,,,362.3093860149384,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 08:01:44.338972,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29,73-1h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,1134.228,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 08:07:47.641679,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29,73-1h,scip,8.1.0,2023.0,TO,Timeout,3600.0,1487.86,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 09:10:52.100756,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29,73-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,168.428,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 10:13:56.044102,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29 -OEMOF-simple-dispatch,1-8760ts,gurobi,11.0.0,2023.0,ok,optimal,0.8985651949988096,481.2,10971074.84862532,,,0.0942680835723877,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 11:17:00.131166,c4-standard-2,europe-west9-a,48cfc10,OEMOF-simple-dispatch-1-8760ts,gurobi-11.0.0,OEMOF-simple-dispatch -OEMOF-simple-dispatch,1-8760ts,highs,1.6.0.dev0,2023.0,ok,optimal,1.0599168019980425,504.58,10971074.848618068,,,0.1823272705078125,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 11:17:02.351084,c4-standard-2,europe-west9-a,48cfc10,OEMOF-simple-dispatch-1-8760ts,highs-1.6.0.dev0,OEMOF-simple-dispatch -OEMOF-simple-dispatch,1-8760ts,scip,8.1.0,2023.0,ok,optimal,1.3613019859985798,833.38,10971074.848625014,,,0.574287,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 11:17:04.923955,c4-standard-2,europe-west9-a,48cfc10,OEMOF-simple-dispatch-1-8760ts,scip-8.1.0,OEMOF-simple-dispatch -OEMOF-simple-dispatch,1-8760ts,cbc,2.10.11,2023.0,ok,optimal,1.0395854959933786,340.764,10971074.84862532,,,,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 11:17:07.792013,c4-standard-2,europe-west9-a,48cfc10,OEMOF-simple-dispatch-1-8760ts,cbc-2.10.11,OEMOF-simple-dispatch -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314,73-1h,gurobi,11.0.0,2023.0,ok,optimal,46.902686138993886,252.108,796885.0222917437,,,46.8559958934784,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 11:17:10.098834,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314,73-1h,highs,1.6.0.dev0,2023.0,ok,optimal,606.3913231359984,814.112,796885.0277277983,,,606.3397014141083,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 11:17:57.668810,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314,73-1h,scip,8.1.0,2023.0,ok,optimal,1496.5191370480024,1130.216,796885.0277282712,,,1496.449085,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 11:28:04.732800,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314,73-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,160.852,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 11:53:01.977583,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314 -times-nz-tui,2-24ts,gurobi,11.0.0,2023.0,ok,optimal,357.6853003629949,676.264,1402087.1011102195,,,356.2434039115906,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 12:56:06.360257,c4-standard-2,europe-west9-a,48cfc10,times-nz-tui-2-24ts,gurobi-11.0.0,times-nz-tui -times-nz-tui,2-24ts,highs,1.6.0.dev0,2023.0,ok,optimal,143.1065026389988,856.204,1402087.1200728202,,,141.7219717502594,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 13:02:05.656529,c4-standard-2,europe-west9-a,48cfc10,times-nz-tui-2-24ts,highs-1.6.0.dev0,times-nz-tui -times-nz-tui,2-24ts,scip,8.1.0,2023.0,ok,optimal,3063.557496169989,3062.06,1402087.1141087697,,,3061.948796,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 13:04:30.333899,c4-standard-2,europe-west9-a,48cfc10,times-nz-tui-2-24ts,scip-8.1.0,times-nz-tui -times-nz-tui,2-24ts,cbc,2.10.11,2023.0,ER,,,321.896,,,,,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 13:58:39.386799,c4-standard-2,europe-west9-a,48cfc10,times-nz-tui-2-24ts,cbc-2.10.11,times-nz-tui -tulipa-1_EU_investment_simple,28-52.1h,gurobi,11.0.0,2023.0,ok,optimal,1.5379701489873696,272.188,520266951.2512312,,,1.2955701351165771,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 13:58:40.123665,c4-standard-2,europe-west9-a,48cfc10,tulipa-1_EU_investment_simple-28-52.1h,gurobi-11.0.0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-52.1h,highs,1.6.0.dev0,2023.0,ok,optimal,27.53481431399996,604.608,520257276.87008464,,,27.410531520843502,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 13:58:42.379720,c4-standard-2,europe-west9-a,48cfc10,tulipa-1_EU_investment_simple-28-52.1h,highs-1.6.0.dev0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-52.1h,scip,8.1.0,2023.0,ok,optimal,10.524650387989825,513.644,520256206.2552681,,,10.307191,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 13:59:10.635253,c4-standard-2,europe-west9-a,48cfc10,tulipa-1_EU_investment_simple-28-52.1h,scip-8.1.0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-52.1h,cbc,2.10.11,2023.0,ok,optimal,11.392787563992895,197.388,520249821.6018073,,,11.22,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 13:59:21.945581,c4-standard-2,europe-west9-a,48cfc10,tulipa-1_EU_investment_simple-28-52.1h,cbc-2.10.11,tulipa-1_EU_investment_simple -genx-4_three_zones_w_policies_slack,3-1h,gurobi,12.0.0,2024.0,TO,Timeout,3600.0,1640.032,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 14:00:00.773248,c4-standard-2,europe-west9-a,48cfc10,genx-4_three_zones_w_policies_slack-3-1h,gurobi-12.0.0,genx-4_three_zones_w_policies_slack -genx-4_three_zones_w_policies_slack,3-1h,highs,1.9.0,2024.0,TO,Timeout,3600.0,3803.756,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 15:03:04.945624,c4-standard-2,europe-west9-a,48cfc10,genx-4_three_zones_w_policies_slack-3-1h,highs-1.9.0,genx-4_three_zones_w_policies_slack -genx-4_three_zones_w_policies_slack,3-1h,scip,9.2.0,2024.0,TO,Timeout,3600.0,2184.728,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 16:06:08.651753,c4-standard-2,europe-west9-a,48cfc10,genx-4_three_zones_w_policies_slack-3-1h,scip-9.2.0,genx-4_three_zones_w_policies_slack -genx-4_three_zones_w_policies_slack,3-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,218.08,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 17:09:13.311451,c4-standard-2,europe-west9-a,48cfc10,genx-4_three_zones_w_policies_slack-3-1h,cbc-2.10.12,genx-4_three_zones_w_policies_slack -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29,73-1h,gurobi,12.0.0,2024.0,ok,optimal,446.838308439008,387.836,1768933.701505115,0.0,9.192980495183612e-05,446.5351779460907,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 18:12:17.209746,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29,73-1h,highs,1.9.0,2024.0,TO,Timeout,3600.0,1610.848,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 18:19:44.709721,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29,73-1h,scip,9.2.0,2024.0,TO,Timeout,3600.0,1493.848,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 19:22:48.393689,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29,73-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,151.244,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 20:25:52.417654,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29 -OEMOF-simple-dispatch,1-8760ts,gurobi,12.0.0,2024.0,ok,optimal,0.9520690749923232,441.968,10971074.84862532,,,0.0971620082855224,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 21:28:56.725303,c4-standard-2,europe-west9-a,48cfc10,OEMOF-simple-dispatch-1-8760ts,gurobi-12.0.0,OEMOF-simple-dispatch -OEMOF-simple-dispatch,1-8760ts,highs,1.9.0,2024.0,ok,optimal,1.134328315994935,462.592,10971074.848618068,,,0.1665875911712646,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 21:28:59.259766,c4-standard-2,europe-west9-a,48cfc10,OEMOF-simple-dispatch-1-8760ts,highs-1.9.0,OEMOF-simple-dispatch -OEMOF-simple-dispatch,1-8760ts,scip,9.2.0,2024.0,ok,optimal,1.410659979999764,795.768,10971074.848625014,,,0.586894,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 21:29:02.105769,c4-standard-2,europe-west9-a,48cfc10,OEMOF-simple-dispatch-1-8760ts,scip-9.2.0,OEMOF-simple-dispatch -OEMOF-simple-dispatch,1-8760ts,cbc,2.10.12,2024.0,ok,optimal,1.8682808360026684,347.832,10971074.84862532,,,,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 21:29:05.306463,c4-standard-2,europe-west9-a,48cfc10,OEMOF-simple-dispatch-1-8760ts,cbc-2.10.12,OEMOF-simple-dispatch -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314,73-1h,gurobi,12.0.0,2024.0,ok,optimal,41.9755984180083,227.18,796885.0269494008,0.0,2.683435041849969e-05,41.92751908302307,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 21:29:08.838180,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314,73-1h,highs,1.9.0,2024.0,ok,optimal,808.2377143070044,932.864,796885.0277279087,2.2721218280387368e-15,9.95514772838169e-05,808.1471192836761,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 21:29:51.363036,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314,73-1h,scip,9.2.0,2024.0,ok,optimal,1497.039985498006,1111.54,796885.0277282712,1.6653345369377348e-15,0.0,1496.966319,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 21:43:20.128778,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314,73-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,143.304,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 22:08:17.753069,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314 -times-nz-tui,2-24ts,gurobi,12.0.0,2024.0,ok,optimal,310.20366150200425,646.176,1402087.105791976,,,308.75346398353577,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 23:11:22.249678,c4-standard-2,europe-west9-a,48cfc10,times-nz-tui-2-24ts,gurobi-12.0.0,times-nz-tui -times-nz-tui,2-24ts,highs,1.9.0,2024.0,ok,optimal,160.4863595830102,831.88,1402087.12007282,,,158.1924934387207,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 23:16:35.362747,c4-standard-2,europe-west9-a,48cfc10,times-nz-tui-2-24ts,highs-1.9.0,times-nz-tui -times-nz-tui,2-24ts,scip,9.2.0,2024.0,ok,optimal,3040.236396586988,3065.628,1402087.1141087697,,,3038.619823,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 23:19:18.763863,c4-standard-2,europe-west9-a,48cfc10,times-nz-tui-2-24ts,scip-9.2.0,times-nz-tui -times-nz-tui,2-24ts,cbc,2.10.12,2024.0,ER,,,304.488,,,,,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 00:13:06.006632,c4-standard-2,europe-west9-a,48cfc10,times-nz-tui-2-24ts,cbc-2.10.12,times-nz-tui -tulipa-1_EU_investment_simple,28-52.1h,gurobi,12.0.0,2024.0,ok,optimal,1.3087985040037893,241.768,520252739.30506414,0.0,1.690766034651249e-05,1.0464718341827393,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 00:13:06.549350,c4-standard-2,europe-west9-a,48cfc10,tulipa-1_EU_investment_simple-28-52.1h,gurobi-12.0.0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-52.1h,highs,1.9.0,2024.0,ok,optimal,27.263671854001583,555.584,520255461.06727207,7.728262474415715e-12,1.6326766790540713e-05,27.058743953704838,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 00:13:08.505166,c4-standard-2,europe-west9-a,48cfc10,tulipa-1_EU_investment_simple-28-52.1h,highs-1.9.0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-52.1h,scip,9.2.0,2024.0,ok,optimal,10.511782774992753,496.056,520256206.2552681,2.347633198951371e-11,1.7635768713554457e-05,10.294786,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 00:13:36.404676,c4-standard-2,europe-west9-a,48cfc10,tulipa-1_EU_investment_simple-28-52.1h,scip-9.2.0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-52.1h,cbc,2.10.12,2024.0,ok,optimal,11.535416248996626,194.352,520249821.6018073,0.0,0.0,11.17,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 00:13:47.613045,c4-standard-2,europe-west9-a,48cfc10,tulipa-1_EU_investment_simple-28-52.1h,cbc-2.10.12,tulipa-1_EU_investment_simple -genx-4_three_zones_w_policies_slack,3-1h,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,1766.216,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 00:14:29.433650,c4-standard-2,europe-west9-a,48cfc10,genx-4_three_zones_w_policies_slack-3-1h,gurobi-13.0.0,genx-4_three_zones_w_policies_slack -genx-4_three_zones_w_policies_slack,3-1h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1814.504,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 01:17:33.310375,c4-standard-2,europe-west9-a,48cfc10,genx-4_three_zones_w_policies_slack-3-1h,highs-1.12.0,genx-4_three_zones_w_policies_slack -genx-4_three_zones_w_policies_slack,3-1h,scip,10.0.0,2025.0,TO,Timeout,3600.0,2207.86,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 02:20:38.456374,c4-standard-2,europe-west9-a,48cfc10,genx-4_three_zones_w_policies_slack-3-1h,scip-10.0.0,genx-4_three_zones_w_policies_slack -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29,73-1h,gurobi,13.0.0,2025.0,ok,optimal,458.56562365700665,420.544,1768933.7015456865,0.0,9.564653522599636e-05,458.3026361465454,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 03:23:45.242804,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29,73-1h,highs,1.12.0,2025.0,ok,optimal,2817.091933090007,1230.848,1768933.702023293,8.804299881740934e-13,9.970118151165775e-05,2816.9731373786926,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 03:31:24.579152,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29,73-1h,scip,10.0.0,2025.0,TO,Timeout,3600.0,1503.248,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 04:18:22.425677,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29 -OEMOF-simple-dispatch,1-8760ts,gurobi,13.0.0,2025.0,ok,optimal,0.9087743220006814,490.744,10971074.84862532,,,0.0936729907989502,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 05:21:26.569274,c4-standard-2,europe-west9-a,48cfc10,OEMOF-simple-dispatch-1-8760ts,gurobi-13.0.0,OEMOF-simple-dispatch -OEMOF-simple-dispatch,1-8760ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,1.254559517998132,253.072,10971074.849,,,1.254559517998132,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 05:21:28.906160,c4-standard-2,europe-west9-a,48cfc10,OEMOF-simple-dispatch-1-8760ts,highs-hipo-1.12.0-hipo,OEMOF-simple-dispatch -OEMOF-simple-dispatch,1-8760ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,1.1039820419973694,252.928,10971074.849,,,1.1039820419973694,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 05:21:30.794807,c4-standard-2,europe-west9-a,48cfc10,OEMOF-simple-dispatch-1-8760ts,highs-ipx-1.12.0-hipo,OEMOF-simple-dispatch -OEMOF-simple-dispatch,1-8760ts,highs,1.12.0,2025.0,ok,optimal,1.208661533004488,537.224,10971074.84862532,,,0.2466964721679687,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 05:21:32.527578,c4-standard-2,europe-west9-a,48cfc10,OEMOF-simple-dispatch-1-8760ts,highs-1.12.0,OEMOF-simple-dispatch -OEMOF-simple-dispatch,1-8760ts,scip,10.0.0,2025.0,ok,optimal,1.4115378659917042,843.12,10971074.848625014,,,0.568916,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 05:21:35.308668,c4-standard-2,europe-west9-a,48cfc10,OEMOF-simple-dispatch-1-8760ts,scip-10.0.0,OEMOF-simple-dispatch -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314,73-1h,gurobi,13.0.0,2025.0,ok,optimal,47.37307202599186,256.352,796885.0272374754,0.0,8.061798210734668e-05,47.32517695426941,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 05:21:38.341278,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314,73-1h,highs,1.12.0,2025.0,ok,optimal,789.7839524810115,955.832,796885.02772824,3.552713678800501e-15,9.849037263244442e-05,789.7269415855408,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 05:22:26.422698,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314,73-1h,scip,10.0.0,2025.0,ok,optimal,1495.5926124090038,1141.228,796885.0277282712,1.6653345369377348e-15,0.0,1495.51697,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 05:35:36.899416,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314 -times-nz-tui,2-24ts,gurobi,13.0.0,2025.0,ok,optimal,245.3188606449985,676.312,1402087.1058949227,,,243.90216207504272,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 06:00:33.236349,c4-standard-2,europe-west9-a,48cfc10,times-nz-tui-2-24ts,gurobi-13.0.0,times-nz-tui -times-nz-tui,2-24ts,highs-hipo,1.12.0-hipo,2025.0,warning,Unknown,388.39535798097495,1437.3,1402087.1201,,,388.39535798097495,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 06:04:40.443791,c4-standard-2,europe-west9-a,48cfc10,times-nz-tui-2-24ts,highs-hipo-1.12.0-hipo,times-nz-tui -times-nz-tui,2-24ts,highs-ipx,1.12.0-hipo,2025.0,warning,Unknown,189.64569509698777,418.34,1402087.1201,,,189.64569509698777,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 06:11:09.470966,c4-standard-2,europe-west9-a,48cfc10,times-nz-tui-2-24ts,highs-ipx-1.12.0-hipo,times-nz-tui -times-nz-tui,2-24ts,highs,1.12.0,2025.0,ok,optimal,151.999796641001,874.648,1402087.12007282,,,150.42995405197144,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 06:14:19.748649,c4-standard-2,europe-west9-a,48cfc10,times-nz-tui-2-24ts,highs-1.12.0,times-nz-tui -times-nz-tui,2-24ts,scip,10.0.0,2025.0,ok,optimal,3069.9953578269924,3064.344,1402087.1141087697,,,3068.31677,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 06:16:53.570392,c4-standard-2,europe-west9-a,48cfc10,times-nz-tui-2-24ts,scip-10.0.0,times-nz-tui -tulipa-1_EU_investment_simple,28-52.1h,gurobi,13.0.0,2025.0,ok,optimal,1.4475033420021646,284.78,520252739.3050641,0.0,1.225736504871493e-05,1.211205005645752,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 07:11:10.099318,c4-standard-2,europe-west9-a,48cfc10,tulipa-1_EU_investment_simple-28-52.1h,gurobi-13.0.0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-52.1h,highs,1.12.0,2025.0,ok,optimal,25.580787590995897,606.728,520247747.6800969,1.1368683772161605e-13,2.075705818813797e-06,25.441053867340088,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 07:11:12.479271,c4-standard-2,europe-west9-a,48cfc10,tulipa-1_EU_investment_simple-28-52.1h,highs-1.12.0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-52.1h,scip,10.0.0,2025.0,ok,optimal,10.52923261001706,525.54,520256206.2552681,2.347633198951371e-11,1.7635768713554457e-05,10.301834,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 07:11:38.817787,c4-standard-2,europe-west9-a,48cfc10,tulipa-1_EU_investment_simple-28-52.1h,scip-10.0.0,tulipa-1_EU_investment_simple -temoa-US_9R_TS_NZ_trunc_4periods,9-12ts,glpk,5.0,2020.0,TO,Timeout,3600.0,829.68,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-16 18:22:23.629946,c4-standard-2,asia-south1-a,48cfc10,temoa-US_9R_TS_NZ_trunc_4periods-9-12ts,glpk-5.0,temoa-US_9R_TS_NZ_trunc_4periods -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,137.388,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-16 19:26:10.499322,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332 -OEMOF-tuple-as-label,1-8760ts,glpk,5.0,2020.0,ER,,,155.568,,,,,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-16 20:29:57.530697,c4-standard-2,asia-south1-a,48cfc10,OEMOF-tuple-as-label-1-8760ts,glpk-5.0,OEMOF-tuple-as-label -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,131.384,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-16 20:29:59.789736,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29 -tulipa-1_EU_investment_simple,28-2.2h,glpk,5.0,2020.0,TO,Timeout,3600.0,375.196,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-16 21:33:46.659464,c4-standard-2,asia-south1-a,48cfc10,tulipa-1_EU_investment_simple-28-2.2h,glpk-5.0,tulipa-1_EU_investment_simple -genx-6_three_zones_w_multistage-no_uc,3-1h,glpk,5.0,2020.0,ok,optimal,383.6183072059994,253.272,16995.00181,,,,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-16 22:37:32.441638,c4-standard-2,asia-south1-a,48cfc10,genx-6_three_zones_w_multistage-no_uc-3-1h,glpk-5.0,genx-6_three_zones_w_multistage-no_uc -temoa-US_9R_TS_NZ_trunc_4periods,9-12ts,gurobi,10.0.0,2022.0,ok,optimal,1718.712405184,2593.972,37165168.47256952,,,1709.2269201278689,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-16 22:45:07.020080,c4-standard-2,asia-south1-a,48cfc10,temoa-US_9R_TS_NZ_trunc_4periods-9-12ts,gurobi-10.0.0,temoa-US_9R_TS_NZ_trunc_4periods -temoa-US_9R_TS_NZ_trunc_4periods,9-12ts,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,2095.46,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-16 23:17:41.902713,c4-standard-2,asia-south1-a,48cfc10,temoa-US_9R_TS_NZ_trunc_4periods-9-12ts,highs-1.5.0.dev0,temoa-US_9R_TS_NZ_trunc_4periods -temoa-US_9R_TS_NZ_trunc_4periods,9-12ts,scip,8.0.3,2022.0,TO,Timeout,3600.0,5475.364,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 00:21:26.709295,c4-standard-2,asia-south1-a,48cfc10,temoa-US_9R_TS_NZ_trunc_4periods-9-12ts,scip-8.0.3,temoa-US_9R_TS_NZ_trunc_4periods -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332,73-1h,gurobi,10.0.0,2022.0,ok,optimal,2556.195753105003,553.652,2009767.253300932,,,2555.4126501083374,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 01:25:12.359419,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332,73-1h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1157.652,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 02:07:49.997482,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332,73-1h,scip,8.0.3,2022.0,TO,Timeout,3600.0,1532.656,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 03:11:42.119228,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332 -OEMOF-tuple-as-label,1-8760ts,gurobi,10.0.0,2022.0,ok,optimal,1.3579387810023036,316.268,1004289.0046605184,,,0.0755190849304199,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 04:15:32.733575,c4-standard-2,asia-south1-a,48cfc10,OEMOF-tuple-as-label-1-8760ts,gurobi-10.0.0,OEMOF-tuple-as-label -OEMOF-tuple-as-label,1-8760ts,highs,1.5.0.dev0,2022.0,ok,optimal,0.740015786002914,314.156,1004289.0046605184,,,0.1995751857757568,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 04:15:35.187275,c4-standard-2,asia-south1-a,48cfc10,OEMOF-tuple-as-label-1-8760ts,highs-1.5.0.dev0,OEMOF-tuple-as-label -OEMOF-tuple-as-label,1-8760ts,scip,8.0.3,2022.0,ok,optimal,0.9917547889999696,552.36,1004289.004660518,,,0.467443,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 04:15:37.032367,c4-standard-2,asia-south1-a,48cfc10,OEMOF-tuple-as-label-1-8760ts,scip-8.0.3,OEMOF-tuple-as-label -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29,73-1h,gurobi,10.0.0,2022.0,ok,optimal,104.88162735799416,245.424,784853.9996691812,,,104.78746795654295,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 04:15:39.211470,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29,73-1h,highs,1.5.0.dev0,2022.0,ok,optimal,1740.2022881449957,906.5,784853.9996691594,,,1740.0663113594055,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 04:17:24.842753,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29,73-1h,scip,8.0.3,2022.0,ok,optimal,1668.1393358610003,1249.696,784853.9996687407,,,1667.99251,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 04:46:25.813324,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29 -tulipa-1_EU_investment_simple,28-2.2h,gurobi,10.0.0,2022.0,ok,optimal,63.27659916900302,2463.156,4312460973.02377,,,58.423052072525024,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 05:18:05.652295,c4-standard-2,asia-south1-a,48cfc10,tulipa-1_EU_investment_simple-28-2.2h,gurobi-10.0.0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-2.2h,highs,1.5.0.dev0,2022.0,OOM,Out of Memory,,,,,,,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 05:19:15.633962,c4-standard-2,asia-south1-a,48cfc10,tulipa-1_EU_investment_simple-28-2.2h,highs-1.5.0.dev0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-2.2h,scip,8.0.3,2022.0,OOM,Out of Memory,,,,,,,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 05:52:59.208810,c4-standard-2,asia-south1-a,48cfc10,tulipa-1_EU_investment_simple-28-2.2h,scip-8.0.3,tulipa-1_EU_investment_simple -genx-6_three_zones_w_multistage-no_uc,3-1h,gurobi,10.0.0,2022.0,ok,optimal,233.90724408700044,467.668,16995.00181074792,,,230.3328559398651,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 06:23:58.490569,c4-standard-2,asia-south1-a,48cfc10,genx-6_three_zones_w_multistage-no_uc-3-1h,gurobi-10.0.0,genx-6_three_zones_w_multistage-no_uc -genx-6_three_zones_w_multistage-no_uc,3-1h,highs,1.5.0.dev0,2022.0,ok,optimal,167.66629709099652,530.776,16995.00181074802,,,166.66051602363586,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 06:27:54.490293,c4-standard-2,asia-south1-a,48cfc10,genx-6_three_zones_w_multistage-no_uc-3-1h,highs-1.5.0.dev0,genx-6_three_zones_w_multistage-no_uc -genx-6_three_zones_w_multistage-no_uc,3-1h,scip,8.0.3,2022.0,ok,optimal,989.9429288949976,1072.452,16995.001810747788,,,988.987038,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 06:30:43.708395,c4-standard-2,asia-south1-a,48cfc10,genx-6_three_zones_w_multistage-no_uc-3-1h,scip-8.0.3,genx-6_three_zones_w_multistage-no_uc -temoa-US_9R_TS_NZ_trunc_4periods,9-12ts,gurobi,11.0.0,2023.0,ok,optimal,2082.416368762999,2537.096,37165168.47256574,,,2072.3648869991302,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 06:51:11.594147,c4-standard-2,asia-south1-a,48cfc10,temoa-US_9R_TS_NZ_trunc_4periods-9-12ts,gurobi-11.0.0,temoa-US_9R_TS_NZ_trunc_4periods -temoa-US_9R_TS_NZ_trunc_4periods,9-12ts,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,2125.46,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 07:29:58.348052,c4-standard-2,asia-south1-a,48cfc10,temoa-US_9R_TS_NZ_trunc_4periods-9-12ts,highs-1.6.0.dev0,temoa-US_9R_TS_NZ_trunc_4periods -temoa-US_9R_TS_NZ_trunc_4periods,9-12ts,scip,8.1.0,2023.0,TO,Timeout,3600.0,5497.236,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 08:33:51.770369,c4-standard-2,asia-south1-a,48cfc10,temoa-US_9R_TS_NZ_trunc_4periods-9-12ts,scip-8.1.0,temoa-US_9R_TS_NZ_trunc_4periods -temoa-US_9R_TS_NZ_trunc_4periods,9-12ts,cbc,2.10.11,2023.0,TO,Timeout,3600.0,861.128,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 09:38:00.793609,c4-standard-2,asia-south1-a,48cfc10,temoa-US_9R_TS_NZ_trunc_4periods-9-12ts,cbc-2.10.11,temoa-US_9R_TS_NZ_trunc_4periods -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332,73-1h,gurobi,11.0.0,2023.0,ok,optimal,2526.8329990290003,549.784,2009767.253300932,,,2526.08491897583,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 10:41:58.088896,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332,73-1h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,1166.96,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 11:24:05.832113,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332,73-1h,scip,8.1.0,2023.0,TO,Timeout,3600.0,1559.996,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 12:27:52.615435,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332,73-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,168.332,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 13:31:39.108737,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332 -OEMOF-tuple-as-label,1-8760ts,gurobi,11.0.0,2023.0,ok,optimal,1.1005074190034063,337.384,1004289.0046605184,,,0.0758070945739746,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 14:35:25.150110,c4-standard-2,asia-south1-a,48cfc10,OEMOF-tuple-as-label-1-8760ts,gurobi-11.0.0,OEMOF-tuple-as-label -OEMOF-tuple-as-label,1-8760ts,highs,1.6.0.dev0,2023.0,ok,optimal,0.8241896249965066,346.916,1004289.0046605184,,,0.2280080318450927,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 14:35:27.421179,c4-standard-2,asia-south1-a,48cfc10,OEMOF-tuple-as-label-1-8760ts,highs-1.6.0.dev0,OEMOF-tuple-as-label -OEMOF-tuple-as-label,1-8760ts,scip,8.1.0,2023.0,ok,optimal,0.889988966009696,569.952,1004289.004660518,,,0.4672389999999999,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 14:35:29.544591,c4-standard-2,asia-south1-a,48cfc10,OEMOF-tuple-as-label-1-8760ts,scip-8.1.0,OEMOF-tuple-as-label -OEMOF-tuple-as-label,1-8760ts,cbc,2.10.11,2023.0,ok,optimal,0.7964570439944509,258.048,1004289.00466052,,,,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 14:35:31.765085,c4-standard-2,asia-south1-a,48cfc10,OEMOF-tuple-as-label-1-8760ts,cbc-2.10.11,OEMOF-tuple-as-label -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29,73-1h,gurobi,11.0.0,2023.0,ok,optimal,90.87020376299915,274.32,784853.9996645348,,,90.79363417625429,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 14:35:33.720452,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29,73-1h,highs,1.6.0.dev0,2023.0,ok,optimal,1667.171968552997,926.7,784853.9996691594,,,1667.0873413085938,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 14:37:05.386434,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29,73-1h,scip,8.1.0,2023.0,ok,optimal,1626.6270525220025,1264.336,784853.9996687407,,,1626.508938,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 15:04:53.380088,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29,73-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,162.796,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 15:35:46.793895,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29 -tulipa-1_EU_investment_simple,28-2.2h,gurobi,11.0.0,2023.0,ok,optimal,69.60015963300248,2435.54,4312886332.854419,,,65.79237794876099,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 16:39:32.516116,c4-standard-2,asia-south1-a,48cfc10,tulipa-1_EU_investment_simple-28-2.2h,gurobi-11.0.0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-2.2h,highs,1.6.0.dev0,2023.0,OOM,Out of Memory,,,,,,,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 16:40:46.602827,c4-standard-2,asia-south1-a,48cfc10,tulipa-1_EU_investment_simple-28-2.2h,highs-1.6.0.dev0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-2.2h,scip,8.1.0,2023.0,OOM,Out of Memory,,,,,,,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 17:08:40.474138,c4-standard-2,asia-south1-a,48cfc10,tulipa-1_EU_investment_simple-28-2.2h,scip-8.1.0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-2.2h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,406.452,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 17:35:03.417688,c4-standard-2,asia-south1-a,48cfc10,tulipa-1_EU_investment_simple-28-2.2h,cbc-2.10.11,tulipa-1_EU_investment_simple -genx-6_three_zones_w_multistage-no_uc,3-1h,gurobi,11.0.0,2023.0,ok,optimal,152.70521855900006,463.704,16995.001810747897,,,151.27288699150083,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 18:38:49.095278,c4-standard-2,asia-south1-a,48cfc10,genx-6_three_zones_w_multistage-no_uc-3-1h,gurobi-11.0.0,genx-6_three_zones_w_multistage-no_uc -genx-6_three_zones_w_multistage-no_uc,3-1h,highs,1.6.0.dev0,2023.0,ok,optimal,160.79502036700433,524.38,16995.00181074802,,,159.94938731193542,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 18:41:23.214857,c4-standard-2,asia-south1-a,48cfc10,genx-6_three_zones_w_multistage-no_uc-3-1h,highs-1.6.0.dev0,genx-6_three_zones_w_multistage-no_uc -genx-6_three_zones_w_multistage-no_uc,3-1h,scip,8.1.0,2023.0,ok,optimal,963.2882332890003,1067.484,16995.001810747788,,,962.484209,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 18:44:05.354507,c4-standard-2,asia-south1-a,48cfc10,genx-6_three_zones_w_multistage-no_uc-3-1h,scip-8.1.0,genx-6_three_zones_w_multistage-no_uc -genx-6_three_zones_w_multistage-no_uc,3-1h,cbc,2.10.11,2023.0,ok,optimal,173.98110747200553,310.644,16995.00181075,,,,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 19:00:10.271164,c4-standard-2,asia-south1-a,48cfc10,genx-6_three_zones_w_multistage-no_uc-3-1h,cbc-2.10.11,genx-6_three_zones_w_multistage-no_uc -temoa-US_9R_TS_NZ_trunc_4periods,9-12ts,gurobi,12.0.0,2024.0,ok,optimal,1817.6245470150025,2446.648,37165168.47228065,,,1807.571442127228,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 19:03:48.078335,c4-standard-2,asia-south1-a,48cfc10,temoa-US_9R_TS_NZ_trunc_4periods-9-12ts,gurobi-12.0.0,temoa-US_9R_TS_NZ_trunc_4periods -temoa-US_9R_TS_NZ_trunc_4periods,9-12ts,highs,1.9.0,2024.0,ok,optimal,3460.7347949950054,2793.66,37165168.47339525,,,3449.084481239319,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 19:38:03.377345,c4-standard-2,asia-south1-a,48cfc10,temoa-US_9R_TS_NZ_trunc_4periods-9-12ts,highs-1.9.0,temoa-US_9R_TS_NZ_trunc_4periods -temoa-US_9R_TS_NZ_trunc_4periods,9-12ts,scip,9.2.0,2024.0,TO,Timeout,3600.0,5478.132,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 20:39:43.052310,c4-standard-2,asia-south1-a,48cfc10,temoa-US_9R_TS_NZ_trunc_4periods-9-12ts,scip-9.2.0,temoa-US_9R_TS_NZ_trunc_4periods -temoa-US_9R_TS_NZ_trunc_4periods,9-12ts,cbc,2.10.12,2024.0,TO,Timeout,3600.0,843.496,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 21:43:28.417465,c4-standard-2,asia-south1-a,48cfc10,temoa-US_9R_TS_NZ_trunc_4periods-9-12ts,cbc-2.10.12,temoa-US_9R_TS_NZ_trunc_4periods -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332,73-1h,gurobi,12.0.0,2024.0,ok,optimal,1928.721637156996,527.308,2009767.247056544,0.0,9.966633808769624e-05,1928.0696721076963,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 22:47:13.889166,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332,73-1h,highs,1.9.0,2024.0,TO,Timeout,3600.0,1316.548,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 23:19:23.390059,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332,73-1h,scip,9.2.0,2024.0,TO,Timeout,3600.0,1552.252,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 00:23:07.976757,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332,73-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,151.18,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 01:26:53.599160,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332 -OEMOF-tuple-as-label,1-8760ts,gurobi,12.0.0,2024.0,ok,optimal,1.0694705430069007,307.508,1004289.0046605184,,,0.0770490169525146,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 02:30:39.301171,c4-standard-2,asia-south1-a,48cfc10,OEMOF-tuple-as-label-1-8760ts,gurobi-12.0.0,OEMOF-tuple-as-label -OEMOF-tuple-as-label,1-8760ts,highs,1.9.0,2024.0,ok,optimal,0.7588983290042961,304.328,1004289.0046605184,,,0.2127790451049804,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 02:30:41.631522,c4-standard-2,asia-south1-a,48cfc10,OEMOF-tuple-as-label-1-8760ts,highs-1.9.0,OEMOF-tuple-as-label -OEMOF-tuple-as-label,1-8760ts,scip,9.2.0,2024.0,ok,optimal,0.8798668589879526,542.624,1004289.004660518,,,0.4549809999999999,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 02:30:43.717186,c4-standard-2,asia-south1-a,48cfc10,OEMOF-tuple-as-label-1-8760ts,scip-9.2.0,OEMOF-tuple-as-label -OEMOF-tuple-as-label,1-8760ts,cbc,2.10.12,2024.0,ok,optimal,1.286798228000407,277.436,1004289.00466052,,,,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 02:30:45.939230,c4-standard-2,asia-south1-a,48cfc10,OEMOF-tuple-as-label-1-8760ts,cbc-2.10.12,OEMOF-tuple-as-label -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29,73-1h,gurobi,12.0.0,2024.0,ok,optimal,56.170571927999845,236.16,784853.9996554407,0.0,0.0,56.091856956481934,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 02:30:48.523481,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29,73-1h,highs,1.9.0,2024.0,ok,optimal,1387.658822049998,809.136,784853.99966908,0.0,9.981830093696088e-05,1387.513875246048,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 02:31:45.358040,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29,73-1h,scip,9.2.0,2024.0,ok,optimal,1620.467859190001,1248.772,784853.9996687407,8.327537480992175e-11,6.58427607043673e-05,1620.34988,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 02:54:53.684648,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29,73-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,145.236,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 03:21:54.900126,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29 -tulipa-1_EU_investment_simple,28-2.2h,gurobi,12.0.0,2024.0,ok,optimal,98.68898326299676,2401.092,4312679243.838932,0.0,9.430747749932828e-05,94.29726004600523,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 04:25:41.392787,c4-standard-2,asia-south1-a,48cfc10,tulipa-1_EU_investment_simple-28-2.2h,gurobi-12.0.0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-2.2h,highs,1.9.0,2024.0,OOM,Out of Memory,,,,,,,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 04:27:28.047216,c4-standard-2,asia-south1-a,48cfc10,tulipa-1_EU_investment_simple-28-2.2h,highs-1.9.0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-2.2h,scip,9.2.0,2024.0,OOM,Out of Memory,,,,,,,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 04:59:50.076952,c4-standard-2,asia-south1-a,48cfc10,tulipa-1_EU_investment_simple-28-2.2h,scip-9.2.0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-2.2h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,389.284,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 05:29:58.834084,c4-standard-2,asia-south1-a,48cfc10,tulipa-1_EU_investment_simple-28-2.2h,cbc-2.10.12,tulipa-1_EU_investment_simple -genx-6_three_zones_w_multistage-no_uc,3-1h,gurobi,12.0.0,2024.0,ok,optimal,200.5858987919928,452.04,16995.001810748305,,,199.16801619529724,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 06:33:46.517117,c4-standard-2,asia-south1-a,48cfc10,genx-6_three_zones_w_multistage-no_uc-3-1h,gurobi-12.0.0,genx-6_three_zones_w_multistage-no_uc -genx-6_three_zones_w_multistage-no_uc,3-1h,highs,1.9.0,2024.0,ok,optimal,159.10011009899608,515.248,16995.001810747806,,,158.0327503681183,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 06:37:08.876461,c4-standard-2,asia-south1-a,48cfc10,genx-6_three_zones_w_multistage-no_uc-3-1h,highs-1.9.0,genx-6_three_zones_w_multistage-no_uc -genx-6_three_zones_w_multistage-no_uc,3-1h,scip,9.2.0,2024.0,ok,optimal,963.7794418289996,1056.492,16995.001810747788,,,962.970776,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 06:39:49.793103,c4-standard-2,asia-south1-a,48cfc10,genx-6_three_zones_w_multistage-no_uc-3-1h,scip-9.2.0,genx-6_three_zones_w_multistage-no_uc -genx-6_three_zones_w_multistage-no_uc,3-1h,cbc,2.10.12,2024.0,ok,optimal,174.7246283919958,345.356,16995.00181075,,,,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 06:55:55.514494,c4-standard-2,asia-south1-a,48cfc10,genx-6_three_zones_w_multistage-no_uc-3-1h,cbc-2.10.12,genx-6_three_zones_w_multistage-no_uc -temoa-US_9R_TS_NZ_trunc_4periods,9-12ts,gurobi,13.0.0,2025.0,ok,optimal,1734.7496437319787,2651.256,37165168.47264265,,,1724.965970993042,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 06:59:27.883780,c4-standard-2,asia-south1-a,48cfc10,temoa-US_9R_TS_NZ_trunc_4periods-9-12ts,gurobi-13.0.0,temoa-US_9R_TS_NZ_trunc_4periods -temoa-US_9R_TS_NZ_trunc_4periods,9-12ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,848.4087558590109,2276.756,37165168.473,,,848.4087558590109,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 07:32:19.424521,c4-standard-2,asia-south1-a,48cfc10,temoa-US_9R_TS_NZ_trunc_4periods-9-12ts,highs-hipo-1.12.0-hipo,temoa-US_9R_TS_NZ_trunc_4periods -temoa-US_9R_TS_NZ_trunc_4periods,9-12ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,571.6662972980121,1830.204,37165168.631,,,571.6662972980121,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 07:46:28.606976,c4-standard-2,asia-south1-a,48cfc10,temoa-US_9R_TS_NZ_trunc_4periods-9-12ts,highs-ipx-1.12.0-hipo,temoa-US_9R_TS_NZ_trunc_4periods -temoa-US_9R_TS_NZ_trunc_4periods,9-12ts,highs,1.12.0,2025.0,TO,Timeout,3600.0,2262.268,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 07:56:01.023023,c4-standard-2,asia-south1-a,48cfc10,temoa-US_9R_TS_NZ_trunc_4periods-9-12ts,highs-1.12.0,temoa-US_9R_TS_NZ_trunc_4periods -temoa-US_9R_TS_NZ_trunc_4periods,9-12ts,scip,10.0.0,2025.0,TO,Timeout,3600.0,5497.732,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 08:59:48.780382,c4-standard-2,asia-south1-a,48cfc10,temoa-US_9R_TS_NZ_trunc_4periods-9-12ts,scip-10.0.0,temoa-US_9R_TS_NZ_trunc_4periods -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332,73-1h,gurobi,13.0.0,2025.0,ok,optimal,1727.9972080510051,542.66,2009767.253300932,0.0,9.995256716479788e-05,1727.2783331871033,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 10:03:35.798865,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332,73-1h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1563.212,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 10:32:25.012581,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332,73-1h,scip,10.0.0,2025.0,TO,Timeout,3600.0,1581.128,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 11:36:11.517456,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332 -OEMOF-tuple-as-label,1-8760ts,gurobi,13.0.0,2025.0,ok,optimal,1.1108724339865148,348.92,1004289.0046605184,,,0.0773000717163086,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 12:39:57.697845,c4-standard-2,asia-south1-a,48cfc10,OEMOF-tuple-as-label-1-8760ts,gurobi-13.0.0,OEMOF-tuple-as-label -OEMOF-tuple-as-label,1-8760ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,1.7817458430072293,163.252,1004289.0047,,,1.7817458430072293,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 12:40:00.124269,c4-standard-2,asia-south1-a,48cfc10,OEMOF-tuple-as-label-1-8760ts,highs-hipo-1.12.0-hipo,OEMOF-tuple-as-label -OEMOF-tuple-as-label,1-8760ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,1.4934939949889667,164.028,1004289.0048,,,1.4934939949889667,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 12:40:02.679607,c4-standard-2,asia-south1-a,48cfc10,OEMOF-tuple-as-label-1-8760ts,highs-ipx-1.12.0-hipo,OEMOF-tuple-as-label -OEMOF-tuple-as-label,1-8760ts,highs,1.12.0,2025.0,ok,optimal,0.9272031209839042,356.516,1004289.0046605184,,,0.2708816528320312,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 12:40:04.944492,c4-standard-2,asia-south1-a,48cfc10,OEMOF-tuple-as-label-1-8760ts,highs-1.12.0,OEMOF-tuple-as-label -OEMOF-tuple-as-label,1-8760ts,scip,10.0.0,2025.0,ok,optimal,0.9458848389913328,579.284,1004289.004660518,,,0.4805709999999999,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 12:40:07.253755,c4-standard-2,asia-south1-a,48cfc10,OEMOF-tuple-as-label-1-8760ts,scip-10.0.0,OEMOF-tuple-as-label -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29,73-1h,gurobi,13.0.0,2025.0,ok,optimal,94.39558973998646,263.524,784853.996612408,5.144995302528525e-07,9.909968106912202e-05,94.31821298599245,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 12:40:09.578809,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29,73-1h,highs,1.12.0,2025.0,ok,optimal,1008.2518913639942,897.62,784853.9996691593,5.218048215738236e-15,9.158817910995704e-05,1008.1609289646148,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 12:41:44.837972,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29,73-1h,scip,10.0.0,2025.0,ok,optimal,1633.450458284991,1273.164,784853.9996687407,8.327537480992175e-11,6.58427607043673e-05,1633.325955,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 12:58:33.918451,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29 -tulipa-1_EU_investment_simple,28-2.2h,gurobi,13.0.0,2025.0,ok,optimal,90.10174280998764,2244.0,4312460973.023714,0.0,5.369084521375414e-05,86.20719408988953,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 13:25:48.295553,c4-standard-2,asia-south1-a,48cfc10,tulipa-1_EU_investment_simple-28-2.2h,gurobi-13.0.0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-2.2h,highs,1.12.0,2025.0,OOM,Out of Memory,,,,,,,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 13:27:24.077676,c4-standard-2,asia-south1-a,48cfc10,tulipa-1_EU_investment_simple-28-2.2h,highs-1.12.0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-2.2h,scip,10.0.0,2025.0,OOM,Out of Memory,,,,,,,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 13:56:53.395702,c4-standard-2,asia-south1-a,48cfc10,tulipa-1_EU_investment_simple-28-2.2h,scip-10.0.0,tulipa-1_EU_investment_simple -genx-6_three_zones_w_multistage-no_uc,3-1h,gurobi,13.0.0,2025.0,ok,optimal,180.68787302801505,473.084,16995.001810747974,,,179.25116395950317,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 14:23:16.386357,c4-standard-2,asia-south1-a,48cfc10,genx-6_three_zones_w_multistage-no_uc-3-1h,gurobi-13.0.0,genx-6_three_zones_w_multistage-no_uc -genx-6_three_zones_w_multistage-no_uc,3-1h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,35.83172514400212,283.376,16995.001811,,,35.83172514400212,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 14:26:19.917928,c4-standard-2,asia-south1-a,48cfc10,genx-6_three_zones_w_multistage-no_uc-3-1h,highs-hipo-1.12.0-hipo,genx-6_three_zones_w_multistage-no_uc -genx-6_three_zones_w_multistage-no_uc,3-1h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,61.15120237699011,164.628,16995.001811,,,61.15120237699011,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 14:26:56.518647,c4-standard-2,asia-south1-a,48cfc10,genx-6_three_zones_w_multistage-no_uc-3-1h,highs-ipx-1.12.0-hipo,genx-6_three_zones_w_multistage-no_uc -genx-6_three_zones_w_multistage-no_uc,3-1h,highs,1.12.0,2025.0,ok,optimal,157.91092143399874,529.184,16995.001810747963,,,157.05902910232544,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 14:27:58.425672,c4-standard-2,asia-south1-a,48cfc10,genx-6_three_zones_w_multistage-no_uc-3-1h,highs-1.12.0,genx-6_three_zones_w_multistage-no_uc -genx-6_three_zones_w_multistage-no_uc,3-1h,scip,10.0.0,2025.0,ok,optimal,965.1333971459826,1079.98,16995.001810747788,,,964.297094,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 14:30:37.804962,c4-standard-2,asia-south1-a,48cfc10,genx-6_three_zones_w_multistage-no_uc-3-1h,scip-10.0.0,genx-6_three_zones_w_multistage-no_uc -SWITCH-China-open-model,32-433ts,gurobi,13.0.0,2025.0,ok,optimal,716.099566616,44037.676,3193471748610.4263,,,593.7976639270782,86400.0,benchmark-instance-l-24,20251216-rerun-2,2025-12-16 18:20:13.721102,c4-highmem-16,europe-west9-a,48cfc10,SWITCH-China-open-model-32-433ts,gurobi-13.0.0,SWITCH-China-open-model -SWITCH-China-open-model,32-433ts,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,86400.0,162.9,,,,86400.0,86400.0,benchmark-instance-l-24,20251216-rerun-2,2025-12-16 18:37:47.101715,c4-highmem-16,europe-west9-a,48cfc10,SWITCH-China-open-model-32-433ts,highs-hipo-1.12.0-hipo,SWITCH-China-open-model -SWITCH-China-open-model,32-433ts,highs-ipx,1.12.0-hipo,2025.0,warning,Unknown,76800.02120384901,29839.16,3193471749900.0,,,76800.02120384901,86400.0,benchmark-instance-l-24,20251216-rerun-2,2025-12-17 18:40:46.552430,c4-highmem-16,europe-west9-a,48cfc10,SWITCH-China-open-model-32-433ts,highs-ipx-1.12.0-hipo,SWITCH-China-open-model -SWITCH-China-open-model,32-433ts,highs,1.12.0,2025.0,TO,Timeout,86400.0,33354.784,,,,86400.0,86400.0,benchmark-instance-l-24,20251216-rerun-2,2025-12-18 16:03:49.554379,c4-highmem-16,europe-west9-a,48cfc10,SWITCH-China-open-model-32-433ts,highs-1.12.0,SWITCH-China-open-model -SWITCH-China-open-model,32-433ts,scip,10.0.0,2025.0,TO,Timeout,86400.0,55938.048,,,,86400.0,86400.0,benchmark-instance-l-24,20251216-rerun-2,2025-12-19 16:06:48.981973,c4-highmem-16,europe-west9-a,48cfc10,SWITCH-China-open-model-32-433ts,scip-10.0.0,SWITCH-China-open-model -SWITCH-China-open-model,32-433ts,cbc,2.10.12,2024.0,TO,Timeout,86400.0,10862.744,,,,86400.0,86400.0,benchmark-instance-l-24,20251216-rerun-2,2025-12-20 16:10:20.081723,c4-highmem-16,europe-west9-a,48cfc10,SWITCH-China-open-model-32-433ts,cbc-2.10.12,SWITCH-China-open-model -genx-5_three_zones_w_piecewise_fuel,3-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,202.948,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-16 18:21:14.223816,c4-standard-2,europe-west9-c,48cfc10,genx-5_three_zones_w_piecewise_fuel-3-1h,glpk-5.0,genx-5_three_zones_w_piecewise_fuel -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,192.784,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-16 19:24:41.489362,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29 -OEMOF-result-object,1-8760ts,glpk,5.0,2020.0,ER,,,148.028,,,,,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-16 20:28:09.096801,c4-standard-2,europe-west9-c,48cfc10,OEMOF-result-object-1-8760ts,glpk-5.0,OEMOF-result-object -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,157.168,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-16 20:28:13.438327,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,129.596,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-16 21:31:40.046446,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29 -pypsa-power+ely+battery-mod,1-1h,glpk,5.0,2020.0,ok,unknown,201.93103525700096,283.612,31714266240.0,,,,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-16 22:35:07.402584,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely+battery-mod-1-1h,glpk-5.0,pypsa-power+ely+battery-mod -times-etimeseu-france-elec+heat-multi_stage,1-64ts,glpk,5.0,2020.0,warning,unknown,0.0265903320014331,166.388,,,,,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-16 22:38:29.813154,c4-standard-2,europe-west9-c,48cfc10,times-etimeseu-france-elec+heat-multi_stage-1-64ts,glpk-5.0,times-etimeseu-france-elec+heat-multi_stage -genx-5_three_zones_w_piecewise_fuel,3-1h,gurobi,10.0.0,2022.0,TO,Timeout,3600.0,1230.664,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-16 22:39:11.789866,c4-standard-2,europe-west9-c,48cfc10,genx-5_three_zones_w_piecewise_fuel-3-1h,gurobi-10.0.0,genx-5_three_zones_w_piecewise_fuel -genx-5_three_zones_w_piecewise_fuel,3-1h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,3156.848,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-16 23:42:39.120768,c4-standard-2,europe-west9-c,48cfc10,genx-5_three_zones_w_piecewise_fuel-3-1h,highs-1.5.0.dev0,genx-5_three_zones_w_piecewise_fuel -genx-5_three_zones_w_piecewise_fuel,3-1h,scip,8.0.3,2022.0,TO,Timeout,3600.0,1617.9,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 00:46:05.501110,c4-standard-2,europe-west9-c,48cfc10,genx-5_three_zones_w_piecewise_fuel-3-1h,scip-8.0.3,genx-5_three_zones_w_piecewise_fuel -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29,73-1h,gurobi,10.0.0,2022.0,ok,optimal,483.8345795569985,455.384,2090675.1347196985,,,483.3785741329193,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 01:49:32.088314,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29,73-1h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1028.796,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 01:57:37.167776,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29,73-1h,scip,8.0.3,2022.0,TO,Timeout,3600.0,1914.752,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 03:01:04.586744,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29 -OEMOF-result-object,1-8760ts,gurobi,10.0.0,2022.0,ok,optimal,0.7432489290004014,307.536,17570075046.756588,,,0.0870471000671386,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 04:04:31.521699,c4-standard-2,europe-west9-c,48cfc10,OEMOF-result-object-1-8760ts,gurobi-10.0.0,OEMOF-result-object -OEMOF-result-object,1-8760ts,highs,1.5.0.dev0,2022.0,ok,optimal,0.7681543970029452,304.804,17570075046.75652,,,0.2811012268066406,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 04:04:33.274802,c4-standard-2,europe-west9-c,48cfc10,OEMOF-result-object-1-8760ts,highs-1.5.0.dev0,OEMOF-result-object -OEMOF-result-object,1-8760ts,scip,8.0.3,2022.0,ok,optimal,2.011490497003251,551.3,17570075046.756535,,,1.542503,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 04:04:35.025763,c4-standard-2,europe-west9-c,48cfc10,OEMOF-result-object-1-8760ts,scip-8.0.3,OEMOF-result-object -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314,73-1h,gurobi,10.0.0,2022.0,ok,optimal,42.55571528900328,254.344,902579.3504088965,,,42.4133288860321,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 04:04:38.118405,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314,73-1h,highs,1.5.0.dev0,2022.0,ok,optimal,417.2579458209948,580.692,902579.3504072418,,,416.9028792381287,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 04:05:21.579641,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314,73-1h,scip,8.0.3,2022.0,ok,optimal,1294.8783702690052,1032.296,902579.350408596,,,1294.669039,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 04:12:19.748821,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29,73-1h,gurobi,10.0.0,2022.0,ok,optimal,98.7602809240052,265.664,784744.6320477482,,,98.52754998207092,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 04:33:55.595542,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29,73-1h,highs,1.5.0.dev0,2022.0,ok,optimal,1025.3713397739994,826.404,784744.6321437921,,,1025.2764585018158,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 04:35:35.025844,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29,73-1h,scip,8.0.3,2022.0,ok,optimal,1739.7962604260028,1267.132,784744.6320975025,,,1739.692171,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 04:52:41.066765,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29 -pypsa-power+ely+battery-mod,1-1h,gurobi,10.0.0,2022.0,ok,optimal,13.841102698999748,492.508,31715824201.142437,,,13.123753786087036,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 05:25:08.837585,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely+battery-mod-1-1h,gurobi-10.0.0,pypsa-power+ely+battery-mod -pypsa-power+ely+battery-mod,1-1h,highs,1.5.0.dev0,2022.0,ok,optimal,42.81054182100343,575.044,31715824201.142395,,,41.89698028564453,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 05:25:24.071920,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely+battery-mod-1-1h,highs-1.5.0.dev0,pypsa-power+ely+battery-mod -pypsa-power+ely+battery-mod,1-1h,scip,8.0.3,2022.0,ok,optimal,191.9952481739965,1173.212,31715824201.1424,,,191.085269,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 05:26:08.269183,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely+battery-mod-1-1h,scip-8.0.3,pypsa-power+ely+battery-mod -times-etimeseu-france-elec+heat-multi_stage,1-64ts,gurobi,10.0.0,2022.0,ok,optimal,5.978178195997316,328.832,423183.4347354729,,,5.358130931854248,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 05:29:22.052538,c4-standard-2,europe-west9-c,48cfc10,times-etimeseu-france-elec+heat-multi_stage-1-64ts,gurobi-10.0.0,times-etimeseu-france-elec+heat-multi_stage -times-etimeseu-france-elec+heat-multi_stage,1-64ts,highs,1.5.0.dev0,2022.0,ok,optimal,19.91534291500284,360.688,423183.4347354723,,,19.221635341644287,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 05:29:29.185366,c4-standard-2,europe-west9-c,48cfc10,times-etimeseu-france-elec+heat-multi_stage-1-64ts,highs-1.5.0.dev0,times-etimeseu-france-elec+heat-multi_stage -times-etimeseu-france-elec+heat-multi_stage,1-64ts,scip,8.0.3,2022.0,ok,optimal,85.27569630599464,1962.724,423183.43473547255,,,84.608388,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 05:29:50.247876,c4-standard-2,europe-west9-c,48cfc10,times-etimeseu-france-elec+heat-multi_stage-1-64ts,scip-8.0.3,times-etimeseu-france-elec+heat-multi_stage -genx-5_three_zones_w_piecewise_fuel,3-1h,gurobi,11.0.0,2023.0,TO,Timeout,3600.0,1234.964,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 05:34:33.477464,c4-standard-2,europe-west9-c,48cfc10,genx-5_three_zones_w_piecewise_fuel-3-1h,gurobi-11.0.0,genx-5_three_zones_w_piecewise_fuel -genx-5_three_zones_w_piecewise_fuel,3-1h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,3176.62,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 06:38:00.513661,c4-standard-2,europe-west9-c,48cfc10,genx-5_three_zones_w_piecewise_fuel-3-1h,highs-1.6.0.dev0,genx-5_three_zones_w_piecewise_fuel -genx-5_three_zones_w_piecewise_fuel,3-1h,scip,8.1.0,2023.0,TO,Timeout,3600.0,1632.54,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 07:41:27.209593,c4-standard-2,europe-west9-c,48cfc10,genx-5_three_zones_w_piecewise_fuel-3-1h,scip-8.1.0,genx-5_three_zones_w_piecewise_fuel -genx-5_three_zones_w_piecewise_fuel,3-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,235.0,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 08:44:53.819258,c4-standard-2,europe-west9-c,48cfc10,genx-5_three_zones_w_piecewise_fuel-3-1h,cbc-2.10.11,genx-5_three_zones_w_piecewise_fuel -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29,73-1h,gurobi,11.0.0,2023.0,ok,optimal,506.0931920700023,463.28,2090675.135799095,,,505.7081038951874,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 09:48:20.658745,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29,73-1h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,1019.784,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 09:56:47.857734,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29,73-1h,scip,8.1.0,2023.0,TO,Timeout,3600.0,1930.736,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 11:00:15.163574,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29,73-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,224.504,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 12:03:43.102359,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29 -OEMOF-result-object,1-8760ts,gurobi,11.0.0,2023.0,ok,optimal,0.6337544169946341,327.72,17570075046.756588,,,0.0845558643341064,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 13:07:09.781711,c4-standard-2,europe-west9-c,48cfc10,OEMOF-result-object-1-8760ts,gurobi-11.0.0,OEMOF-result-object -OEMOF-result-object,1-8760ts,highs,1.6.0.dev0,2023.0,ok,optimal,0.7751051499944879,334.772,17570075046.75652,,,0.2909367084503174,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 13:07:11.520419,c4-standard-2,europe-west9-c,48cfc10,OEMOF-result-object-1-8760ts,highs-1.6.0.dev0,OEMOF-result-object -OEMOF-result-object,1-8760ts,scip,8.1.0,2023.0,ok,optimal,1.95246213999053,572.644,17570075046.756535,,,1.55612,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 13:07:13.422986,c4-standard-2,europe-west9-c,48cfc10,OEMOF-result-object-1-8760ts,scip-8.1.0,OEMOF-result-object -OEMOF-result-object,1-8760ts,cbc,2.10.11,2023.0,ok,optimal,0.7627988000022015,252.268,17570075046.756565,,,,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 13:07:16.582308,c4-standard-2,europe-west9-c,48cfc10,OEMOF-result-object-1-8760ts,cbc-2.10.11,OEMOF-result-object -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314,73-1h,gurobi,11.0.0,2023.0,ok,optimal,34.350268951006,262.304,902579.3504095896,,,34.22081398963928,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 13:07:18.398745,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314,73-1h,highs,1.6.0.dev0,2023.0,ok,optimal,410.3225393430039,607.396,902579.3504072418,,,410.1047174930573,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 13:07:53.657318,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314,73-1h,scip,8.1.0,2023.0,ok,optimal,1295.8047287439986,1039.196,902579.350408596,,,1295.616306,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 13:14:44.877640,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314,73-1h,cbc,2.10.11,2023.0,ok,optimal,3380.6046685939946,303.296,902579.3504074,,,3380.42,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 13:36:21.646816,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29,73-1h,gurobi,11.0.0,2023.0,ok,optimal,88.31783511300455,277.972,784744.6321438244,,,88.12187695503235,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 14:36:09.524424,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29,73-1h,highs,1.6.0.dev0,2023.0,ok,optimal,999.9305779449932,850.728,784744.6321437921,,,999.8708975315094,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 14:37:38.609867,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29,73-1h,scip,8.1.0,2023.0,ok,optimal,1742.0926936210017,1277.124,784744.6320975025,,,1742.012794,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 14:54:19.304794,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29,73-1h,cbc,2.10.11,2023.0,ok,optimal,2161.690769363005,294.56,784744.63214382,,,2161.61,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 15:23:22.217506,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29 -pypsa-power+ely+battery-mod,1-1h,gurobi,11.0.0,2023.0,ok,optimal,13.434262477996526,489.86,31715824201.142437,,,12.783050060272217,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 16:02:51.462156,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely+battery-mod-1-1h,gurobi-11.0.0,pypsa-power+ely+battery-mod -pypsa-power+ely+battery-mod,1-1h,highs,1.6.0.dev0,2023.0,ok,optimal,41.47759235100239,506.96,31715824201.142395,,,40.73607134819031,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 16:03:06.251239,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely+battery-mod-1-1h,highs-1.6.0.dev0,pypsa-power+ely+battery-mod -pypsa-power+ely+battery-mod,1-1h,scip,8.1.0,2023.0,ok,optimal,191.2153887010063,1173.876,31715824201.1424,,,190.405958,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 16:03:49.019653,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely+battery-mod-1-1h,scip-8.1.0,pypsa-power+ely+battery-mod -pypsa-power+ely+battery-mod,1-1h,cbc,2.10.11,2023.0,ok,optimal,159.00549780800063,638.588,31715204639.26688,,,158.26,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 16:07:02.005454,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely+battery-mod-1-1h,cbc-2.10.11,pypsa-power+ely+battery-mod -times-etimeseu-france-elec+heat-multi_stage,1-64ts,gurobi,11.0.0,2023.0,ok,optimal,6.066706206998788,352.208,423183.4347354724,,,5.394176006317139,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 16:09:42.321901,c4-standard-2,europe-west9-c,48cfc10,times-etimeseu-france-elec+heat-multi_stage-1-64ts,gurobi-11.0.0,times-etimeseu-france-elec+heat-multi_stage -times-etimeseu-france-elec+heat-multi_stage,1-64ts,highs,1.6.0.dev0,2023.0,ok,optimal,19.369112857995788,365.652,423183.4347354723,,,18.896499156951904,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 16:09:49.446302,c4-standard-2,europe-west9-c,48cfc10,times-etimeseu-france-elec+heat-multi_stage-1-64ts,highs-1.6.0.dev0,times-etimeseu-france-elec+heat-multi_stage -times-etimeseu-france-elec+heat-multi_stage,1-64ts,scip,8.1.0,2023.0,ok,optimal,84.583421000003,1966.776,423183.43473547255,,,84.01872,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 16:10:09.834637,c4-standard-2,europe-west9-c,48cfc10,times-etimeseu-france-elec+heat-multi_stage-1-64ts,scip-8.1.0,times-etimeseu-france-elec+heat-multi_stage -times-etimeseu-france-elec+heat-multi_stage,1-64ts,cbc,2.10.11,2023.0,ER,,,197.416,,,,,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 16:11:35.655944,c4-standard-2,europe-west9-c,48cfc10,times-etimeseu-france-elec+heat-multi_stage-1-64ts,cbc-2.10.11,times-etimeseu-france-elec+heat-multi_stage -genx-5_three_zones_w_piecewise_fuel,3-1h,gurobi,12.0.0,2024.0,TO,Timeout,3600.0,1256.112,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 16:12:06.615664,c4-standard-2,europe-west9-c,48cfc10,genx-5_three_zones_w_piecewise_fuel-3-1h,gurobi-12.0.0,genx-5_three_zones_w_piecewise_fuel -genx-5_three_zones_w_piecewise_fuel,3-1h,highs,1.9.0,2024.0,TO,Timeout,3600.0,2775.732,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 17:15:33.844819,c4-standard-2,europe-west9-c,48cfc10,genx-5_three_zones_w_piecewise_fuel-3-1h,highs-1.9.0,genx-5_three_zones_w_piecewise_fuel -genx-5_three_zones_w_piecewise_fuel,3-1h,scip,9.2.0,2024.0,TO,Timeout,3600.0,1615.268,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 18:19:01.471325,c4-standard-2,europe-west9-c,48cfc10,genx-5_three_zones_w_piecewise_fuel-3-1h,scip-9.2.0,genx-5_three_zones_w_piecewise_fuel -genx-5_three_zones_w_piecewise_fuel,3-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,217.716,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 19:22:28.468102,c4-standard-2,europe-west9-c,48cfc10,genx-5_three_zones_w_piecewise_fuel-3-1h,cbc-2.10.12,genx-5_three_zones_w_piecewise_fuel -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29,73-1h,gurobi,12.0.0,2024.0,ok,optimal,464.6075985750067,448.856,2090675.1350265655,0.0,9.93075210073621e-05,464.1762359142304,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 20:25:55.622524,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29,73-1h,highs,1.9.0,2024.0,TO,Timeout,3600.0,1152.012,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 20:33:41.472261,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29,73-1h,scip,9.2.0,2024.0,TO,Timeout,3600.0,1914.9,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 21:37:08.101089,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29,73-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,206.636,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 22:40:35.961808,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29 -OEMOF-result-object,1-8760ts,gurobi,12.0.0,2024.0,ok,optimal,0.6972491049964447,300.048,17570075046.756588,,,0.0896990299224853,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 23:44:02.457785,c4-standard-2,europe-west9-c,48cfc10,OEMOF-result-object-1-8760ts,gurobi-12.0.0,OEMOF-result-object -OEMOF-result-object,1-8760ts,highs,1.9.0,2024.0,ok,optimal,0.7863298800075427,300.084,17570075046.75652,,,0.2809751033782959,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 23:44:04.301510,c4-standard-2,europe-west9-c,48cfc10,OEMOF-result-object-1-8760ts,highs-1.9.0,OEMOF-result-object -OEMOF-result-object,1-8760ts,scip,9.2.0,2024.0,ok,optimal,1.9578562130045607,541.92,17570075046.756535,,,1.555341,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 23:44:06.240738,c4-standard-2,europe-west9-c,48cfc10,OEMOF-result-object-1-8760ts,scip-9.2.0,OEMOF-result-object -OEMOF-result-object,1-8760ts,cbc,2.10.12,2024.0,ok,optimal,1.2195050779992016,271.18,17570075046.756565,,,,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 23:44:09.483278,c4-standard-2,europe-west9-c,48cfc10,OEMOF-result-object-1-8760ts,cbc-2.10.12,OEMOF-result-object -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314,73-1h,gurobi,12.0.0,2024.0,ok,optimal,30.77693998599716,254.236,902579.3504102712,0.0,0.0,30.649286031723022,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 23:44:11.838702,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314,73-1h,highs,1.9.0,2024.0,ok,optimal,524.0558623399993,601.72,902579.3504069672,3.4257491934554197e-12,9.931183540904718e-05,523.6746854782104,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 23:44:43.476387,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314,73-1h,scip,9.2.0,2024.0,ok,optimal,1295.4513302820123,1022.796,902579.350408596,2.2769409083358564e-12,0.0,1295.258677,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 23:53:28.380037,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314,73-1h,cbc,2.10.12,2024.0,ok,optimal,3382.5623697909905,304.108,902579.3504074,0.0,0.0,3382.01,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 00:15:04.758754,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29,73-1h,gurobi,12.0.0,2024.0,ok,optimal,93.13737345300616,258.936,784744.6300928972,0.0,0.0,92.92217206954956,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 01:14:55.760912,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29,73-1h,highs,1.9.0,2024.0,ok,optimal,914.8821938300098,811.36,784744.6321439007,1.2278314585252116e-14,9.399884185304285e-05,914.7750725746156,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 01:16:29.519747,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29,73-1h,scip,9.2.0,2024.0,ok,optimal,1740.335277050006,1256.404,784744.6320975025,9.545800924512636e-16,0.0,1740.253473,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 01:31:45.004428,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29,73-1h,cbc,2.10.12,2024.0,ok,optimal,2159.285045234996,297.284,784744.63214382,0.0,0.0,2159.1,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 02:00:46.004859,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29 -pypsa-power+ely+battery-mod,1-1h,gurobi,12.0.0,2024.0,ok,optimal,12.236844244005624,477.144,31715824201.142437,0.0,5.316239838879807e-05,11.621657133102415,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 02:40:12.294161,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely+battery-mod-1-1h,gurobi-12.0.0,pypsa-power+ely+battery-mod -pypsa-power+ely+battery-mod,1-1h,highs,1.9.0,2024.0,ok,optimal,42.92343638499733,577.728,31715824201.142395,4.64992990495576e-15,5.316239839012118e-05,41.96549272537232,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 02:40:25.887435,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely+battery-mod-1-1h,highs-1.9.0,pypsa-power+ely+battery-mod -pypsa-power+ely+battery-mod,1-1h,scip,9.2.0,2024.0,ok,optimal,191.9503851979971,1163.44,31715824201.1424,0.0,5.3165224781101776e-05,191.132434,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 02:41:10.223505,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely+battery-mod-1-1h,scip-9.2.0,pypsa-power+ely+battery-mod -pypsa-power+ely+battery-mod,1-1h,cbc,2.10.12,2024.0,ok,optimal,160.5621593419928,634.864,31715204639.26688,0.0,0.0,158.92,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 02:44:23.979188,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely+battery-mod-1-1h,cbc-2.10.12,pypsa-power+ely+battery-mod -times-etimeseu-france-elec+heat-multi_stage,1-64ts,gurobi,12.0.0,2024.0,ok,optimal,5.353248333994998,318.328,423183.4347354724,,,4.680645942687988,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 02:47:05.920885,c4-standard-2,europe-west9-c,48cfc10,times-etimeseu-france-elec+heat-multi_stage-1-64ts,gurobi-12.0.0,times-etimeseu-france-elec+heat-multi_stage -times-etimeseu-france-elec+heat-multi_stage,1-64ts,highs,1.9.0,2024.0,ok,optimal,20.223275363008725,364.876,423183.4347354728,,,19.44196844100952,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 02:47:12.722260,c4-standard-2,europe-west9-c,48cfc10,times-etimeseu-france-elec+heat-multi_stage-1-64ts,highs-1.9.0,times-etimeseu-france-elec+heat-multi_stage -times-etimeseu-france-elec+heat-multi_stage,1-64ts,scip,9.2.0,2024.0,ok,optimal,85.2049357460055,1953.288,423183.43473547255,,,84.631518,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 02:47:34.384245,c4-standard-2,europe-west9-c,48cfc10,times-etimeseu-france-elec+heat-multi_stage-1-64ts,scip-9.2.0,times-etimeseu-france-elec+heat-multi_stage -times-etimeseu-france-elec+heat-multi_stage,1-64ts,cbc,2.10.12,2024.0,ER,,,180.22,,,,,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 02:49:01.220892,c4-standard-2,europe-west9-c,48cfc10,times-etimeseu-france-elec+heat-multi_stage-1-64ts,cbc-2.10.12,times-etimeseu-france-elec+heat-multi_stage -genx-5_three_zones_w_piecewise_fuel,3-1h,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,1216.744,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 02:49:33.455560,c4-standard-2,europe-west9-c,48cfc10,genx-5_three_zones_w_piecewise_fuel-3-1h,gurobi-13.0.0,genx-5_three_zones_w_piecewise_fuel -genx-5_three_zones_w_piecewise_fuel,3-1h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1684.22,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 03:52:59.620267,c4-standard-2,europe-west9-c,48cfc10,genx-5_three_zones_w_piecewise_fuel-3-1h,highs-1.12.0,genx-5_three_zones_w_piecewise_fuel -genx-5_three_zones_w_piecewise_fuel,3-1h,scip,10.0.0,2025.0,TO,Timeout,3600.0,1638.84,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 04:56:26.379231,c4-standard-2,europe-west9-c,48cfc10,genx-5_three_zones_w_piecewise_fuel-3-1h,scip-10.0.0,genx-5_three_zones_w_piecewise_fuel -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29,73-1h,gurobi,13.0.0,2025.0,ok,optimal,638.3940696189966,481.604,2090675.135171308,0.0,9.994187686547538e-05,637.9731101989746,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 05:59:54.189410,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29,73-1h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1136.252,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 06:10:33.769206,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29,73-1h,scip,10.0.0,2025.0,TO,Timeout,3600.0,1938.9,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 07:14:01.365390,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29 -OEMOF-result-object,1-8760ts,gurobi,13.0.0,2025.0,ok,optimal,0.6534196279826574,340.34,17570075046.756588,,,0.0906651020050048,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 08:17:28.164743,c4-standard-2,europe-west9-c,48cfc10,OEMOF-result-object-1-8760ts,gurobi-13.0.0,OEMOF-result-object -OEMOF-result-object,1-8760ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,2.0811310729768597,163.556,17570075047.0,,,2.0811310729768597,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 08:17:29.976748,c4-standard-2,europe-west9-c,48cfc10,OEMOF-result-object-1-8760ts,highs-hipo-1.12.0-hipo,OEMOF-result-object -OEMOF-result-object,1-8760ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,1.7054353590065148,164.032,17570075047.0,,,1.7054353590065148,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 08:17:32.776262,c4-standard-2,europe-west9-c,48cfc10,OEMOF-result-object-1-8760ts,highs-ipx-1.12.0-hipo,OEMOF-result-object -OEMOF-result-object,1-8760ts,highs,1.12.0,2025.0,ok,optimal,0.8403084329911508,351.692,17570075046.756573,,,0.3201122283935547,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 08:17:35.208240,c4-standard-2,europe-west9-c,48cfc10,OEMOF-result-object-1-8760ts,highs-1.12.0,OEMOF-result-object -OEMOF-result-object,1-8760ts,scip,10.0.0,2025.0,ok,optimal,1.9427114709978923,582.804,17570075046.756535,,,1.528731,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 08:17:37.246155,c4-standard-2,europe-west9-c,48cfc10,OEMOF-result-object-1-8760ts,scip-10.0.0,OEMOF-result-object -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314,73-1h,gurobi,13.0.0,2025.0,ok,optimal,36.3760397110018,275.956,902579.3500208372,0.0,9.675648092844038e-05,36.24792695045471,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 08:17:40.469446,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314,73-1h,highs,1.12.0,2025.0,ok,optimal,443.76557445101207,658.888,902579.350407378,7.817435536955898e-14,9.80919733029956e-05,443.5246942043304,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 08:18:17.802193,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314,73-1h,scip,10.0.0,2025.0,ok,optimal,1297.782058968005,1050.604,902579.350408596,2.2769409083358564e-12,0.0,1297.58344,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 08:25:42.510657,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29,73-1h,gurobi,13.0.0,2025.0,ok,optimal,67.22867889099871,278.272,784744.6321439972,0.0,2.61896130052701e-05,66.98099780082703,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 08:47:21.316082,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29,73-1h,highs,1.12.0,2025.0,ok,optimal,792.7611262249993,843.724,784744.6321438221,1.5787371410169729e-13,9.968679695165869e-05,792.6931648254395,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 08:48:29.357007,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29,73-1h,scip,10.0.0,2025.0,ok,optimal,1735.6318785100011,1284.66,784744.6320975025,9.545800924512636e-16,0.0,1735.547615,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 09:01:42.913917,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29 -pypsa-power+ely+battery-mod,1-1h,gurobi,13.0.0,2025.0,ok,optimal,12.232629403995816,506.796,31715824201.142437,0.0,5.316239838879807e-05,11.566174983978271,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 09:34:06.059080,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely+battery-mod-1-1h,gurobi-13.0.0,pypsa-power+ely+battery-mod -pypsa-power+ely+battery-mod,1-1h,highs,1.12.0,2025.0,ok,optimal,42.75250789301936,531.36,31715824201.142395,4.64992990495576e-15,5.316239839012118e-05,41.962942123413086,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 09:34:19.745790,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely+battery-mod-1-1h,highs-1.12.0,pypsa-power+ely+battery-mod -pypsa-power+ely+battery-mod,1-1h,scip,10.0.0,2025.0,ok,optimal,192.19264764600663,1187.756,31715824201.1424,0.0,5.3165224781101776e-05,191.346,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 09:35:03.878576,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely+battery-mod-1-1h,scip-10.0.0,pypsa-power+ely+battery-mod -times-etimeseu-france-elec+heat-multi_stage,1-64ts,gurobi,13.0.0,2025.0,ok,optimal,3.9956617209827527,343.876,423183.4347354724,,,3.498706102371216,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 09:38:17.950552,c4-standard-2,europe-west9-c,48cfc10,times-etimeseu-france-elec+heat-multi_stage-1-64ts,gurobi-13.0.0,times-etimeseu-france-elec+heat-multi_stage -times-etimeseu-france-elec+heat-multi_stage,1-64ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,29.08599032901111,275.824,423183.43306,,,29.08599032901111,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 09:38:23.149085,c4-standard-2,europe-west9-c,48cfc10,times-etimeseu-france-elec+heat-multi_stage-1-64ts,highs-hipo-1.12.0-hipo,times-etimeseu-france-elec+heat-multi_stage -times-etimeseu-france-elec+heat-multi_stage,1-64ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,14.25726865499746,164.172,423183.43474,,,14.25726865499746,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 09:38:52.973415,c4-standard-2,europe-west9-c,48cfc10,times-etimeseu-france-elec+heat-multi_stage-1-64ts,highs-ipx-1.12.0-hipo,times-etimeseu-france-elec+heat-multi_stage -times-etimeseu-france-elec+heat-multi_stage,1-64ts,highs,1.12.0,2025.0,ok,optimal,20.28728218798642,394.82,423183.4347354729,,,19.747602939605716,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 09:39:07.957594,c4-standard-2,europe-west9-c,48cfc10,times-etimeseu-france-elec+heat-multi_stage-1-64ts,highs-1.12.0,times-etimeseu-france-elec+heat-multi_stage -times-etimeseu-france-elec+heat-multi_stage,1-64ts,scip,10.0.0,2025.0,ok,optimal,85.28868966398295,1977.124,423183.43473547255,,,84.687988,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 09:39:29.386622,c4-standard-2,europe-west9-c,48cfc10,times-etimeseu-france-elec+heat-multi_stage-1-64ts,scip-10.0.0,times-etimeseu-france-elec+heat-multi_stage -genx-9_three_zones_w_retrofit,3-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,297.676,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-16 18:21:18.396923,c4-standard-2,europe-west9-b,48cfc10,genx-9_three_zones_w_retrofit-3-1h,glpk-5.0,genx-9_three_zones_w_retrofit -DCOPF-Carolinas_uc_2M,997-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,183.444,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-16 19:24:55.134085,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_uc_2M-997-1h,glpk-5.0,DCOPF-Carolinas_uc_2M -OEMOF-v3-invest-optimize-only-storage-with-fossil-share,1-8760ts,glpk,5.0,2020.0,ER,,,150.368,,,,,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-16 20:28:31.351515,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v3-invest-optimize-only-storage-with-fossil-share-1-8760ts,glpk-5.0,OEMOF-v3-invest-optimize-only-storage-with-fossil-share -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,131.448,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-16 20:28:46.890156,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314 -genx-2_three_zones_w_electrolyzer,3-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,206.552,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-16 21:32:24.783089,c4-standard-2,europe-west9-b,48cfc10,genx-2_three_zones_w_electrolyzer-3-1h,glpk-5.0,genx-2_three_zones_w_electrolyzer -pypsa-power+ely-co2-mod,1-1h,glpk,5.0,2020.0,ok,optimal,139.78598729400073,231.936,84667528380.0,,,,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-16 22:35:56.289376,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-mod-1-1h,glpk-5.0,pypsa-power+ely-co2-mod -DCOPF-Carolinas_6M,997-1h,glpk,5.0,2020.0,ER,,,207.232,,,,,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-16 22:38:16.564915,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_6M-997-1h,glpk-5.0,DCOPF-Carolinas_6M -genx-9_three_zones_w_retrofit,3-1h,gurobi,10.0.0,2022.0,TO,Timeout,3600.0,1852.5,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-16 22:48:22.728184,c4-standard-2,europe-west9-b,48cfc10,genx-9_three_zones_w_retrofit-3-1h,gurobi-10.0.0,genx-9_three_zones_w_retrofit -genx-9_three_zones_w_retrofit,3-1h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,5913.18,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-16 23:51:52.373865,c4-standard-2,europe-west9-b,48cfc10,genx-9_three_zones_w_retrofit-3-1h,highs-1.5.0.dev0,genx-9_three_zones_w_retrofit -genx-9_three_zones_w_retrofit,3-1h,scip,8.0.3,2022.0,TO,Timeout,3600.0,3100.456,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 00:55:25.120299,c4-standard-2,europe-west9-b,48cfc10,genx-9_three_zones_w_retrofit-3-1h,scip-8.0.3,genx-9_three_zones_w_retrofit -DCOPF-Carolinas_uc_2M,997-1h,gurobi,10.0.0,2022.0,ok,optimal,184.23848293099945,762.044,4463831.29462382,,,182.93292593955996,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 01:58:57.293176,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_uc_2M-997-1h,gurobi-10.0.0,DCOPF-Carolinas_uc_2M -DCOPF-Carolinas_uc_2M,997-1h,highs,1.5.0.dev0,2022.0,ok,optimal,3525.2442276420006,3511.668,4463709.790358684,,,3523.8259360790253,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 02:02:03.322595,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_uc_2M-997-1h,highs-1.5.0.dev0,DCOPF-Carolinas_uc_2M -DCOPF-Carolinas_uc_2M,997-1h,scip,8.0.3,2022.0,ok,optimal,1690.366356765997,2167.36,4463591.522110939,,,1688.913651,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 03:04:19.327078,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_uc_2M-997-1h,scip-8.0.3,DCOPF-Carolinas_uc_2M -OEMOF-v3-invest-optimize-only-storage-with-fossil-share,1-8760ts,gurobi,10.0.0,2022.0,ok,optimal,6.998566276997735,332.876,31926875.24757205,,,2.964545965194702,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 03:32:31.727993,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v3-invest-optimize-only-storage-with-fossil-share-1-8760ts,gurobi-10.0.0,OEMOF-v3-invest-optimize-only-storage-with-fossil-share -OEMOF-v3-invest-optimize-only-storage-with-fossil-share,1-8760ts,highs,1.5.0.dev0,2022.0,ok,optimal,9.893928140998469,357.452,31926875.2475728,,,9.350659608840942,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 03:32:39.768556,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v3-invest-optimize-only-storage-with-fossil-share-1-8760ts,highs-1.5.0.dev0,OEMOF-v3-invest-optimize-only-storage-with-fossil-share -OEMOF-v3-invest-optimize-only-storage-with-fossil-share,1-8760ts,scip,8.0.3,2022.0,ER,,,669.216,,,,,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 03:32:50.694632,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v3-invest-optimize-only-storage-with-fossil-share-1-8760ts,scip-8.0.3,OEMOF-v3-invest-optimize-only-storage-with-fossil-share -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314,73-1h,gurobi,10.0.0,2022.0,ok,optimal,72.64847397499398,274.092,796622.7696233211,,,72.55532789230347,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 03:34:08.846345,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314,73-1h,highs,1.5.0.dev0,2022.0,ok,optimal,1437.052391887999,940.284,796622.7803324993,,,1436.92515873909,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 03:35:22.200118,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314,73-1h,scip,8.0.3,2022.0,ok,optimal,2064.428272304001,1267.996,796622.7803334442,,,2064.291321,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 03:59:19.965288,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314 -genx-2_three_zones_w_electrolyzer,3-1h,gurobi,10.0.0,2022.0,ok,optimal,162.82919910599594,688.36,19882.312766392424,,,161.7920229434967,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 04:37:22.165417,c4-standard-2,europe-west9-b,48cfc10,genx-2_three_zones_w_electrolyzer-3-1h,gurobi-10.0.0,genx-2_three_zones_w_electrolyzer -genx-2_three_zones_w_electrolyzer,3-1h,highs,1.5.0.dev0,2022.0,ok,optimal,2020.945545456998,3397.68,19883.16720255582,,,2019.750935792923,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 04:40:06.619564,c4-standard-2,europe-west9-b,48cfc10,genx-2_three_zones_w_electrolyzer-3-1h,highs-1.5.0.dev0,genx-2_three_zones_w_electrolyzer -genx-2_three_zones_w_electrolyzer,3-1h,scip,8.0.3,2022.0,ok,optimal,860.5459594830027,1744.344,19883.444101432,,,859.126539,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 05:13:49.294081,c4-standard-2,europe-west9-b,48cfc10,genx-2_three_zones_w_electrolyzer-3-1h,scip-8.0.3,genx-2_three_zones_w_electrolyzer -pypsa-power+ely-co2-mod,1-1h,gurobi,10.0.0,2022.0,ok,optimal,15.572791781996784,381.42,84668286067.13158,,,14.642575979232788,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 05:28:11.896715,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-mod-1-1h,gurobi-10.0.0,pypsa-power+ely-co2-mod -pypsa-power+ely-co2-mod,1-1h,highs,1.5.0.dev0,2022.0,ok,optimal,54.758129535999615,420.048,84668286067.13148,,,54.0820894241333,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 05:28:28.645937,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-mod-1-1h,highs-1.5.0.dev0,pypsa-power+ely-co2-mod -pypsa-power+ely-co2-mod,1-1h,scip,8.0.3,2022.0,ok,optimal,91.18536139099888,822.56,84668286067.13148,,,90.478416,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 05:29:24.573855,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-mod-1-1h,scip-8.0.3,pypsa-power+ely-co2-mod -DCOPF-Carolinas_6M,997-1h,gurobi,10.0.0,2022.0,ok,optimal,6.414908222999657,592.488,9293706.649787052,,,4.94595193862915,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 05:30:57.166217,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_6M-997-1h,gurobi-10.0.0,DCOPF-Carolinas_6M -DCOPF-Carolinas_6M,997-1h,highs,1.5.0.dev0,2022.0,ok,optimal,12.469230205999338,634.36,9293706.649785886,,,10.995418787002563,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 05:31:05.342446,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_6M-997-1h,highs-1.5.0.dev0,DCOPF-Carolinas_6M -DCOPF-Carolinas_6M,997-1h,scip,8.0.3,2022.0,ok,optimal,99.88859445900016,1260.396,9293706.6498003,,,98.475267,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 05:31:19.779191,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_6M-997-1h,scip-8.0.3,DCOPF-Carolinas_6M -genx-9_three_zones_w_retrofit,3-1h,gurobi,11.0.0,2023.0,TO,Timeout,3600.0,2183.832,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 05:36:30.159036,c4-standard-2,europe-west9-b,48cfc10,genx-9_three_zones_w_retrofit-3-1h,gurobi-11.0.0,genx-9_three_zones_w_retrofit -genx-9_three_zones_w_retrofit,3-1h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,5948.132,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 06:40:06.169379,c4-standard-2,europe-west9-b,48cfc10,genx-9_three_zones_w_retrofit-3-1h,highs-1.6.0.dev0,genx-9_three_zones_w_retrofit -genx-9_three_zones_w_retrofit,3-1h,scip,8.1.0,2023.0,TO,Timeout,3600.0,3108.096,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 07:43:34.384577,c4-standard-2,europe-west9-b,48cfc10,genx-9_three_zones_w_retrofit-3-1h,scip-8.1.0,genx-9_three_zones_w_retrofit -genx-9_three_zones_w_retrofit,3-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,328.856,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 08:47:04.438193,c4-standard-2,europe-west9-b,48cfc10,genx-9_three_zones_w_retrofit-3-1h,cbc-2.10.11,genx-9_three_zones_w_retrofit -DCOPF-Carolinas_uc_2M,997-1h,gurobi,11.0.0,2023.0,ok,optimal,148.66638551500364,795.62,4463728.554647207,,,147.25257897377014,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 09:50:34.039625,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_uc_2M-997-1h,gurobi-11.0.0,DCOPF-Carolinas_uc_2M -DCOPF-Carolinas_uc_2M,997-1h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,4211.952,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 09:53:04.518528,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_uc_2M-997-1h,highs-1.6.0.dev0,DCOPF-Carolinas_uc_2M -DCOPF-Carolinas_uc_2M,997-1h,scip,8.1.0,2023.0,ok,optimal,1747.9352829659983,2253.536,4463591.522110939,,,1746.600561,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 10:56:35.809537,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_uc_2M-997-1h,scip-8.1.0,DCOPF-Carolinas_uc_2M -DCOPF-Carolinas_uc_2M,997-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,214.072,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 11:25:45.957866,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_uc_2M-997-1h,cbc-2.10.11,DCOPF-Carolinas_uc_2M -OEMOF-v3-invest-optimize-only-storage-with-fossil-share,1-8760ts,gurobi,11.0.0,2023.0,ok,optimal,6.572313237003982,350.516,31926875.24757205,,,5.911365032196045,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 12:29:27.431276,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v3-invest-optimize-only-storage-with-fossil-share-1-8760ts,gurobi-11.0.0,OEMOF-v3-invest-optimize-only-storage-with-fossil-share -OEMOF-v3-invest-optimize-only-storage-with-fossil-share,1-8760ts,highs,1.6.0.dev0,2023.0,ok,optimal,9.838755083997968,384.76,31926875.2475728,,,9.270106554031372,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 12:29:35.190371,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v3-invest-optimize-only-storage-with-fossil-share-1-8760ts,highs-1.6.0.dev0,OEMOF-v3-invest-optimize-only-storage-with-fossil-share -OEMOF-v3-invest-optimize-only-storage-with-fossil-share,1-8760ts,scip,8.1.0,2023.0,ER,,,679.584,,,,,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 12:29:46.300792,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v3-invest-optimize-only-storage-with-fossil-share-1-8760ts,scip-8.1.0,OEMOF-v3-invest-optimize-only-storage-with-fossil-share -OEMOF-v3-invest-optimize-only-storage-with-fossil-share,1-8760ts,cbc,2.10.11,2023.0,ok,optimal,5.158040223002899,256.384,31926875.24757211,,,,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 12:31:05.389262,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v3-invest-optimize-only-storage-with-fossil-share-1-8760ts,cbc-2.10.11,OEMOF-v3-invest-optimize-only-storage-with-fossil-share -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314,73-1h,gurobi,11.0.0,2023.0,ok,optimal,64.95029849100683,256.076,796622.780316971,,,64.87149715423584,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 12:31:11.710532,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314,73-1h,highs,1.6.0.dev0,2023.0,ok,optimal,1415.8749581310112,970.044,796622.7803324993,,,1415.7934212684631,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 12:32:17.463433,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314,73-1h,scip,8.1.0,2023.0,ok,optimal,2066.2632398620044,1277.336,796622.7803334442,,,2066.148553,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 12:55:54.129899,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314,73-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,162.572,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 13:34:00.885287,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314 -genx-2_three_zones_w_electrolyzer,3-1h,gurobi,11.0.0,2023.0,ok,optimal,159.25410359598754,677.708,19882.401841032814,,,158.3776409626007,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 14:37:34.371183,c4-standard-2,europe-west9-b,48cfc10,genx-2_three_zones_w_electrolyzer-3-1h,gurobi-11.0.0,genx-2_three_zones_w_electrolyzer -genx-2_three_zones_w_electrolyzer,3-1h,highs,1.6.0.dev0,2023.0,ok,optimal,1949.0665646639973,3473.444,19883.16720255582,,,1948.255652666092,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 14:40:14.996657,c4-standard-2,europe-west9-b,48cfc10,genx-2_three_zones_w_electrolyzer-3-1h,highs-1.6.0.dev0,genx-2_three_zones_w_electrolyzer -genx-2_three_zones_w_electrolyzer,3-1h,scip,8.1.0,2023.0,ok,optimal,861.0090772209951,1752.536,19883.444101432,,,859.80844,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 15:12:45.381330,c4-standard-2,europe-west9-b,48cfc10,genx-2_three_zones_w_electrolyzer-3-1h,scip-8.1.0,genx-2_three_zones_w_electrolyzer -genx-2_three_zones_w_electrolyzer,3-1h,cbc,2.10.11,2023.0,ok,optimal,946.4580657000042,1214.348,19883.30553765,,,945.55,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 15:27:08.188555,c4-standard-2,europe-west9-b,48cfc10,genx-2_three_zones_w_electrolyzer-3-1h,cbc-2.10.11,genx-2_three_zones_w_electrolyzer -pypsa-power+ely-co2-mod,1-1h,gurobi,11.0.0,2023.0,ok,optimal,13.626784847001543,383.36,84668286067.13159,,,13.054906845092772,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 15:46:34.059879,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-mod-1-1h,gurobi-11.0.0,pypsa-power+ely-co2-mod -pypsa-power+ely-co2-mod,1-1h,highs,1.6.0.dev0,2023.0,ok,optimal,54.98467563001032,381.14,84668286067.13148,,,54.40937185287476,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 15:46:48.905580,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-mod-1-1h,highs-1.6.0.dev0,pypsa-power+ely-co2-mod -pypsa-power+ely-co2-mod,1-1h,scip,8.1.0,2023.0,ok,optimal,91.09395524399588,824.336,84668286067.13148,,,90.49547,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 15:47:45.086077,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-mod-1-1h,scip-8.1.0,pypsa-power+ely-co2-mod -pypsa-power+ely-co2-mod,1-1h,cbc,2.10.11,2023.0,ok,optimal,46.06935445399722,414.356,84668259518.29695,,,45.49,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 15:49:17.618684,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-mod-1-1h,cbc-2.10.11,pypsa-power+ely-co2-mod -DCOPF-Carolinas_6M,997-1h,gurobi,11.0.0,2023.0,ok,optimal,6.118034805011121,613.256,9293706.649785869,,,4.8771679401397705,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 15:50:04.879231,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_6M-997-1h,gurobi-11.0.0,DCOPF-Carolinas_6M -DCOPF-Carolinas_6M,997-1h,highs,1.6.0.dev0,2023.0,ok,optimal,12.111687175987754,661.008,9293706.649785886,,,10.672200202941896,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 15:50:12.834934,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_6M-997-1h,highs-1.6.0.dev0,DCOPF-Carolinas_6M -DCOPF-Carolinas_6M,997-1h,scip,8.1.0,2023.0,ok,optimal,99.96487699600402,1283.36,9293706.6498003,,,98.731453,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 15:50:27.056421,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_6M-997-1h,scip-8.1.0,DCOPF-Carolinas_6M -DCOPF-Carolinas_6M,997-1h,cbc,2.10.11,2023.0,ok,optimal,23.58307169000909,394.832,9293706.64978586,,,,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 15:52:09.129148,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_6M-997-1h,cbc-2.10.11,DCOPF-Carolinas_6M -genx-9_three_zones_w_retrofit,3-1h,gurobi,12.0.0,2024.0,TO,Timeout,3600.0,1889.536,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 15:53:12.095191,c4-standard-2,europe-west9-b,48cfc10,genx-9_three_zones_w_retrofit-3-1h,gurobi-12.0.0,genx-9_three_zones_w_retrofit -genx-9_three_zones_w_retrofit,3-1h,highs,1.9.0,2024.0,TO,Timeout,3600.0,4232.908,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 16:56:50.021277,c4-standard-2,europe-west9-b,48cfc10,genx-9_three_zones_w_retrofit-3-1h,highs-1.9.0,genx-9_three_zones_w_retrofit -genx-9_three_zones_w_retrofit,3-1h,scip,9.2.0,2024.0,TO,Timeout,3600.0,3087.16,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 18:00:18.970076,c4-standard-2,europe-west9-b,48cfc10,genx-9_three_zones_w_retrofit-3-1h,scip-9.2.0,genx-9_three_zones_w_retrofit -genx-9_three_zones_w_retrofit,3-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,311.7,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 19:03:50.580239,c4-standard-2,europe-west9-b,48cfc10,genx-9_three_zones_w_retrofit-3-1h,cbc-2.10.12,genx-9_three_zones_w_retrofit -DCOPF-Carolinas_uc_2M,997-1h,gurobi,12.0.0,2024.0,ok,optimal,114.50257539800076,731.44,4463807.772626111,0.0,9.928261958133235e-05,113.37179017066956,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 20:07:26.953583,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_uc_2M-997-1h,gurobi-12.0.0,DCOPF-Carolinas_uc_2M -DCOPF-Carolinas_uc_2M,997-1h,highs,1.9.0,2024.0,TO,Timeout,3600.0,2408.08,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 20:09:23.300314,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_uc_2M-997-1h,highs-1.9.0,DCOPF-Carolinas_uc_2M -DCOPF-Carolinas_uc_2M,997-1h,scip,9.2.0,2024.0,ok,optimal,1749.1609647970035,2129.224,4463591.522110939,1.8184009853428048e-11,9.868322353733077e-05,1747.842311,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 21:12:55.680034,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_uc_2M-997-1h,scip-9.2.0,DCOPF-Carolinas_uc_2M -DCOPF-Carolinas_uc_2M,997-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,197.14,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 21:42:07.017401,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_uc_2M-997-1h,cbc-2.10.12,DCOPF-Carolinas_uc_2M -OEMOF-v3-invest-optimize-only-storage-with-fossil-share,1-8760ts,gurobi,12.0.0,2024.0,ok,optimal,6.1255438690132,324.9,31926875.247572083,,,5.522173881530762,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 22:45:37.091564,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v3-invest-optimize-only-storage-with-fossil-share-1-8760ts,gurobi-12.0.0,OEMOF-v3-invest-optimize-only-storage-with-fossil-share -OEMOF-v3-invest-optimize-only-storage-with-fossil-share,1-8760ts,highs,1.9.0,2024.0,ok,optimal,9.93315168999834,356.392,31926875.2475728,,,9.36038899421692,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 22:45:44.405876,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v3-invest-optimize-only-storage-with-fossil-share-1-8760ts,highs-1.9.0,OEMOF-v3-invest-optimize-only-storage-with-fossil-share -OEMOF-v3-invest-optimize-only-storage-with-fossil-share,1-8760ts,scip,9.2.0,2024.0,ER,,,664.132,,,,,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 22:45:55.533452,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v3-invest-optimize-only-storage-with-fossil-share-1-8760ts,scip-9.2.0,OEMOF-v3-invest-optimize-only-storage-with-fossil-share -OEMOF-v3-invest-optimize-only-storage-with-fossil-share,1-8760ts,cbc,2.10.12,2024.0,ok,optimal,5.589153270993847,274.1,31926875.24757211,,,,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 22:47:13.732701,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v3-invest-optimize-only-storage-with-fossil-share-1-8760ts,cbc-2.10.12,OEMOF-v3-invest-optimize-only-storage-with-fossil-share -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314,73-1h,gurobi,12.0.0,2024.0,ok,optimal,77.59370279600262,263.24,796622.7779113317,2.940995249962298e-07,3.3320180353231406e-05,77.51308417320251,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 22:47:20.513539,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314,73-1h,highs,1.9.0,2024.0,ok,optimal,1058.500260973,963.672,796622.7803329715,2.3190095343684284e-15,9.9249049599021e-05,1058.3609294891355,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 22:48:38.775202,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314,73-1h,scip,9.2.0,2024.0,ok,optimal,2043.8500138289965,1262.96,796622.7803334442,1.887379141862766e-15,0.0,2043.733434,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 23:06:17.925487,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314,73-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,145.744,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 23:40:22.478677,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314 -genx-2_three_zones_w_electrolyzer,3-1h,gurobi,12.0.0,2024.0,ok,optimal,181.46576693298996,673.164,19882.401440492515,0.0,4.7567895334668384e-05,180.5879509449005,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 00:43:55.338715,c4-standard-2,europe-west9-b,48cfc10,genx-2_three_zones_w_electrolyzer-3-1h,gurobi-12.0.0,genx-2_three_zones_w_electrolyzer -genx-2_three_zones_w_electrolyzer,3-1h,highs,1.9.0,2024.0,ok,optimal,2127.566374482005,3453.816,19883.17100942405,2.131628207280301e-14,6.574650866744515e-05,2126.221038341522,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 00:46:58.636049,c4-standard-2,europe-west9-b,48cfc10,genx-2_three_zones_w_electrolyzer-3-1h,highs-1.9.0,genx-2_three_zones_w_electrolyzer -genx-2_three_zones_w_electrolyzer,3-1h,scip,9.2.0,2024.0,ok,optimal,857.4507736530068,1722.264,19883.444101432,0.0,8.557634056617865e-05,856.242382,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 01:22:28.040567,c4-standard-2,europe-west9-b,48cfc10,genx-2_three_zones_w_electrolyzer-3-1h,scip-9.2.0,genx-2_three_zones_w_electrolyzer -genx-2_three_zones_w_electrolyzer,3-1h,cbc,2.10.12,2024.0,ok,optimal,928.0579994660076,1234.544,19883.30553765,0.0,0.0,925.86,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 01:36:47.787512,c4-standard-2,europe-west9-b,48cfc10,genx-2_three_zones_w_electrolyzer-3-1h,cbc-2.10.12,genx-2_three_zones_w_electrolyzer -pypsa-power+ely-co2-mod,1-1h,gurobi,12.0.0,2024.0,ok,optimal,13.65695666699321,372.212,84668286067.13158,0.0,8.969696440117464e-06,12.78540015220642,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 01:55:47.807932,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-mod-1-1h,gurobi-12.0.0,pypsa-power+ely-co2-mod -pypsa-power+ely-co2-mod,1-1h,highs,1.9.0,2024.0,ok,optimal,55.0588916370034,422.708,84668286067.13148,0.0,8.969696433809829e-06,54.35370326042175,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 01:56:02.591638,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-mod-1-1h,highs-1.9.0,pypsa-power+ely-co2-mod -pypsa-power+ely-co2-mod,1-1h,scip,9.2.0,2024.0,ok,optimal,90.13246385299136,810.264,84668286067.13148,0.0,8.96977688890428e-06,89.555735,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 01:56:58.795399,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-mod-1-1h,scip-9.2.0,pypsa-power+ely-co2-mod -pypsa-power+ely-co2-mod,1-1h,cbc,2.10.12,2024.0,ok,optimal,45.82506196398754,413.344,84668259518.29695,0.0,0.0,44.64,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 01:58:30.260200,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-mod-1-1h,cbc-2.10.12,pypsa-power+ely-co2-mod -DCOPF-Carolinas_6M,997-1h,gurobi,12.0.0,2024.0,ok,optimal,6.139032399994903,570.644,9293706.649785845,,,4.974398136138916,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 01:59:17.199218,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_6M-997-1h,gurobi-12.0.0,DCOPF-Carolinas_6M -DCOPF-Carolinas_6M,997-1h,highs,1.9.0,2024.0,ok,optimal,10.849736595992,617.272,9293706.649785886,,,9.3439302444458,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 01:59:25.432599,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_6M-997-1h,highs-1.9.0,DCOPF-Carolinas_6M -DCOPF-Carolinas_6M,997-1h,scip,9.2.0,2024.0,ok,optimal,97.66886348099796,1250.028,9293706.6498003,,,96.478538,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 01:59:38.490538,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_6M-997-1h,scip-9.2.0,DCOPF-Carolinas_6M -DCOPF-Carolinas_6M,997-1h,cbc,2.10.12,2024.0,ok,optimal,24.468878694999148,447.908,9293706.64978586,,,,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 02:01:18.522152,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_6M-997-1h,cbc-2.10.12,DCOPF-Carolinas_6M -genx-9_three_zones_w_retrofit,3-1h,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,2106.964,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 02:02:17.684828,c4-standard-2,europe-west9-b,48cfc10,genx-9_three_zones_w_retrofit-3-1h,gurobi-13.0.0,genx-9_three_zones_w_retrofit -genx-9_three_zones_w_retrofit,3-1h,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,3600.0,162.92,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 03:05:48.829911,c4-standard-2,europe-west9-b,48cfc10,genx-9_three_zones_w_retrofit-3-1h,highs-hipo-1.12.0-hipo,genx-9_three_zones_w_retrofit -genx-9_three_zones_w_retrofit,3-1h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,3600.0,163.248,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 04:09:19.404415,c4-standard-2,europe-west9-b,48cfc10,genx-9_three_zones_w_retrofit-3-1h,highs-ipx-1.12.0-hipo,genx-9_three_zones_w_retrofit -genx-9_three_zones_w_retrofit,3-1h,highs,1.12.0,2025.0,TO,Timeout,3600.0,4777.084,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 05:12:48.677721,c4-standard-2,europe-west9-b,48cfc10,genx-9_three_zones_w_retrofit-3-1h,highs-1.12.0,genx-9_three_zones_w_retrofit -genx-9_three_zones_w_retrofit,3-1h,scip,10.0.0,2025.0,TO,Timeout,3600.0,3116.404,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 06:16:16.463381,c4-standard-2,europe-west9-b,48cfc10,genx-9_three_zones_w_retrofit-3-1h,scip-10.0.0,genx-9_three_zones_w_retrofit -DCOPF-Carolinas_uc_2M,997-1h,gurobi,13.0.0,2025.0,ok,optimal,106.03027210899744,749.612,4463816.604879668,0.0,9.592942374189506e-05,104.90209913253784,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 07:19:45.996410,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_uc_2M-997-1h,gurobi-13.0.0,DCOPF-Carolinas_uc_2M -DCOPF-Carolinas_uc_2M,997-1h,highs,1.12.0,2025.0,TO,Timeout,3600.0,3310.176,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 07:21:33.969073,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_uc_2M-997-1h,highs-1.12.0,DCOPF-Carolinas_uc_2M -DCOPF-Carolinas_uc_2M,997-1h,scip,10.0.0,2025.0,ok,optimal,1710.4819421439895,2198.14,4463591.522110939,1.8184009853428048e-11,9.868322353733077e-05,1709.137802,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 08:25:04.006745,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_uc_2M-997-1h,scip-10.0.0,DCOPF-Carolinas_uc_2M -OEMOF-v3-invest-optimize-only-storage-with-fossil-share,1-8760ts,gurobi,13.0.0,2025.0,ok,optimal,6.12039877998177,358.2,31926875.247572083,,,5.486202001571655,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 08:53:36.796515,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v3-invest-optimize-only-storage-with-fossil-share-1-8760ts,gurobi-13.0.0,OEMOF-v3-invest-optimize-only-storage-with-fossil-share -OEMOF-v3-invest-optimize-only-storage-with-fossil-share,1-8760ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,20.99129403400002,188.26,31926875.248,,,20.99129403400002,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 08:53:44.109024,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v3-invest-optimize-only-storage-with-fossil-share-1-8760ts,highs-hipo-1.12.0-hipo,OEMOF-v3-invest-optimize-only-storage-with-fossil-share -OEMOF-v3-invest-optimize-only-storage-with-fossil-share,1-8760ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,12.353909888013732,210.716,31926875.248,,,12.353909888013732,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 08:54:05.829968,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v3-invest-optimize-only-storage-with-fossil-share-1-8760ts,highs-ipx-1.12.0-hipo,OEMOF-v3-invest-optimize-only-storage-with-fossil-share -OEMOF-v3-invest-optimize-only-storage-with-fossil-share,1-8760ts,highs,1.12.0,2025.0,ok,optimal,4.4456376529997215,402.784,31926875.24757298,,,3.8662633895874015,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 08:54:18.910158,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v3-invest-optimize-only-storage-with-fossil-share-1-8760ts,highs-1.12.0,OEMOF-v3-invest-optimize-only-storage-with-fossil-share -OEMOF-v3-invest-optimize-only-storage-with-fossil-share,1-8760ts,scip,10.0.0,2025.0,ER,,,692.26,,,,,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 08:54:24.580949,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v3-invest-optimize-only-storage-with-fossil-share-1-8760ts,scip-10.0.0,OEMOF-v3-invest-optimize-only-storage-with-fossil-share -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314,73-1h,gurobi,13.0.0,2025.0,ok,optimal,55.00032632300281,264.644,796622.7803341962,0.0,9.145967163906768e-05,54.92171502113342,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 08:55:42.971139,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314,73-1h,highs,1.12.0,2025.0,ok,optimal,1366.5779600289825,970.568,796622.7803330648,9.01723140600552e-13,9.89913768657694e-05,1366.4881649017334,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 08:56:38.807863,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314,73-1h,scip,10.0.0,2025.0,ok,optimal,2065.845160724013,1288.688,796622.7803334442,1.887379141862766e-15,0.0,2065.725024,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 09:19:26.203186,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314 -genx-2_three_zones_w_electrolyzer,3-1h,gurobi,13.0.0,2025.0,ok,optimal,179.37585803499678,693.94,19882.460341264094,0.0,5.053020325652828e-05,178.50794386863708,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 09:57:23.219569,c4-standard-2,europe-west9-b,48cfc10,genx-2_three_zones_w_electrolyzer-3-1h,gurobi-13.0.0,genx-2_three_zones_w_electrolyzer -genx-2_three_zones_w_electrolyzer,3-1h,highs,1.12.0,2025.0,ok,optimal,1396.9992810050026,2154.092,19883.12632802395,1.0658141036401504e-14,6.318802807141236e-05,1396.1053020954132,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 10:00:24.220922,c4-standard-2,europe-west9-b,48cfc10,genx-2_three_zones_w_electrolyzer-3-1h,highs-1.12.0,genx-2_three_zones_w_electrolyzer -genx-2_three_zones_w_electrolyzer,3-1h,scip,10.0.0,2025.0,ok,optimal,855.8372629350051,1746.44,19883.444101432,0.0,8.557634056617865e-05,854.57976,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 10:23:42.777300,c4-standard-2,europe-west9-b,48cfc10,genx-2_three_zones_w_electrolyzer-3-1h,scip-10.0.0,genx-2_three_zones_w_electrolyzer -pypsa-power+ely-co2-mod,1-1h,gurobi,13.0.0,2025.0,ok,optimal,13.17527806200087,399.04,84668286067.13158,0.0,8.969696440117464e-06,12.63516116142273,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 10:38:00.725882,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-mod-1-1h,gurobi-13.0.0,pypsa-power+ely-co2-mod -pypsa-power+ely-co2-mod,1-1h,highs,1.12.0,2025.0,ok,optimal,60.31114981402061,435.776,84668286067.13148,0.0,8.96969643362961e-06,59.73960161209106,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 10:38:15.140229,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-mod-1-1h,highs-1.12.0,pypsa-power+ely-co2-mod -pypsa-power+ely-co2-mod,1-1h,scip,10.0.0,2025.0,ok,optimal,89.48520296899369,836.896,84668286067.13148,0.0,8.96977688890428e-06,88.888521,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 10:39:16.642718,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-mod-1-1h,scip-10.0.0,pypsa-power+ely-co2-mod -DCOPF-Carolinas_6M,997-1h,gurobi,13.0.0,2025.0,ok,optimal,5.919634947000304,620.888,9293706.649785869,,,4.7918219566345215,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 10:40:47.566076,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_6M-997-1h,gurobi-13.0.0,DCOPF-Carolinas_6M -DCOPF-Carolinas_6M,997-1h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,31.57048948502052,385.768,9293706.6498,,,31.57048948502052,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 10:40:55.309784,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_6M-997-1h,highs-hipo-1.12.0-hipo,DCOPF-Carolinas_6M -DCOPF-Carolinas_6M,997-1h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,12.155984150012957,279.024,9293706.6961,,,12.155984150012957,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 10:41:27.609696,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_6M-997-1h,highs-ipx-1.12.0-hipo,DCOPF-Carolinas_6M -DCOPF-Carolinas_6M,997-1h,highs,1.12.0,2025.0,ok,optimal,10.844959542999275,672.512,9293706.64978588,,,9.384034633636476,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 10:41:40.498975,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_6M-997-1h,highs-1.12.0,DCOPF-Carolinas_6M -DCOPF-Carolinas_6M,997-1h,scip,10.0.0,2025.0,ok,optimal,97.68941167899176,1295.208,9293706.6498003,,,96.463681,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 10:41:53.342131,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_6M-997-1h,scip-10.0.0,DCOPF-Carolinas_6M -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,141.58,,,,3600.0,3600.0,benchmark-instance-s-m-06,20251216-rerun-2,2025-12-16 18:21:27.523847,c4-standard-2,europe-west1-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314,73-1h,gurobi,10.0.0,2022.0,TO,Timeout,3600.0,611.368,,,,3600.0,3600.0,benchmark-instance-s-m-06,20251216-rerun-2,2025-12-16 22:55:49.846404,c4-standard-2,europe-west1-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314,73-1h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1322.384,,,,3600.0,3600.0,benchmark-instance-s-m-06,20251216-rerun-2,2025-12-16 23:59:26.759530,c4-standard-2,europe-west1-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314,73-1h,scip,8.0.3,2022.0,TO,Timeout,3600.0,1782.876,,,,3600.0,3600.0,benchmark-instance-s-m-06,20251216-rerun-2,2025-12-17 01:03:13.444078,c4-standard-2,europe-west1-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314,73-1h,gurobi,11.0.0,2023.0,TO,Timeout,3600.0,664.432,,,,3600.0,3600.0,benchmark-instance-s-m-06,20251216-rerun-2,2025-12-17 05:44:58.920765,c4-standard-2,europe-west1-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314,73-1h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,1239.784,,,,3600.0,3600.0,benchmark-instance-s-m-06,20251216-rerun-2,2025-12-17 06:48:17.751051,c4-standard-2,europe-west1-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314,73-1h,scip,8.1.0,2023.0,TO,Timeout,3600.0,1777.652,,,,3600.0,3600.0,benchmark-instance-s-m-06,20251216-rerun-2,2025-12-17 07:51:41.404059,c4-standard-2,europe-west1-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314,73-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,173.056,,,,3600.0,3600.0,benchmark-instance-s-m-06,20251216-rerun-2,2025-12-17 08:55:13.440414,c4-standard-2,europe-west1-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314,73-1h,gurobi,12.0.0,2024.0,TO,Timeout,3600.0,594.9,,,,3600.0,3600.0,benchmark-instance-s-m-06,20251216-rerun-2,2025-12-17 16:06:13.198314,c4-standard-2,europe-west1-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314,73-1h,highs,1.9.0,2024.0,TO,Timeout,3600.0,1241.776,,,,3600.0,3600.0,benchmark-instance-s-m-06,20251216-rerun-2,2025-12-17 17:09:34.371878,c4-standard-2,europe-west1-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314,73-1h,scip,9.2.0,2024.0,TO,Timeout,3600.0,1757.088,,,,3600.0,3600.0,benchmark-instance-s-m-06,20251216-rerun-2,2025-12-17 18:13:26.742821,c4-standard-2,europe-west1-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314,73-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,155.544,,,,3600.0,3600.0,benchmark-instance-s-m-06,20251216-rerun-2,2025-12-17 19:16:53.267065,c4-standard-2,europe-west1-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314,73-1h,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,654.22,,,,3600.0,3600.0,benchmark-instance-s-m-06,20251216-rerun-2,2025-12-18 02:30:19.453598,c4-standard-2,europe-west1-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314,73-1h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1215.912,,,,3600.0,3600.0,benchmark-instance-s-m-06,20251216-rerun-2,2025-12-18 03:33:58.320483,c4-standard-2,europe-west1-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314,73-1h,scip,10.0.0,2025.0,TO,Timeout,3600.0,1794.036,,,,3600.0,3600.0,benchmark-instance-s-m-06,20251216-rerun-2,2025-12-18 04:37:38.666378,c4-standard-2,europe-west1-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314 -zen-garden-eur-PI,28-10ts,cbc,2.10.12,2024.0,TO,Timeout,86400.0,1788.576,,,,86400.0,86400.0,benchmark-instance-leftovers-00,20251222-leftovers,2025-12-22 15:03:36.811198,c4-highmem-16,us-central1-a,305f3ff,zen-garden-eur-PI-28-10ts,cbc-2.10.12,zen-garden-eur-PI -zen-garden-eur-PI,28-10ts,gurobi,13.0.0,2025.0,ok,optimal,520.7288594439888,10337.508,5825377.405725104,,,496.65637588500977,86400.0,benchmark-instance-leftovers-00,20251222-leftovers,2025-12-23 15:07:51.653165,c4-highmem-16,us-central1-a,305f3ff,zen-garden-eur-PI-28-10ts,gurobi-13.0.0,zen-garden-eur-PI -zen-garden-eur-PI,28-10ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,28989.79990847,8174.1,5825377.4158,,,28989.79990847,86400.0,benchmark-instance-leftovers-00,20251222-leftovers,2025-12-23 15:20:38.016563,c4-highmem-16,us-central1-a,305f3ff,zen-garden-eur-PI-28-10ts,highs-hipo-1.12.0-hipo,zen-garden-eur-PI -zen-garden-eur-PI,28-10ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,31997.223070312,4995.312,5825377.4147,,,31997.223070312,86400.0,benchmark-instance-leftovers-00,20251222-leftovers,2025-12-23 23:27:47.592940,c4-highmem-16,us-central1-a,305f3ff,zen-garden-eur-PI-28-10ts,highs-ipx-1.12.0-hipo,zen-garden-eur-PI -zen-garden-eur-PI,28-10ts,highs,1.12.0,2025.0,TO,Timeout,86400.0,5380.264,,,,86400.0,86400.0,benchmark-instance-leftovers-00,20251222-leftovers,2025-12-24 08:25:03.031672,c4-highmem-16,us-central1-a,305f3ff,zen-garden-eur-PI-28-10ts,highs-1.12.0,zen-garden-eur-PI -zen-garden-eur-PI,28-10ts,scip,10.0.0,2025.0,TO,Timeout,86400.0,21163.948,,,,86400.0,86400.0,benchmark-instance-leftovers-00,20251222-leftovers,2025-12-25 08:28:48.579006,c4-highmem-16,us-central1-a,305f3ff,zen-garden-eur-PI-28-10ts,scip-10.0.0,zen-garden-eur-PI -ethos-fine-multi-regional-7tp,8-168ts,glpk,5.0,2020.0,warning,unknown,0.0161549110000009,147.984,,,,,3600.0,benchmark-instance-leftovers-05,20251222-leftovers,2025-12-22 15:02:27.003627,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-8-168ts,glpk-5.0,ethos-fine-multi-regional-7tp -ethos-fine-multi-regional-7tp,8-168ts,gurobi,10.0.0,2022.0,ok,optimal,3131.926642921,461.084,53.3140148107713,,,3131.21452498436,3600.0,benchmark-instance-leftovers-05,20251222-leftovers,2025-12-22 15:06:53.516152,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-8-168ts,gurobi-10.0.0,ethos-fine-multi-regional-7tp -ethos-fine-multi-regional-7tp,8-168ts,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,731.724,,,,3600.0,3600.0,benchmark-instance-leftovers-05,20251222-leftovers,2025-12-22 16:02:46.463896,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-8-168ts,highs-1.5.0.dev0,ethos-fine-multi-regional-7tp -ethos-fine-multi-regional-7tp,8-168ts,scip,8.0.3,2022.0,TO,Timeout,3600.0,682.988,,,,3600.0,3600.0,benchmark-instance-leftovers-05,20251222-leftovers,2025-12-22 17:06:21.506738,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-8-168ts,scip-8.0.3,ethos-fine-multi-regional-7tp -ethos-fine-multi-regional-7tp,8-168ts,gurobi,11.0.0,2023.0,ok,optimal,2021.3914636080008,462.46,53.31400983622567,,,2020.844556093216,3600.0,benchmark-instance-leftovers-05,20251222-leftovers,2025-12-22 18:13:20.580527,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-8-168ts,gurobi-11.0.0,ethos-fine-multi-regional-7tp -ethos-fine-multi-regional-7tp,8-168ts,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,767.648,,,,3600.0,3600.0,benchmark-instance-leftovers-05,20251222-leftovers,2025-12-22 18:50:38.101947,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-8-168ts,highs-1.6.0.dev0,ethos-fine-multi-regional-7tp -ethos-fine-multi-regional-7tp,8-168ts,scip,8.1.0,2023.0,TO,Timeout,3600.0,690.544,,,,3600.0,3600.0,benchmark-instance-leftovers-05,20251222-leftovers,2025-12-22 19:54:20.409111,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-8-168ts,scip-8.1.0,ethos-fine-multi-regional-7tp -ethos-fine-multi-regional-7tp,8-168ts,cbc,2.10.11,2023.0,TO,Timeout,3600.0,179.268,,,,3600.0,3600.0,benchmark-instance-leftovers-05,20251222-leftovers,2025-12-22 20:57:57.638433,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-8-168ts,cbc-2.10.11,ethos-fine-multi-regional-7tp -ethos-fine-multi-regional-7tp,8-168ts,gurobi,12.0.0,2024.0,ok,optimal,3109.012124284,414.716,53.31401881650922,0.0,8.328613198312597e-05,3108.290172100067,3600.0,benchmark-instance-leftovers-05,20251222-leftovers,2025-12-22 22:02:14.067958,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-8-168ts,gurobi-12.0.0,ethos-fine-multi-regional-7tp -ethos-fine-multi-regional-7tp,8-168ts,highs,1.9.0,2024.0,TO,Timeout,3600.0,867.456,,,,3600.0,3600.0,benchmark-instance-leftovers-05,20251222-leftovers,2025-12-22 22:57:45.989220,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-8-168ts,highs-1.9.0,ethos-fine-multi-regional-7tp -ethos-fine-multi-regional-7tp,8-168ts,scip,9.2.0,2024.0,TO,Timeout,3600.0,673.92,,,,3600.0,3600.0,benchmark-instance-leftovers-05,20251222-leftovers,2025-12-23 00:01:31.132849,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-8-168ts,scip-9.2.0,ethos-fine-multi-regional-7tp -ethos-fine-multi-regional-7tp,8-168ts,cbc,2.10.12,2024.0,TO,Timeout,3600.0,162.152,,,,3600.0,3600.0,benchmark-instance-leftovers-05,20251222-leftovers,2025-12-23 01:05:15.475661,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-8-168ts,cbc-2.10.12,ethos-fine-multi-regional-7tp -ethos-fine-multi-regional-7tp,8-168ts,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,449.84,,,,3600.0,3600.0,benchmark-instance-leftovers-05,20251222-leftovers,2025-12-23 02:09:34.253649,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-8-168ts,gurobi-13.0.0,ethos-fine-multi-regional-7tp -ethos-fine-multi-regional-7tp,8-168ts,highs,1.12.0,2025.0,TO,Timeout,3600.0,1176.988,,,,3600.0,3600.0,benchmark-instance-leftovers-05,20251222-leftovers,2025-12-23 03:13:17.163973,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-8-168ts,highs-1.12.0,ethos-fine-multi-regional-7tp -ethos-fine-multi-regional-7tp,8-168ts,scip,10.0.0,2025.0,TO,Timeout,3600.0,697.924,,,,3600.0,3600.0,benchmark-instance-leftovers-05,20251222-leftovers,2025-12-23 04:17:07.426462,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-8-168ts,scip-10.0.0,ethos-fine-multi-regional-7tp -FINE-energyland,1-8760ts,glpk,5.0,2020.0,ok,optimal,93.327623663,167.496,1416320.9551,,,,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:02:13.021706,c4-standard-2,us-central1-a,305f3ff,FINE-energyland-1-8760ts,glpk-5.0,FINE-energyland -FINE-spatial-aggregation-of-energy-system-model,8-8760ts,glpk,5.0,2020.0,ok,optimal,3.60221629900002,138.18,136.30555245,,,,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:07:28.808384,c4-standard-2,us-central1-a,305f3ff,FINE-spatial-aggregation-of-energy-system-model-8-8760ts,glpk-5.0,FINE-spatial-aggregation-of-energy-system-model -FINE-energyland,1-8760ts,gurobi,10.0.0,2022.0,ok,optimal,51.062290419999954,258.568,416320.9546913172,,,50.46164083480835,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:08:09.839795,c4-standard-2,us-central1-a,305f3ff,FINE-energyland-1-8760ts,gurobi-10.0.0,FINE-energyland -FINE-energyland,1-8760ts,highs,1.5.0.dev0,2022.0,ok,optimal,67.74317027400002,289.208,416320.9545262167,,,67.42860293388367,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:12:44.342423,c4-standard-2,us-central1-a,305f3ff,FINE-energyland-1-8760ts,highs-1.5.0.dev0,FINE-energyland -FINE-energyland,1-8760ts,scip,8.0.3,2022.0,ok,optimal,105.34039052800006,477.804,416320.9545262195,,,105.057685,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:13:52.973643,c4-standard-2,us-central1-a,305f3ff,FINE-energyland-1-8760ts,scip-8.0.3,FINE-energyland -FINE-spatial-aggregation-of-energy-system-model,8-8760ts,gurobi,10.0.0,2022.0,ok,optimal,3.457027601999925,191.672,36.30555531862116,,,3.076032876968384,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:15:39.285189,c4-standard-2,us-central1-a,305f3ff,FINE-spatial-aggregation-of-energy-system-model-8-8760ts,gurobi-10.0.0,FINE-spatial-aggregation-of-energy-system-model -FINE-spatial-aggregation-of-energy-system-model,8-8760ts,highs,1.5.0.dev0,2022.0,ok,optimal,3.7819803740001134,190.772,36.305551195923,,,3.687332391738892,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:15:43.465851,c4-standard-2,us-central1-a,305f3ff,FINE-spatial-aggregation-of-energy-system-model-8-8760ts,highs-1.5.0.dev0,FINE-spatial-aggregation-of-energy-system-model -FINE-spatial-aggregation-of-energy-system-model,8-8760ts,scip,8.0.3,2022.0,ok,optimal,10.272530972999904,259.696,36.30555119123844,,,10.172095,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:15:47.949725,c4-standard-2,us-central1-a,305f3ff,FINE-spatial-aggregation-of-energy-system-model-8-8760ts,scip-8.0.3,FINE-spatial-aggregation-of-energy-system-model -FINE-energyland,1-8760ts,gurobi,11.0.0,2023.0,ok,optimal,46.83493648000013,265.348,416320.9546913173,,,46.32703518867493,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:19:21.062264,c4-standard-2,us-central1-a,305f3ff,FINE-energyland-1-8760ts,gurobi-11.0.0,FINE-energyland -FINE-energyland,1-8760ts,highs,1.6.0.dev0,2023.0,ok,optimal,67.27096194199999,287.668,416320.9545262167,,,67.01178121566772,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:23:51.217548,c4-standard-2,us-central1-a,305f3ff,FINE-energyland-1-8760ts,highs-1.6.0.dev0,FINE-energyland -FINE-energyland,1-8760ts,scip,8.1.0,2023.0,ok,optimal,104.54697139100016,486.752,416320.9545262195,,,104.306061,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:24:59.430903,c4-standard-2,us-central1-a,305f3ff,FINE-energyland-1-8760ts,scip-8.1.0,FINE-energyland -FINE-energyland,1-8760ts,cbc,2.10.11,2023.0,ok,optimal,55.26025787900016,205.392,416320.95452608,,,,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:26:45.001638,c4-standard-2,us-central1-a,305f3ff,FINE-energyland-1-8760ts,cbc-2.10.11,FINE-energyland -FINE-spatial-aggregation-of-energy-system-model,8-8760ts,gurobi,11.0.0,2023.0,ok,optimal,2.852278579999848,198.084,36.3055560644324,,,2.5028438568115234,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:27:41.199069,c4-standard-2,us-central1-a,305f3ff,FINE-spatial-aggregation-of-energy-system-model-8-8760ts,gurobi-11.0.0,FINE-spatial-aggregation-of-energy-system-model -FINE-spatial-aggregation-of-energy-system-model,8-8760ts,highs,1.6.0.dev0,2023.0,ok,optimal,3.707080530999974,198.368,36.305551195923,,,3.630124568939209,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:27:44.855198,c4-standard-2,us-central1-a,305f3ff,FINE-spatial-aggregation-of-energy-system-model-8-8760ts,highs-1.6.0.dev0,FINE-spatial-aggregation-of-energy-system-model -FINE-spatial-aggregation-of-energy-system-model,8-8760ts,scip,8.1.0,2023.0,ok,optimal,10.2347775610001,268.06,36.30555119123844,,,10.159333,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:27:49.368913,c4-standard-2,us-central1-a,305f3ff,FINE-spatial-aggregation-of-energy-system-model-8-8760ts,scip-8.1.0,FINE-spatial-aggregation-of-energy-system-model -FINE-spatial-aggregation-of-energy-system-model,8-8760ts,cbc,2.10.11,2023.0,ok,optimal,3.7966064900001584,171.84,36.30555343,,,,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:28:00.439127,c4-standard-2,us-central1-a,305f3ff,FINE-spatial-aggregation-of-energy-system-model-8-8760ts,cbc-2.10.11,FINE-spatial-aggregation-of-energy-system-model -FINE-energyland,1-8760ts,gurobi,12.0.0,2024.0,ok,optimal,48.94609139099998,251.884,416320.9545832536,,,48.45028114318848,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:28:34.690488,c4-standard-2,us-central1-a,305f3ff,FINE-energyland-1-8760ts,gurobi-12.0.0,FINE-energyland -FINE-energyland,1-8760ts,highs,1.9.0,2024.0,ok,optimal,27.17933303800009,277.364,416320.95452621655,,,26.84825587272644,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:33:06.085562,c4-standard-2,us-central1-a,305f3ff,FINE-energyland-1-8760ts,highs-1.9.0,FINE-energyland -FINE-energyland,1-8760ts,scip,9.2.0,2024.0,ok,optimal,106.8822151989998,474.06,416320.9545262195,,,106.637634,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:33:34.216720,c4-standard-2,us-central1-a,305f3ff,FINE-energyland-1-8760ts,scip-9.2.0,FINE-energyland -FINE-energyland,1-8760ts,cbc,2.10.12,2024.0,ok,optimal,58.28335403199981,224.884,416320.95452608,,,,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:35:22.078665,c4-standard-2,us-central1-a,305f3ff,FINE-energyland-1-8760ts,cbc-2.10.12,FINE-energyland -FINE-spatial-aggregation-of-energy-system-model,8-8760ts,gurobi,12.0.0,2024.0,ok,optimal,3.597952109999824,186.596,36.305558639119134,,,3.2326760292053223,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:36:21.295211,c4-standard-2,us-central1-a,305f3ff,FINE-spatial-aggregation-of-energy-system-model-8-8760ts,gurobi-12.0.0,FINE-spatial-aggregation-of-energy-system-model -FINE-spatial-aggregation-of-energy-system-model,8-8760ts,highs,1.9.0,2024.0,ok,optimal,3.111099041000216,183.844,36.30555122728705,,,3.006555318832397,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:36:25.540595,c4-standard-2,us-central1-a,305f3ff,FINE-spatial-aggregation-of-energy-system-model-8-8760ts,highs-1.9.0,FINE-spatial-aggregation-of-energy-system-model -FINE-spatial-aggregation-of-energy-system-model,8-8760ts,scip,9.2.0,2024.0,ok,optimal,10.726059259000069,250.332,36.30555119123844,,,10.647337,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:36:29.312452,c4-standard-2,us-central1-a,305f3ff,FINE-spatial-aggregation-of-energy-system-model-8-8760ts,scip-9.2.0,FINE-spatial-aggregation-of-energy-system-model -FINE-spatial-aggregation-of-energy-system-model,8-8760ts,cbc,2.10.12,2024.0,ok,optimal,4.069239371999629,168.652,36.30555343,,,,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:36:40.708305,c4-standard-2,us-central1-a,305f3ff,FINE-spatial-aggregation-of-energy-system-model-8-8760ts,cbc-2.10.12,FINE-spatial-aggregation-of-energy-system-model -FINE-energyland,1-8760ts,gurobi,13.0.0,2025.0,ok,optimal,50.72563302200024,277.084,416320.9545832536,,,50.23979783058167,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:37:14.524190,c4-standard-2,us-central1-a,305f3ff,FINE-energyland-1-8760ts,gurobi-13.0.0,FINE-energyland -FINE-energyland,1-8760ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,15.762964083000044,163.036,416320.95453,,,15.762964083000044,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:41:54.876451,c4-standard-2,us-central1-a,305f3ff,FINE-energyland-1-8760ts,highs-hipo-1.12.0-hipo,FINE-energyland -FINE-energyland,1-8760ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,18.626971181000044,163.924,416320.95454,,,18.626971181000044,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:42:11.613101,c4-standard-2,us-central1-a,305f3ff,FINE-energyland-1-8760ts,highs-ipx-1.12.0-hipo,FINE-energyland -FINE-energyland,1-8760ts,highs,1.12.0,2025.0,ok,optimal,27.712944527000214,296.672,416320.954526219,,,27.440996170043945,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:42:31.010714,c4-standard-2,us-central1-a,305f3ff,FINE-energyland-1-8760ts,highs-1.12.0,FINE-energyland -FINE-energyland,1-8760ts,scip,10.0.0,2025.0,ok,optimal,107.16510167899968,500.256,416320.9545262195,,,106.914743,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:42:59.710607,c4-standard-2,us-central1-a,305f3ff,FINE-energyland-1-8760ts,scip-10.0.0,FINE-energyland -FINE-spatial-aggregation-of-energy-system-model,8-8760ts,gurobi,13.0.0,2025.0,ok,optimal,3.554143201999977,211.268,36.30555615573832,,,3.135646104812622,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:44:47.948763,c4-standard-2,us-central1-a,305f3ff,FINE-spatial-aggregation-of-energy-system-model-8-8760ts,gurobi-13.0.0,FINE-spatial-aggregation-of-energy-system-model -FINE-spatial-aggregation-of-energy-system-model,8-8760ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,2.668819597000038,163.28,36.305551182,,,2.668819597000038,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:44:52.363686,c4-standard-2,us-central1-a,305f3ff,FINE-spatial-aggregation-of-energy-system-model-8-8760ts,highs-hipo-1.12.0-hipo,FINE-spatial-aggregation-of-energy-system-model -FINE-spatial-aggregation-of-energy-system-model,8-8760ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,1.76284273400006,163.204,36.305551185,,,1.76284273400006,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:44:55.807367,c4-standard-2,us-central1-a,305f3ff,FINE-spatial-aggregation-of-energy-system-model-8-8760ts,highs-ipx-1.12.0-hipo,FINE-spatial-aggregation-of-energy-system-model -FINE-spatial-aggregation-of-energy-system-model,8-8760ts,highs,1.12.0,2025.0,ok,optimal,2.993225874000018,207.052,36.30555122728705,,,2.911932468414306,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:44:58.330222,c4-standard-2,us-central1-a,305f3ff,FINE-spatial-aggregation-of-energy-system-model-8-8760ts,highs-1.12.0,FINE-spatial-aggregation-of-energy-system-model -FINE-spatial-aggregation-of-energy-system-model,8-8760ts,scip,10.0.0,2025.0,ok,optimal,10.60081694099972,277.94,36.30555119123844,,,10.518119,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:45:02.155332,c4-standard-2,us-central1-a,305f3ff,FINE-spatial-aggregation-of-energy-system-model-8-8760ts,scip-10.0.0,FINE-spatial-aggregation-of-energy-system-model -zen-garden-eur-PI,28-2ts,glpk,5.0,2020.0,ok,optimal,13.073931395999978,245.76,1096080.906,,,,3600.0,benchmark-instance-leftovers-02,20251222-leftovers,2025-12-22 15:01:57.583689,c4-standard-2,us-central1-a,305f3ff,zen-garden-eur-PI-28-2ts,glpk-5.0,zen-garden-eur-PI -zen-garden-eur-PI,28-2ts,gurobi,10.0.0,2022.0,ok,optimal,4.195521823000036,357.484,1096080.9064061071,,,3.1579549312591557,3600.0,benchmark-instance-leftovers-02,20251222-leftovers,2025-12-22 15:06:29.615326,c4-standard-2,us-central1-a,305f3ff,zen-garden-eur-PI-28-2ts,gurobi-10.0.0,zen-garden-eur-PI -zen-garden-eur-PI,28-2ts,highs,1.5.0.dev0,2022.0,ok,optimal,6.362570865999942,388.508,1096080.906406107,,,5.683736562728882,3600.0,benchmark-instance-leftovers-02,20251222-leftovers,2025-12-22 15:10:18.200265,c4-standard-2,us-central1-a,305f3ff,zen-garden-eur-PI-28-2ts,highs-1.5.0.dev0,zen-garden-eur-PI -zen-garden-eur-PI,28-2ts,scip,8.0.3,2022.0,ok,optimal,12.720170639000004,839.756,1096080.9064061071,,,11.956132,3600.0,benchmark-instance-leftovers-02,20251222-leftovers,2025-12-22 15:10:25.789158,c4-standard-2,us-central1-a,305f3ff,zen-garden-eur-PI-28-2ts,scip-8.0.3,zen-garden-eur-PI -zen-garden-eur-PI,28-2ts,gurobi,11.0.0,2023.0,ok,optimal,3.4404475849999017,360.24,1096080.9064061071,,,2.5670690536499023,3600.0,benchmark-instance-leftovers-02,20251222-leftovers,2025-12-22 15:14:06.471939,c4-standard-2,us-central1-a,305f3ff,zen-garden-eur-PI-28-2ts,gurobi-11.0.0,zen-garden-eur-PI -zen-garden-eur-PI,28-2ts,highs,1.6.0.dev0,2023.0,ok,optimal,5.825008024999988,396.768,1096080.906406107,,,5.338489532470703,3600.0,benchmark-instance-leftovers-02,20251222-leftovers,2025-12-22 15:17:56.274194,c4-standard-2,us-central1-a,305f3ff,zen-garden-eur-PI-28-2ts,highs-1.6.0.dev0,zen-garden-eur-PI -zen-garden-eur-PI,28-2ts,scip,8.1.0,2023.0,ok,optimal,12.497753316999932,843.608,1096080.9064061071,,,11.844394,3600.0,benchmark-instance-leftovers-02,20251222-leftovers,2025-12-22 15:18:03.180203,c4-standard-2,us-central1-a,305f3ff,zen-garden-eur-PI-28-2ts,scip-8.1.0,zen-garden-eur-PI -zen-garden-eur-PI,28-2ts,cbc,2.10.11,2023.0,ok,optimal,2.970592775999876,215.964,1096080.90640611,,,,3600.0,benchmark-instance-leftovers-02,20251222-leftovers,2025-12-22 15:18:16.945433,c4-standard-2,us-central1-a,305f3ff,zen-garden-eur-PI-28-2ts,cbc-2.10.11,zen-garden-eur-PI -zen-garden-eur-PI,28-2ts,gurobi,12.0.0,2024.0,ok,optimal,3.67074868199984,346.46,1096080.906406107,,,2.8015029430389404,3600.0,benchmark-instance-leftovers-02,20251222-leftovers,2025-12-22 15:18:47.278260,c4-standard-2,us-central1-a,305f3ff,zen-garden-eur-PI-28-2ts,gurobi-12.0.0,zen-garden-eur-PI -zen-garden-eur-PI,28-2ts,highs,1.9.0,2024.0,ok,optimal,6.885775022999951,382.74,1096080.906406107,,,6.088898420333862,3600.0,benchmark-instance-leftovers-02,20251222-leftovers,2025-12-22 15:22:30.696829,c4-standard-2,us-central1-a,305f3ff,zen-garden-eur-PI-28-2ts,highs-1.9.0,zen-garden-eur-PI -zen-garden-eur-PI,28-2ts,scip,9.2.0,2024.0,ok,optimal,12.50572024500002,827.124,1096080.9064061071,,,11.848145,3600.0,benchmark-instance-leftovers-02,20251222-leftovers,2025-12-22 15:22:39.108663,c4-standard-2,us-central1-a,305f3ff,zen-garden-eur-PI-28-2ts,scip-9.2.0,zen-garden-eur-PI -zen-garden-eur-PI,28-2ts,cbc,2.10.12,2024.0,ok,optimal,3.653995413000075,236.9,1096080.90640611,,,,3600.0,benchmark-instance-leftovers-02,20251222-leftovers,2025-12-22 15:22:53.262828,c4-standard-2,us-central1-a,305f3ff,zen-garden-eur-PI-28-2ts,cbc-2.10.12,zen-garden-eur-PI -zen-garden-eur-PI,28-2ts,gurobi,13.0.0,2025.0,ok,optimal,3.570524740999872,366.484,1096080.906406107,,,2.634330987930298,3600.0,benchmark-instance-leftovers-02,20251222-leftovers,2025-12-22 15:23:27.822967,c4-standard-2,us-central1-a,305f3ff,zen-garden-eur-PI-28-2ts,gurobi-13.0.0,zen-garden-eur-PI -zen-garden-eur-PI,28-2ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,23.34749055300017,221.668,1096080.9069,,,23.34749055300017,3600.0,benchmark-instance-leftovers-02,20251222-leftovers,2025-12-22 15:27:08.581364,c4-standard-2,us-central1-a,305f3ff,zen-garden-eur-PI-28-2ts,highs-hipo-1.12.0-hipo,zen-garden-eur-PI -zen-garden-eur-PI,28-2ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,17.354142969000122,163.732,1096080.9068,,,17.354142969000122,3600.0,benchmark-instance-leftovers-02,20251222-leftovers,2025-12-22 15:27:32.856084,c4-standard-2,us-central1-a,305f3ff,zen-garden-eur-PI-28-2ts,highs-ipx-1.12.0-hipo,zen-garden-eur-PI -zen-garden-eur-PI,28-2ts,highs,1.12.0,2025.0,ok,optimal,6.075926922999997,401.956,1096080.906406107,,,5.5273919105529785,3600.0,benchmark-instance-leftovers-02,20251222-leftovers,2025-12-22 15:27:50.957874,c4-standard-2,us-central1-a,305f3ff,zen-garden-eur-PI-28-2ts,highs-1.12.0,zen-garden-eur-PI -zen-garden-eur-PI,28-2ts,scip,10.0.0,2025.0,ok,optimal,12.175985044999834,851.972,1096080.9064061071,,,11.525978,3600.0,benchmark-instance-leftovers-02,20251222-leftovers,2025-12-22 15:27:58.155866,c4-standard-2,us-central1-a,305f3ff,zen-garden-eur-PI-28-2ts,scip-10.0.0,zen-garden-eur-PI -ethos-fine-energyland-48tp,1-1152ts,glpk,5.0,2020.0,warning,unknown,0.0160920149999697,141.492,,,,,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:02:06.501224,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-48tp-1-1152ts,glpk-5.0,ethos-fine-energyland-48tp -FINE-2-node-electricity-supply-system,2-8760ts,glpk,5.0,2020.0,ok,optimal,3.2010148470000104,136.0,139763.30783,,,,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:05:50.564989,c4-standard-2,us-central1-a,305f3ff,FINE-2-node-electricity-supply-system-2-8760ts,glpk-5.0,FINE-2-node-electricity-supply-system -ethos-fine-energyland-48tp,1-1152ts,gurobi,10.0.0,2022.0,ok,optimal,47.26947504099997,229.592,416320.9534108405,,,46.69332695007324,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:06:31.725832,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-48tp-1-1152ts,gurobi-10.0.0,ethos-fine-energyland-48tp -ethos-fine-energyland-48tp,1-1152ts,highs,1.5.0.dev0,2022.0,ok,optimal,31.308684549999956,245.248,416320.95333323546,,,31.01431703567505,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:11:02.426494,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-48tp-1-1152ts,highs-1.5.0.dev0,ethos-fine-energyland-48tp -ethos-fine-energyland-48tp,1-1152ts,scip,8.0.3,2022.0,ok,optimal,107.21973980899998,446.7,416320.9533332397,,,106.914444,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:11:34.598422,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-48tp-1-1152ts,scip-8.0.3,ethos-fine-energyland-48tp -FINE-2-node-electricity-supply-system,2-8760ts,gurobi,10.0.0,2022.0,ok,optimal,1.9291016900000384,181.92,39763.307831576974,,,1.4754469394683838,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:13:22.762644,c4-standard-2,us-central1-a,305f3ff,FINE-2-node-electricity-supply-system-2-8760ts,gurobi-10.0.0,FINE-2-node-electricity-supply-system -FINE-2-node-electricity-supply-system,2-8760ts,highs,1.5.0.dev0,2022.0,ok,optimal,2.555645772999924,180.912,39763.307831577,,,2.477267265319824,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:13:25.405338,c4-standard-2,us-central1-a,305f3ff,FINE-2-node-electricity-supply-system-2-8760ts,highs-1.5.0.dev0,FINE-2-node-electricity-supply-system -FINE-2-node-electricity-supply-system,2-8760ts,scip,8.0.3,2022.0,ok,optimal,6.562863469000035,236.388,39763.307831576974,,,6.499291,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:13:28.653656,c4-standard-2,us-central1-a,305f3ff,FINE-2-node-electricity-supply-system-2-8760ts,scip-8.0.3,FINE-2-node-electricity-supply-system -ethos-fine-energyland-48tp,1-1152ts,gurobi,11.0.0,2023.0,ok,optimal,51.472511291000046,237.02,416320.9534108405,,,50.9739511013031,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:17:04.238037,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-48tp-1-1152ts,gurobi-11.0.0,ethos-fine-energyland-48tp -ethos-fine-energyland-48tp,1-1152ts,highs,1.6.0.dev0,2023.0,ok,optimal,30.80272179300005,255.424,416320.95333323546,,,30.602459192276,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:21:44.951536,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-48tp-1-1152ts,highs-1.6.0.dev0,ethos-fine-energyland-48tp -ethos-fine-energyland-48tp,1-1152ts,scip,8.1.0,2023.0,ok,optimal,106.270873682,464.432,416320.9533332397,,,106.006316,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:22:16.686687,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-48tp-1-1152ts,scip-8.1.0,ethos-fine-energyland-48tp -ethos-fine-energyland-48tp,1-1152ts,cbc,2.10.11,2023.0,ok,optimal,44.481967021999935,185.964,416320.95332892,,,,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:24:03.934611,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-48tp-1-1152ts,cbc-2.10.11,ethos-fine-energyland-48tp -FINE-2-node-electricity-supply-system,2-8760ts,gurobi,11.0.0,2023.0,ok,optimal,1.7905713029999788,191.216,39763.307831577,,,1.4364490509033203,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:24:49.298648,c4-standard-2,us-central1-a,305f3ff,FINE-2-node-electricity-supply-system-2-8760ts,gurobi-11.0.0,FINE-2-node-electricity-supply-system -FINE-2-node-electricity-supply-system,2-8760ts,highs,1.6.0.dev0,2023.0,ok,optimal,2.510299952999958,188.108,39763.307831577,,,2.4438133239746094,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:24:51.912106,c4-standard-2,us-central1-a,305f3ff,FINE-2-node-electricity-supply-system-2-8760ts,highs-1.6.0.dev0,FINE-2-node-electricity-supply-system -FINE-2-node-electricity-supply-system,2-8760ts,scip,8.1.0,2023.0,ok,optimal,6.480480185000033,244.264,39763.307831576974,,,6.415066,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:24:55.242869,c4-standard-2,us-central1-a,305f3ff,FINE-2-node-electricity-supply-system-2-8760ts,scip-8.1.0,FINE-2-node-electricity-supply-system -FINE-2-node-electricity-supply-system,2-8760ts,cbc,2.10.11,2023.0,ok,optimal,2.3143589359999623,167.912,39763.30783158,,,,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:25:02.559828,c4-standard-2,us-central1-a,305f3ff,FINE-2-node-electricity-supply-system-2-8760ts,cbc-2.10.11,FINE-2-node-electricity-supply-system -ethos-fine-energyland-48tp,1-1152ts,gurobi,12.0.0,2024.0,ok,optimal,57.152202566999904,221.496,416320.9533895149,,,56.67304611206055,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:25:34.837762,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-48tp-1-1152ts,gurobi-12.0.0,ethos-fine-energyland-48tp -ethos-fine-energyland-48tp,1-1152ts,highs,1.9.0,2024.0,ok,optimal,27.19489620800005,242.728,416320.9533332355,,,26.84337902069092,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:30:19.837838,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-48tp-1-1152ts,highs-1.9.0,ethos-fine-energyland-48tp -ethos-fine-energyland-48tp,1-1152ts,scip,9.2.0,2024.0,ok,optimal,106.594236207,446.968,416320.9533332397,,,106.324286,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:30:48.006352,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-48tp-1-1152ts,scip-9.2.0,ethos-fine-energyland-48tp -ethos-fine-energyland-48tp,1-1152ts,cbc,2.10.12,2024.0,ok,optimal,45.04917458799992,191.776,416320.95332892,,,,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:32:35.595682,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-48tp-1-1152ts,cbc-2.10.12,ethos-fine-energyland-48tp -FINE-2-node-electricity-supply-system,2-8760ts,gurobi,12.0.0,2024.0,ok,optimal,1.6890594559999954,174.936,39763.30783157698,,,1.3302569389343262,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:33:21.553933,c4-standard-2,us-central1-a,305f3ff,FINE-2-node-electricity-supply-system-2-8760ts,gurobi-12.0.0,FINE-2-node-electricity-supply-system -FINE-2-node-electricity-supply-system,2-8760ts,highs,1.9.0,2024.0,ok,optimal,1.76254664399994,174.204,39763.307831577,,,1.6778178215026855,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:33:23.881016,c4-standard-2,us-central1-a,305f3ff,FINE-2-node-electricity-supply-system-2-8760ts,highs-1.9.0,FINE-2-node-electricity-supply-system -FINE-2-node-electricity-supply-system,2-8760ts,scip,9.2.0,2024.0,ok,optimal,6.512301741999636,227.744,39763.307831576974,,,6.448081,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:33:26.274977,c4-standard-2,us-central1-a,305f3ff,FINE-2-node-electricity-supply-system-2-8760ts,scip-9.2.0,FINE-2-node-electricity-supply-system -FINE-2-node-electricity-supply-system,2-8760ts,cbc,2.10.12,2024.0,ok,optimal,2.3678194100002656,159.492,39763.30783158,,,,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:33:33.430155,c4-standard-2,us-central1-a,305f3ff,FINE-2-node-electricity-supply-system-2-8760ts,cbc-2.10.12,FINE-2-node-electricity-supply-system -ethos-fine-energyland-48tp,1-1152ts,gurobi,13.0.0,2025.0,ok,optimal,57.801277372000186,250.804,416320.9533895149,,,57.31358218193054,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:34:04.953413,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-48tp-1-1152ts,gurobi-13.0.0,ethos-fine-energyland-48tp -ethos-fine-energyland-48tp,1-1152ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,14.073151239999788,163.356,416320.95334,,,14.073151239999788,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:38:52.938407,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-48tp-1-1152ts,highs-hipo-1.12.0-hipo,ethos-fine-energyland-48tp -ethos-fine-energyland-48tp,1-1152ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,19.46731396999985,163.132,416320.95334,,,19.46731396999985,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:39:08.192238,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-48tp-1-1152ts,highs-ipx-1.12.0-hipo,ethos-fine-energyland-48tp -ethos-fine-energyland-48tp,1-1152ts,highs,1.12.0,2025.0,ok,optimal,26.931262666999828,264.468,416320.9533332394,,,26.703065872192383,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:39:28.450973,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-48tp-1-1152ts,highs-1.12.0,ethos-fine-energyland-48tp -ethos-fine-energyland-48tp,1-1152ts,scip,10.0.0,2025.0,ok,optimal,106.36432720199991,471.096,416320.9533332397,,,106.091685,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:39:56.340048,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-48tp-1-1152ts,scip-10.0.0,ethos-fine-energyland-48tp -FINE-2-node-electricity-supply-system,2-8760ts,gurobi,13.0.0,2025.0,ok,optimal,1.7242017480002687,201.964,39763.30783157698,,,1.3459858894348145,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:41:43.746532,c4-standard-2,us-central1-a,305f3ff,FINE-2-node-electricity-supply-system-2-8760ts,gurobi-13.0.0,FINE-2-node-electricity-supply-system -FINE-2-node-electricity-supply-system,2-8760ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,2.3668537270000343,163.02,39763.307832,,,2.3668537270000343,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:41:46.319047,c4-standard-2,us-central1-a,305f3ff,FINE-2-node-electricity-supply-system-2-8760ts,highs-hipo-1.12.0-hipo,FINE-2-node-electricity-supply-system -FINE-2-node-electricity-supply-system,2-8760ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,1.835145268999895,163.288,39763.307832,,,1.835145268999895,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:41:49.478520,c4-standard-2,us-central1-a,305f3ff,FINE-2-node-electricity-supply-system-2-8760ts,highs-ipx-1.12.0-hipo,FINE-2-node-electricity-supply-system -FINE-2-node-electricity-supply-system,2-8760ts,highs,1.12.0,2025.0,ok,optimal,1.756702808999762,199.048,39763.307831577,,,1.6898314952850342,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:41:52.100118,c4-standard-2,us-central1-a,305f3ff,FINE-2-node-electricity-supply-system-2-8760ts,highs-1.12.0,FINE-2-node-electricity-supply-system -FINE-2-node-electricity-supply-system,2-8760ts,scip,10.0.0,2025.0,ok,optimal,6.519639124999685,253.112,39763.307831576974,,,6.450792,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:41:54.691187,c4-standard-2,us-central1-a,305f3ff,FINE-2-node-electricity-supply-system-2-8760ts,scip-10.0.0,FINE-2-node-electricity-supply-system -OEMOF-economic-results,1-8760ts,glpk,5.0,2020.0,ER,,,149.788,,,,,3600.0,benchmark-instance-leftovers-04,20251222-leftovers,2025-12-22 15:01:55.331738,c4-standard-2,us-central1-a,305f3ff,OEMOF-economic-results-1-8760ts,glpk-5.0,OEMOF-economic-results -OEMOF-economic-results,1-8760ts,gurobi,10.0.0,2022.0,ok,optimal,0.9017657470000132,317.036,19364184373.23463,,,0.2722840309143066,3600.0,benchmark-instance-leftovers-04,20251222-leftovers,2025-12-22 15:06:00.037472,c4-standard-2,us-central1-a,305f3ff,OEMOF-economic-results-1-8760ts,gurobi-10.0.0,OEMOF-economic-results -OEMOF-economic-results,1-8760ts,highs,1.5.0.dev0,2022.0,ok,optimal,0.8387785209999947,283.104,19364184373.23463,,,0.4181966781616211,3600.0,benchmark-instance-leftovers-04,20251222-leftovers,2025-12-22 15:09:22.832461,c4-standard-2,us-central1-a,305f3ff,OEMOF-economic-results-1-8760ts,highs-1.5.0.dev0,OEMOF-economic-results -OEMOF-economic-results,1-8760ts,scip,8.0.3,2022.0,ok,optimal,7.645272688000091,585.26,19364184373.23463,,,7.198092,3600.0,benchmark-instance-leftovers-04,20251222-leftovers,2025-12-22 15:09:24.606437,c4-standard-2,us-central1-a,305f3ff,OEMOF-economic-results-1-8760ts,scip-8.0.3,OEMOF-economic-results -OEMOF-economic-results,1-8760ts,gurobi,11.0.0,2023.0,ok,optimal,0.8442713109999431,329.924,19364184373.23463,,,0.2748401165008545,3600.0,benchmark-instance-leftovers-04,20251222-leftovers,2025-12-22 15:12:32.847902,c4-standard-2,us-central1-a,305f3ff,OEMOF-economic-results-1-8760ts,gurobi-11.0.0,OEMOF-economic-results -OEMOF-economic-results,1-8760ts,highs,1.6.0.dev0,2023.0,ok,optimal,0.8309892729998865,316.96,19364184373.23463,,,0.4178853034973144,3600.0,benchmark-instance-leftovers-04,20251222-leftovers,2025-12-22 15:15:56.892058,c4-standard-2,us-central1-a,305f3ff,OEMOF-economic-results-1-8760ts,highs-1.6.0.dev0,OEMOF-economic-results -OEMOF-economic-results,1-8760ts,scip,8.1.0,2023.0,ok,optimal,7.662641971000085,603.068,19364184373.23463,,,7.281217,3600.0,benchmark-instance-leftovers-04,20251222-leftovers,2025-12-22 15:15:58.827421,c4-standard-2,us-central1-a,305f3ff,OEMOF-economic-results-1-8760ts,scip-8.1.0,OEMOF-economic-results -OEMOF-economic-results,1-8760ts,cbc,2.10.11,2023.0,ok,optimal,4.755166635000023,452.632,19364184373.23457,,,4.15,3600.0,benchmark-instance-leftovers-04,20251222-leftovers,2025-12-22 15:16:07.675225,c4-standard-2,us-central1-a,305f3ff,OEMOF-economic-results-1-8760ts,cbc-2.10.11,OEMOF-economic-results -OEMOF-economic-results,1-8760ts,gurobi,12.0.0,2024.0,ok,optimal,0.87273391299982,307.5,19364184373.23463,0.0,0.0,0.2786650657653808,3600.0,benchmark-instance-leftovers-04,20251222-leftovers,2025-12-22 15:16:37.686341,c4-standard-2,us-central1-a,305f3ff,OEMOF-economic-results-1-8760ts,gurobi-12.0.0,OEMOF-economic-results -OEMOF-economic-results,1-8760ts,highs,1.9.0,2024.0,ok,optimal,0.8568469619999632,278.372,19364184373.23463,0.0,2.0656639398626988e-08,0.4219865798950195,3600.0,benchmark-instance-leftovers-04,20251222-leftovers,2025-12-22 15:20:01.749760,c4-standard-2,us-central1-a,305f3ff,OEMOF-economic-results-1-8760ts,highs-1.9.0,OEMOF-economic-results -OEMOF-economic-results,1-8760ts,scip,9.2.0,2024.0,ok,optimal,7.515914111000029,573.532,19364184373.23463,0.0,1.8054468288474717e-08,7.135079,3600.0,benchmark-instance-leftovers-04,20251222-leftovers,2025-12-22 15:20:03.579134,c4-standard-2,us-central1-a,305f3ff,OEMOF-economic-results-1-8760ts,scip-9.2.0,OEMOF-economic-results -OEMOF-economic-results,1-8760ts,cbc,2.10.12,2024.0,ok,optimal,5.140532159000031,452.068,19364184373.23457,0.0,0.0,4.07,3600.0,benchmark-instance-leftovers-04,20251222-leftovers,2025-12-22 15:20:12.135998,c4-standard-2,us-central1-a,305f3ff,OEMOF-economic-results-1-8760ts,cbc-2.10.12,OEMOF-economic-results -OEMOF-economic-results,1-8760ts,gurobi,13.0.0,2025.0,ok,optimal,0.8376174340000944,343.068,19364184373.234634,0.0,0.0,0.2677428722381592,3600.0,benchmark-instance-leftovers-04,20251222-leftovers,2025-12-22 15:20:43.716295,c4-standard-2,us-central1-a,305f3ff,OEMOF-economic-results-1-8760ts,gurobi-13.0.0,OEMOF-economic-results -OEMOF-economic-results,1-8760ts,highs,1.12.0,2025.0,ok,optimal,1.3957568380001248,326.424,19364184373.23463,0.0,2.0656639398626988e-08,0.9381773471832277,3600.0,benchmark-instance-leftovers-04,20251222-leftovers,2025-12-22 15:24:06.064815,c4-standard-2,us-central1-a,305f3ff,OEMOF-economic-results-1-8760ts,highs-1.12.0,OEMOF-economic-results -OEMOF-economic-results,1-8760ts,scip,10.0.0,2025.0,ok,optimal,7.536482174999946,609.8,19364184373.23463,0.0,1.8054468288474717e-08,7.133763,3600.0,benchmark-instance-leftovers-04,20251222-leftovers,2025-12-22 15:24:08.781102,c4-standard-2,us-central1-a,305f3ff,OEMOF-economic-results-1-8760ts,scip-10.0.0,OEMOF-economic-results -FINE-multi-regional-energy-system-workflow,8-8760ts,glpk,5.0,2020.0,ok,unknown,36.995772345000034,158.24,140.19331558,,,,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:01:48.507934,c4-standard-2,us-central1-a,305f3ff,FINE-multi-regional-energy-system-workflow-8-8760ts,glpk-5.0,FINE-multi-regional-energy-system-workflow -FINE-perfect-foresight,1-8760ts,glpk,5.0,2020.0,ok,optimal,3.3880888759999834,142.02,199.8870677,,,,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:05:43.610564,c4-standard-2,us-central1-a,305f3ff,FINE-perfect-foresight-1-8760ts,glpk-5.0,FINE-perfect-foresight -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29,73-1h,glpk,5.0,2020.0,ok,unknown,976.206880399,241.748,505951.5982,,,,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:05:47.451055,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29 -FINE-water-supply-system,12-8760ts,glpk,5.0,2020.0,ok,optimal,0.3386456119999366,129.524,11138.452576,,,,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:22:04.089529,c4-standard-2,us-central1-a,305f3ff,FINE-water-supply-system-12-8760ts,glpk-5.0,FINE-water-supply-system -FINE-multi-regional-energy-system-workflow,8-8760ts,gurobi,10.0.0,2022.0,ok,optimal,9.748057493000031,251.876,40.19540970100533,,,9.311718940734863,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:22:40.418367,c4-standard-2,us-central1-a,305f3ff,FINE-multi-regional-energy-system-workflow-8-8760ts,gurobi-10.0.0,FINE-multi-regional-energy-system-workflow -FINE-multi-regional-energy-system-workflow,8-8760ts,highs,1.5.0.dev0,2022.0,ok,optimal,16.31301934399994,397.124,40.1933155828726,,,16.127575159072876,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:26:16.247027,c4-standard-2,us-central1-a,305f3ff,FINE-multi-regional-energy-system-workflow-8-8760ts,highs-1.5.0.dev0,FINE-multi-regional-energy-system-workflow -FINE-multi-regional-energy-system-workflow,8-8760ts,scip,8.0.3,2022.0,ok,optimal,44.40654896299998,504.112,40.1933155828726,,,44.249228,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:26:33.286389,c4-standard-2,us-central1-a,305f3ff,FINE-multi-regional-energy-system-workflow-8-8760ts,scip-8.0.3,FINE-multi-regional-energy-system-workflow -FINE-perfect-foresight,1-8760ts,gurobi,10.0.0,2022.0,ok,optimal,1.352043662999904,203.176,99.88713847796323,,,1.2409820556640625,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:27:18.478321,c4-standard-2,us-central1-a,305f3ff,FINE-perfect-foresight-1-8760ts,gurobi-10.0.0,FINE-perfect-foresight -FINE-perfect-foresight,1-8760ts,highs,1.5.0.dev0,2022.0,ok,optimal,1.959251346999963,204.148,99.8870686467559,,,1.857034683227539,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:27:20.495449,c4-standard-2,us-central1-a,305f3ff,FINE-perfect-foresight-1-8760ts,highs-1.5.0.dev0,FINE-perfect-foresight -FINE-perfect-foresight,1-8760ts,scip,8.0.3,2022.0,ok,optimal,4.032671090000122,289.48,99.8870658266207,,,3.92527,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:27:23.110123,c4-standard-2,us-central1-a,305f3ff,FINE-perfect-foresight-1-8760ts,scip-8.0.3,FINE-perfect-foresight -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29,73-1h,gurobi,10.0.0,2022.0,ok,optimal,3.1043027709999933,199.48,505951.5981507519,,,3.0538837909698486,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:27:27.824290,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29,73-1h,highs,1.5.0.dev0,2022.0,ok,optimal,25.86433206200013,305.032,505951.5981472377,,,25.79325747489929,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:27:31.555843,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29,73-1h,scip,8.0.3,2022.0,ok,optimal,21.19946683000012,375.656,505951.5981513351,,,21.11142,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:27:58.046955,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29 -FINE-water-supply-system,12-8760ts,gurobi,10.0.0,2022.0,ok,optimal,0.3283072930000799,176.764,1138.4525756132873,,,0.3012609481811523,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:28:19.911585,c4-standard-2,us-central1-a,305f3ff,FINE-water-supply-system-12-8760ts,gurobi-10.0.0,FINE-water-supply-system -FINE-water-supply-system,12-8760ts,highs,1.5.0.dev0,2022.0,ok,optimal,0.3857703450000826,180.144,1138.452575608342,,,0.350536584854126,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:28:20.823118,c4-standard-2,us-central1-a,305f3ff,FINE-water-supply-system-12-8760ts,highs-1.5.0.dev0,FINE-water-supply-system -FINE-water-supply-system,12-8760ts,scip,8.0.3,2022.0,ok,optimal,0.901530320999882,240.0,1138.452575729948,,,0.8711139999999999,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:28:21.798725,c4-standard-2,us-central1-a,305f3ff,FINE-water-supply-system-12-8760ts,scip-8.0.3,FINE-water-supply-system -FINE-multi-regional-energy-system-workflow,8-8760ts,gurobi,11.0.0,2023.0,ok,optimal,7.568694158999733,263.2,40.19540906352307,,,7.202003002166748,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:31:21.895729,c4-standard-2,us-central1-a,305f3ff,FINE-multi-regional-energy-system-workflow-8-8760ts,gurobi-11.0.0,FINE-multi-regional-energy-system-workflow -FINE-multi-regional-energy-system-workflow,8-8760ts,highs,1.6.0.dev0,2023.0,ok,optimal,15.644906585000172,428.908,40.1933155828726,,,15.493412256240845,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:34:54.041789,c4-standard-2,us-central1-a,305f3ff,FINE-multi-regional-energy-system-workflow-8-8760ts,highs-1.6.0.dev0,FINE-multi-regional-energy-system-workflow -FINE-multi-regional-energy-system-workflow,8-8760ts,scip,8.1.0,2023.0,ok,optimal,43.9059565120001,504.204,40.1933155828726,,,43.764984,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:35:10.532220,c4-standard-2,us-central1-a,305f3ff,FINE-multi-regional-energy-system-workflow-8-8760ts,scip-8.1.0,FINE-multi-regional-energy-system-workflow -FINE-multi-regional-energy-system-workflow,8-8760ts,cbc,2.10.11,2023.0,ok,optimal,52.31200225900011,202.364,40.19331558,,,52.11,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:35:55.307814,c4-standard-2,us-central1-a,305f3ff,FINE-multi-regional-energy-system-workflow-8-8760ts,cbc-2.10.11,FINE-multi-regional-energy-system-workflow -FINE-perfect-foresight,1-8760ts,gurobi,11.0.0,2023.0,ok,optimal,1.291278799000338,207.22,99.88713245771685,,,0.9446971416473388,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:36:48.419283,c4-standard-2,us-central1-a,305f3ff,FINE-perfect-foresight-1-8760ts,gurobi-11.0.0,FINE-perfect-foresight -FINE-perfect-foresight,1-8760ts,highs,1.6.0.dev0,2023.0,ok,optimal,1.8713257610002076,210.944,99.8870686467559,,,1.7851157188415527,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:36:50.454194,c4-standard-2,us-central1-a,305f3ff,FINE-perfect-foresight-1-8760ts,highs-1.6.0.dev0,FINE-perfect-foresight -FINE-perfect-foresight,1-8760ts,scip,8.1.0,2023.0,ok,optimal,3.952285156000016,294.268,99.8870658266207,,,3.864387,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:36:53.057852,c4-standard-2,us-central1-a,305f3ff,FINE-perfect-foresight-1-8760ts,scip-8.1.0,FINE-perfect-foresight -FINE-perfect-foresight,1-8760ts,cbc,2.10.11,2023.0,ok,optimal,1.875743181999951,175.14,99.88706971,,,,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:36:57.788187,c4-standard-2,us-central1-a,305f3ff,FINE-perfect-foresight-1-8760ts,cbc-2.10.11,FINE-perfect-foresight -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29,73-1h,gurobi,11.0.0,2023.0,ok,optimal,2.8204569550002816,207.644,505951.5981228218,,,2.779921054840088,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:37:00.399798,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29,73-1h,highs,1.6.0.dev0,2023.0,ok,optimal,24.77559604299995,321.708,505951.5981472377,,,24.732335805892944,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:37:03.937252,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29,73-1h,scip,8.1.0,2023.0,ok,optimal,20.97747867099997,383.46,505951.5981513351,,,20.914131,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:37:29.442688,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29,73-1h,cbc,2.10.11,2023.0,ok,optimal,78.98357525600022,162.032,505951.59815044,,,78.92,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:37:51.168717,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29 -FINE-water-supply-system,12-8760ts,gurobi,11.0.0,2023.0,ok,optimal,0.1997832930001095,180.052,1138.4525756132873,,,0.1775488853454589,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:39:10.840667,c4-standard-2,us-central1-a,305f3ff,FINE-water-supply-system-12-8760ts,gurobi-11.0.0,FINE-water-supply-system -FINE-water-supply-system,12-8760ts,highs,1.6.0.dev0,2023.0,ok,optimal,0.3538136870001835,192.796,1138.452575608342,,,0.324855089187622,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:39:11.728097,c4-standard-2,us-central1-a,305f3ff,FINE-water-supply-system-12-8760ts,highs-1.6.0.dev0,FINE-water-supply-system -FINE-water-supply-system,12-8760ts,scip,8.1.0,2023.0,ok,optimal,0.8786511199996312,251.236,1138.452575729948,,,0.8481719999999999,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:39:12.766230,c4-standard-2,us-central1-a,305f3ff,FINE-water-supply-system-12-8760ts,scip-8.1.0,FINE-water-supply-system -FINE-water-supply-system,12-8760ts,cbc,2.10.11,2023.0,ok,optimal,1.0221706490001452,163.892,1138.45257613,,,0.98,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:39:14.346388,c4-standard-2,us-central1-a,305f3ff,FINE-water-supply-system-12-8760ts,cbc-2.10.11,FINE-water-supply-system -FINE-multi-regional-energy-system-workflow,8-8760ts,gurobi,12.0.0,2024.0,ok,optimal,6.628213255999981,262.844,40.19540970100534,0.0,5.506463957994454e-05,6.248203992843628,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:39:39.741510,c4-standard-2,us-central1-a,305f3ff,FINE-multi-regional-energy-system-workflow-8-8760ts,gurobi-12.0.0,FINE-multi-regional-energy-system-workflow -FINE-multi-regional-energy-system-workflow,8-8760ts,highs,1.9.0,2024.0,ok,optimal,22.488043581000056,435.448,40.1933155828726,1.1102230246251563e-16,9.23517636350491e-05,22.285516500473022,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:43:12.619476,c4-standard-2,us-central1-a,305f3ff,FINE-multi-regional-energy-system-workflow-8-8760ts,highs-1.9.0,FINE-multi-regional-energy-system-workflow -FINE-multi-regional-energy-system-workflow,8-8760ts,scip,9.2.0,2024.0,ok,optimal,46.30694265300008,490.364,40.1933155828726,1.9131363160340698e-12,0.0,46.167804,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:43:35.839248,c4-standard-2,us-central1-a,305f3ff,FINE-multi-regional-energy-system-workflow-8-8760ts,scip-9.2.0,FINE-multi-regional-energy-system-workflow -FINE-multi-regional-energy-system-workflow,8-8760ts,cbc,2.10.12,2024.0,ok,optimal,54.269682699999976,207.544,40.19331558,0.0,,53.88,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:44:22.881792,c4-standard-2,us-central1-a,305f3ff,FINE-multi-regional-energy-system-workflow-8-8760ts,cbc-2.10.12,FINE-multi-regional-energy-system-workflow -FINE-perfect-foresight,1-8760ts,gurobi,12.0.0,2024.0,ok,optimal,1.551140169000064,193.24,99.887168739017,,,1.2073209285736084,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:45:17.791200,c4-standard-2,us-central1-a,305f3ff,FINE-perfect-foresight-1-8760ts,gurobi-12.0.0,FINE-perfect-foresight -FINE-perfect-foresight,1-8760ts,highs,1.9.0,2024.0,ok,optimal,1.841829563000374,195.308,99.88707028133442,,,1.7357046604156494,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:45:19.927459,c4-standard-2,us-central1-a,305f3ff,FINE-perfect-foresight-1-8760ts,highs-1.9.0,FINE-perfect-foresight -FINE-perfect-foresight,1-8760ts,scip,9.2.0,2024.0,ok,optimal,3.9721118009997554,280.084,99.8870658266207,,,3.884632,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:45:22.340245,c4-standard-2,us-central1-a,305f3ff,FINE-perfect-foresight-1-8760ts,scip-9.2.0,FINE-perfect-foresight -FINE-perfect-foresight,1-8760ts,cbc,2.10.12,2024.0,ok,optimal,1.9576258749998487,173.82,99.88706971,,,,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:45:26.928776,c4-standard-2,us-central1-a,305f3ff,FINE-perfect-foresight-1-8760ts,cbc-2.10.12,FINE-perfect-foresight -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29,73-1h,gurobi,12.0.0,2024.0,ok,optimal,2.290707151999868,193.228,505951.598145951,0.0,0.0,2.249654054641724,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:45:29.465176,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29,73-1h,highs,1.9.0,2024.0,ok,optimal,27.283277636000093,338.364,505951.5981504367,4.2454928461665996e-13,6.97599070859914e-05,27.208946466445923,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:45:32.292765,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29,73-1h,scip,9.2.0,2024.0,ok,optimal,21.35765878700022,368.256,505951.5981513351,0.0,0.0,21.289028,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:46:00.125293,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29,73-1h,cbc,2.10.12,2024.0,ok,optimal,79.38959917300008,155.48,505951.59815044,0.0,,79.26,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:46:22.065348,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29 -FINE-water-supply-system,12-8760ts,gurobi,12.0.0,2024.0,ok,optimal,0.3409823399997549,170.32,1138.4525751894666,0.0,0.0,0.3193349838256836,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:47:41.971680,c4-standard-2,us-central1-a,305f3ff,FINE-water-supply-system-12-8760ts,gurobi-12.0.0,FINE-water-supply-system -FINE-water-supply-system,12-8760ts,highs,1.9.0,2024.0,ok,optimal,0.3557163650002621,173.0,1138.452575608342,0.0,0.0,0.3204832077026367,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:47:42.793956,c4-standard-2,us-central1-a,305f3ff,FINE-water-supply-system-12-8760ts,highs-1.9.0,FINE-water-supply-system -FINE-water-supply-system,12-8760ts,scip,9.2.0,2024.0,ok,optimal,0.9058792310001992,231.556,1138.452575729948,0.0,0.0,0.8733879999999999,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:47:43.640894,c4-standard-2,us-central1-a,305f3ff,FINE-water-supply-system-12-8760ts,scip-9.2.0,FINE-water-supply-system -FINE-water-supply-system,12-8760ts,cbc,2.10.12,2024.0,ok,optimal,1.0583968549999554,155.576,1138.45257613,0.0,,0.98,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:47:45.040548,c4-standard-2,us-central1-a,305f3ff,FINE-water-supply-system-12-8760ts,cbc-2.10.12,FINE-water-supply-system -FINE-multi-regional-energy-system-workflow,8-8760ts,gurobi,13.0.0,2025.0,ok,optimal,6.954697580999891,279.944,40.19540970100533,0.0,7.527131078936529e-05,6.5981810092926025,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:48:13.568304,c4-standard-2,us-central1-a,305f3ff,FINE-multi-regional-energy-system-workflow-8-8760ts,gurobi-13.0.0,FINE-multi-regional-energy-system-workflow -FINE-multi-regional-energy-system-workflow,8-8760ts,highs,1.12.0,2025.0,ok,optimal,23.756458361000117,484.524,40.193315582872586,1.3800072196090698e-13,9.233539252678332e-05,23.593135118484497,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:51:46.095928,c4-standard-2,us-central1-a,305f3ff,FINE-multi-regional-energy-system-workflow-8-8760ts,highs-1.12.0,FINE-multi-regional-energy-system-workflow -FINE-multi-regional-energy-system-workflow,8-8760ts,scip,10.0.0,2025.0,ok,optimal,43.96857233199989,517.3,40.1933155828726,1.9131363160340698e-12,0.0,43.81699,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:52:10.850942,c4-standard-2,us-central1-a,305f3ff,FINE-multi-regional-energy-system-workflow-8-8760ts,scip-10.0.0,FINE-multi-regional-energy-system-workflow -FINE-perfect-foresight,1-8760ts,gurobi,13.0.0,2025.0,ok,optimal,1.546830067999963,220.6,99.887168739017,,,1.457902908325195,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:52:55.702342,c4-standard-2,us-central1-a,305f3ff,FINE-perfect-foresight-1-8760ts,gurobi-13.0.0,FINE-perfect-foresight -FINE-perfect-foresight,1-8760ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,2.4566897690001497,163.312,99.887064263,,,2.4566897690001497,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:52:58.017413,c4-standard-2,us-central1-a,305f3ff,FINE-perfect-foresight-1-8760ts,highs-hipo-1.12.0-hipo,FINE-perfect-foresight -FINE-perfect-foresight,1-8760ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,1.318090495999968,163.224,99.887064263,,,1.318090495999968,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:53:01.151944,c4-standard-2,us-central1-a,305f3ff,FINE-perfect-foresight-1-8760ts,highs-ipx-1.12.0-hipo,FINE-perfect-foresight -FINE-perfect-foresight,1-8760ts,highs,1.12.0,2025.0,ok,optimal,1.797280550999858,221.392,99.88707028133445,,,1.7059063911437988,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:53:03.159234,c4-standard-2,us-central1-a,305f3ff,FINE-perfect-foresight-1-8760ts,highs-1.12.0,FINE-perfect-foresight -FINE-perfect-foresight,1-8760ts,scip,10.0.0,2025.0,ok,optimal,3.926495377000265,307.696,99.8870658266207,,,3.838008,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:53:05.685818,c4-standard-2,us-central1-a,305f3ff,FINE-perfect-foresight-1-8760ts,scip-10.0.0,FINE-perfect-foresight -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29,73-1h,gurobi,13.0.0,2025.0,ok,optimal,2.88500410000006,223.092,505951.5981459508,0.0,0.0,2.8444809913635254,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:53:10.385748,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29,73-1h,highs,1.12.0,2025.0,ok,optimal,34.94307011799992,362.988,505951.5981504553,1.8800534029235814e-14,0.0,34.89301061630249,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:53:14.000316,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29,73-1h,scip,10.0.0,2025.0,ok,optimal,20.42654338700004,396.804,505951.5981513351,0.0,0.0,20.358534,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:53:49.657881,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29 -FINE-water-supply-system,12-8760ts,gurobi,13.0.0,2025.0,ok,optimal,0.3511550930002158,197.192,1138.4525751894666,0.0,0.0,0.3293659687042236,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:54:10.828871,c4-standard-2,us-central1-a,305f3ff,FINE-water-supply-system-12-8760ts,gurobi-13.0.0,FINE-water-supply-system -FINE-water-supply-system,12-8760ts,highs,1.12.0,2025.0,ok,optimal,0.384659061000093,197.668,1138.452575608342,0.0,0.0,0.3532154560089111,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:54:11.869992,c4-standard-2,us-central1-a,305f3ff,FINE-water-supply-system-12-8760ts,highs-1.12.0,FINE-water-supply-system -FINE-water-supply-system,12-8760ts,scip,10.0.0,2025.0,ok,optimal,0.8657060360001196,261.524,1138.452575729948,0.0,0.0,0.830561,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:54:12.938556,c4-standard-2,us-central1-a,305f3ff,FINE-water-supply-system-12-8760ts,scip-10.0.0,FINE-water-supply-system -FINE-district-optimization,14-8760ts,glpk,5.0,2020.0,ok,optimal,10.558266930999991,149.248,1132937.1437,,,,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 15:02:07.543140,c4-standard-2,us-central1-a,305f3ff,FINE-district-optimization-14-8760ts,glpk-5.0,FINE-district-optimization -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,129.652,,,,3600.0,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 15:06:11.411167,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,126.82,,,,3600.0,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 16:09:51.495834,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29 -SWITCH-carbon-cap,3-6ts,glpk,5.0,2020.0,ER,,,125.276,,,,,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 17:13:29.971856,c4-standard-2,us-central1-a,305f3ff,SWITCH-carbon-cap-3-6ts,glpk-5.0,SWITCH-carbon-cap -FINE-district-optimization,14-8760ts,gurobi,10.0.0,2022.0,ok,optimal,3.6802890630006,227.356,132937.14363065374,,,3.2485899925231934,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 17:14:10.943158,c4-standard-2,us-central1-a,305f3ff,FINE-district-optimization-14-8760ts,gurobi-10.0.0,FINE-district-optimization -FINE-district-optimization,14-8760ts,highs,1.5.0.dev0,2022.0,ok,optimal,12.029417857000226,336.328,132937.14369594064,,,11.863378286361694,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 17:17:54.187286,c4-standard-2,us-central1-a,305f3ff,FINE-district-optimization-14-8760ts,highs-1.5.0.dev0,FINE-district-optimization -FINE-district-optimization,14-8760ts,scip,8.0.3,2022.0,ok,optimal,31.05419436899865,475.204,132947.56354267383,,,30.911067,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 17:18:07.002699,c4-standard-2,us-central1-a,305f3ff,FINE-district-optimization-14-8760ts,scip-8.0.3,FINE-district-optimization -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332,73-1h,gurobi,10.0.0,2022.0,ok,optimal,740.6143168460003,385.284,880819.4497931139,,,740.5356497764587,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 17:18:38.873599,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332,73-1h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1458.888,,,,3600.0,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 17:31:00.200956,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332,73-1h,scip,8.0.3,2022.0,TO,Timeout,3600.0,1408.548,,,,3600.0,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 18:34:39.848246,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29,73-1h,gurobi,10.0.0,2022.0,ok,optimal,6.755541031001485,198.672,316796.6181523674,,,6.42007303237915,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 19:38:24.557619,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29,73-1h,highs,1.5.0.dev0,2022.0,ok,optimal,133.93545417199857,409.052,316796.61815236736,,,133.86872601509094,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 19:38:32.013554,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29,73-1h,scip,8.0.3,2022.0,ok,optimal,66.8920900819976,379.484,316796.61815106845,,,66.807427,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 19:40:46.646128,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29 -SWITCH-carbon-cap,3-6ts,gurobi,10.0.0,2022.0,ok,optimal,0.0129719229989859,154.228,139541670.1290208,,,0.0029959678649902,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 19:41:54.279841,c4-standard-2,us-central1-a,305f3ff,SWITCH-carbon-cap-3-6ts,gurobi-10.0.0,SWITCH-carbon-cap -SWITCH-carbon-cap,3-6ts,highs,1.5.0.dev0,2022.0,ok,optimal,0.0104444739990867,148.092,139541670.12902087,,,0.0029354095458984,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 19:41:54.925507,c4-standard-2,us-central1-a,305f3ff,SWITCH-carbon-cap-3-6ts,highs-1.5.0.dev0,SWITCH-carbon-cap -SWITCH-carbon-cap,3-6ts,scip,8.0.3,2022.0,ok,optimal,0.0167902569992293,161.612,139541670.12902087,,,0.00838,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 19:41:55.573717,c4-standard-2,us-central1-a,305f3ff,SWITCH-carbon-cap-3-6ts,scip-8.0.3,SWITCH-carbon-cap -FINE-district-optimization,14-8760ts,gurobi,11.0.0,2023.0,ok,optimal,2.581755520997831,224.328,132937.14369594064,,,2.205467939376831,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 19:45:33.192344,c4-standard-2,us-central1-a,305f3ff,FINE-district-optimization-14-8760ts,gurobi-11.0.0,FINE-district-optimization -FINE-district-optimization,14-8760ts,highs,1.6.0.dev0,2023.0,ok,optimal,11.892306724002992,364.592,132937.14369594064,,,11.748447895050049,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 19:49:44.692441,c4-standard-2,us-central1-a,305f3ff,FINE-district-optimization-14-8760ts,highs-1.6.0.dev0,FINE-district-optimization -FINE-district-optimization,14-8760ts,scip,8.1.0,2023.0,ok,optimal,31.97557374399912,489.516,132947.56354267383,,,31.844056,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 19:49:57.513170,c4-standard-2,us-central1-a,305f3ff,FINE-district-optimization-14-8760ts,scip-8.1.0,FINE-district-optimization -FINE-district-optimization,14-8760ts,cbc,2.10.11,2023.0,ok,optimal,15.770753949000207,187.76,132937.14369594,,,15.58,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 19:50:30.467542,c4-standard-2,us-central1-a,305f3ff,FINE-district-optimization-14-8760ts,cbc-2.10.11,FINE-district-optimization -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332,73-1h,gurobi,11.0.0,2023.0,ok,optimal,626.0841064319975,365.356,880819.4497931139,,,625.7836918830872,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 19:50:47.170648,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332,73-1h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,1484.992,,,,3600.0,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 20:01:14.113208,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332,73-1h,scip,8.1.0,2023.0,TO,Timeout,3600.0,1421.196,,,,3600.0,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 21:04:47.198991,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332,73-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,160.944,,,,3600.0,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 22:08:26.839944,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29,73-1h,gurobi,11.0.0,2023.0,ok,optimal,4.668889606000448,204.288,316796.6181523674,,,4.372952938079834,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 23:12:03.894540,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29,73-1h,highs,1.6.0.dev0,2023.0,ok,optimal,123.8990668519982,422.632,316796.61815236736,,,123.85945892333984,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 23:12:09.340724,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29,73-1h,scip,8.1.0,2023.0,ok,optimal,63.35990345299797,383.672,316796.61815106845,,,63.300836,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 23:14:14.004100,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29,73-1h,cbc,2.10.11,2023.0,ok,optimal,2089.0778588609974,187.428,316796.61815237,,,2089.02,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 23:15:18.160508,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29 -SWITCH-carbon-cap,3-6ts,gurobi,11.0.0,2023.0,ok,optimal,0.2836662080007954,167.096,139541670.1290208,,,0.0028631687164306,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 23:50:08.006038,c4-standard-2,us-central1-a,305f3ff,SWITCH-carbon-cap-3-6ts,gurobi-11.0.0,SWITCH-carbon-cap -SWITCH-carbon-cap,3-6ts,highs,1.6.0.dev0,2023.0,ok,optimal,0.0097643160006555,159.064,139541670.12902087,,,0.0028324127197265,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 23:50:09.055077,c4-standard-2,us-central1-a,305f3ff,SWITCH-carbon-cap-3-6ts,highs-1.6.0.dev0,SWITCH-carbon-cap -SWITCH-carbon-cap,3-6ts,scip,8.1.0,2023.0,ok,optimal,0.01612243999989,171.688,139541670.12902087,,,0.008164,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 23:50:09.823922,c4-standard-2,us-central1-a,305f3ff,SWITCH-carbon-cap-3-6ts,scip-8.1.0,SWITCH-carbon-cap -SWITCH-carbon-cap,3-6ts,cbc,2.10.11,2023.0,ok,optimal,0.0241221790020063,157.032,139541670.12902078,,,,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 23:50:10.601826,c4-standard-2,us-central1-a,305f3ff,SWITCH-carbon-cap-3-6ts,cbc-2.10.11,SWITCH-carbon-cap -FINE-district-optimization,14-8760ts,gurobi,12.0.0,2024.0,ok,optimal,2.3496010689996183,207.508,132937.14369594067,0.0,6.057195754904215e-05,2.0050570964813232,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 23:50:40.006083,c4-standard-2,us-central1-a,305f3ff,FINE-district-optimization-14-8760ts,gurobi-12.0.0,FINE-district-optimization -FINE-district-optimization,14-8760ts,highs,1.9.0,2024.0,ok,optimal,13.40098460399895,336.168,132937.14369594064,8.881784197001252e-16,0.0,13.23375415802002,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 23:54:23.415174,c4-standard-2,us-central1-a,305f3ff,FINE-district-optimization-14-8760ts,highs-1.9.0,FINE-district-optimization -FINE-district-optimization,14-8760ts,scip,9.2.0,2024.0,ok,optimal,30.016660941000737,472.824,132947.56354267383,2.1094237467877974e-15,7.838175579445825e-05,29.894517,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 23:54:37.557552,c4-standard-2,us-central1-a,305f3ff,FINE-district-optimization-14-8760ts,scip-9.2.0,FINE-district-optimization -FINE-district-optimization,14-8760ts,cbc,2.10.12,2024.0,ok,optimal,14.904547177000495,194.008,132937.14369594,0.0,,14.57,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 23:55:08.288974,c4-standard-2,us-central1-a,305f3ff,FINE-district-optimization-14-8760ts,cbc-2.10.12,FINE-district-optimization -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332,73-1h,gurobi,12.0.0,2024.0,ok,optimal,770.9342564990002,377.684,880819.4497931139,0.0,9.990037780361144e-05,770.8689830303192,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 23:55:23.864454,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332,73-1h,highs,1.9.0,2024.0,TO,Timeout,3600.0,1078.14,,,,3600.0,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-23 00:08:15.440991,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332,73-1h,scip,9.2.0,2024.0,TO,Timeout,3600.0,1397.084,,,,3600.0,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-23 01:11:48.996366,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332,73-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,143.776,,,,3600.0,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-23 02:15:42.045134,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29,73-1h,gurobi,12.0.0,2024.0,ok,optimal,8.51019417099451,193.74,316796.61815236736,0.0,0.0,8.216497898101807,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-23 03:19:33.837530,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29,73-1h,highs,1.9.0,2024.0,ok,optimal,100.6813178559969,362.968,316796.6181523674,2.4424906541753444e-15,9.671676484695506e-05,100.60772514343262,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-23 03:19:42.970942,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29,73-1h,scip,9.2.0,2024.0,ok,optimal,67.59667384799832,374.564,316796.61815106845,4.1317558491362585e-17,0.0,67.534366,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-23 03:21:24.264709,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29,73-1h,cbc,2.10.12,2024.0,ok,optimal,2201.651236159996,186.868,316796.61815237,0.0,,2201.52,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-23 03:22:32.520224,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29 -SWITCH-carbon-cap,3-6ts,gurobi,12.0.0,2024.0,ok,optimal,0.2465667430005851,151.132,139541670.1290208,,,0.0028400421142578,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-23 03:59:14.776662,c4-standard-2,us-central1-a,305f3ff,SWITCH-carbon-cap-3-6ts,gurobi-12.0.0,SWITCH-carbon-cap -SWITCH-carbon-cap,3-6ts,highs,1.9.0,2024.0,ok,optimal,0.0110424329977831,141.444,139541670.12902087,,,0.0030479431152343,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-23 03:59:15.574728,c4-standard-2,us-central1-a,305f3ff,SWITCH-carbon-cap-3-6ts,highs-1.9.0,SWITCH-carbon-cap -SWITCH-carbon-cap,3-6ts,scip,9.2.0,2024.0,ok,optimal,0.0164509949972853,155.484,139541670.12902087,,,0.0084029999999999,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-23 03:59:16.126676,c4-standard-2,us-central1-a,305f3ff,SWITCH-carbon-cap-3-6ts,scip-9.2.0,SWITCH-carbon-cap -SWITCH-carbon-cap,3-6ts,cbc,2.10.12,2024.0,ok,optimal,0.0302586480029276,141.716,139541670.12902078,,,,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-23 03:59:16.678921,c4-standard-2,us-central1-a,305f3ff,SWITCH-carbon-cap-3-6ts,cbc-2.10.12,SWITCH-carbon-cap -FINE-district-optimization,14-8760ts,gurobi,13.0.0,2025.0,ok,optimal,2.807473652996123,234.536,132937.14369594064,0.0,5.664160127511392e-05,2.452104091644287,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-23 03:59:48.361741,c4-standard-2,us-central1-a,305f3ff,FINE-district-optimization-14-8760ts,gurobi-13.0.0,FINE-district-optimization -FINE-district-optimization,14-8760ts,highs,1.12.0,2025.0,ok,optimal,24.993563003001327,401.9,132937.14369594064,0.0,0.0,24.85241150856018,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-23 04:03:45.010516,c4-standard-2,us-central1-a,305f3ff,FINE-district-optimization-14-8760ts,highs-1.12.0,FINE-district-optimization -FINE-district-optimization,14-8760ts,scip,10.0.0,2025.0,ok,optimal,31.74599000699527,501.116,132947.56354267383,2.1094237467877974e-15,7.838175579445825e-05,31.610309,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-23 04:04:10.945438,c4-standard-2,us-central1-a,305f3ff,FINE-district-optimization-14-8760ts,scip-10.0.0,FINE-district-optimization -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332,73-1h,gurobi,13.0.0,2025.0,ok,optimal,716.7911370379952,396.42,880819.4497931139,0.0,9.993490936650664e-05,716.7210171222687,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-23 04:04:43.667936,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332,73-1h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1180.824,,,,3600.0,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-23 04:16:41.336606,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332,73-1h,scip,10.0.0,2025.0,TO,Timeout,3600.0,1461.54,,,,3600.0,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-23 05:20:24.904716,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29,73-1h,gurobi,13.0.0,2025.0,ok,optimal,3.225680776995432,219.824,316796.6181523674,0.0,3.6747652959774774e-16,2.9421749114990234,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-23 06:23:48.775039,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29,73-1h,highs,1.12.0,2025.0,ok,optimal,104.1184391880015,479.56,316796.61815236736,1.9877776843889705e-14,8.996339594856038e-05,104.07609176635742,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-23 06:23:52.755903,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29,73-1h,scip,10.0.0,2025.0,ok,optimal,59.93540175299859,394.752,316796.61815106845,4.1317558491362585e-17,0.0,59.875909,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-23 06:25:37.624953,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29 -SWITCH-carbon-cap,3-6ts,gurobi,13.0.0,2025.0,ok,optimal,0.0097158320058952,174.98,139541670.1290208,,,0.0022289752960205,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-23 06:26:38.350390,c4-standard-2,us-central1-a,305f3ff,SWITCH-carbon-cap-3-6ts,gurobi-13.0.0,SWITCH-carbon-cap -SWITCH-carbon-cap,3-6ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,0.0999502359991311,163.62,139541670.13,,,0.0999502359991311,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-23 06:26:39.091542,c4-standard-2,us-central1-a,305f3ff,SWITCH-carbon-cap-3-6ts,highs-hipo-1.12.0-hipo,SWITCH-carbon-cap -SWITCH-carbon-cap,3-6ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,0.0215996020051534,164.216,139541670.16,,,0.0215996020051534,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-23 06:26:39.894324,c4-standard-2,us-central1-a,305f3ff,SWITCH-carbon-cap-3-6ts,highs-ipx-1.12.0-hipo,SWITCH-carbon-cap -SWITCH-carbon-cap,3-6ts,highs,1.12.0,2025.0,ok,optimal,0.0103691559997969,168.812,139541670.1290208,,,0.0029704570770263,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-23 06:26:40.602252,c4-standard-2,us-central1-a,305f3ff,SWITCH-carbon-cap-3-6ts,highs-1.12.0,SWITCH-carbon-cap -SWITCH-carbon-cap,3-6ts,scip,10.0.0,2025.0,ok,optimal,0.0151734980026958,181.7,139541670.12902087,,,0.007186,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-23 06:26:41.319470,c4-standard-2,us-central1-a,305f3ff,SWITCH-carbon-cap-3-6ts,scip-10.0.0,SWITCH-carbon-cap -ethos-fine-energyland-full-timeseries,1-8760ts,glpk,5.0,2020.0,warning,unknown,0.1832155379999562,409.708,,,,,3600.0,benchmark-instance-leftovers-01,20251222-leftovers,2025-12-22 15:01:51.439354,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-full-timeseries-1-8760ts,glpk-5.0,ethos-fine-energyland-full-timeseries -ethos-fine-energyland-full-timeseries,1-8760ts,gurobi,10.0.0,2022.0,TO,Timeout,3600.0,625.992,,,,3600.0,3600.0,benchmark-instance-leftovers-01,20251222-leftovers,2025-12-22 15:06:06.787914,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-full-timeseries-1-8760ts,gurobi-10.0.0,ethos-fine-energyland-full-timeseries -ethos-fine-energyland-full-timeseries,1-8760ts,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1082.236,,,,3600.0,3600.0,benchmark-instance-leftovers-01,20251222-leftovers,2025-12-22 16:09:39.868529,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-full-timeseries-1-8760ts,highs-1.5.0.dev0,ethos-fine-energyland-full-timeseries -ethos-fine-energyland-full-timeseries,1-8760ts,scip,8.0.3,2022.0,TO,Timeout,3600.0,3519.788,,,,3600.0,3600.0,benchmark-instance-leftovers-01,20251222-leftovers,2025-12-22 17:13:12.185975,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-full-timeseries-1-8760ts,scip-8.0.3,ethos-fine-energyland-full-timeseries -ethos-fine-energyland-full-timeseries,1-8760ts,gurobi,11.0.0,2023.0,TO,Timeout,3600.0,637.14,,,,3600.0,3600.0,benchmark-instance-leftovers-01,20251222-leftovers,2025-12-22 18:20:03.766053,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-full-timeseries-1-8760ts,gurobi-11.0.0,ethos-fine-energyland-full-timeseries -ethos-fine-energyland-full-timeseries,1-8760ts,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,1042.472,,,,3600.0,3600.0,benchmark-instance-leftovers-01,20251222-leftovers,2025-12-22 19:23:37.057728,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-full-timeseries-1-8760ts,highs-1.6.0.dev0,ethos-fine-energyland-full-timeseries -ethos-fine-energyland-full-timeseries,1-8760ts,scip,8.1.0,2023.0,TO,Timeout,3600.0,3537.808,,,,3600.0,3600.0,benchmark-instance-leftovers-01,20251222-leftovers,2025-12-22 20:27:10.911544,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-full-timeseries-1-8760ts,scip-8.1.0,ethos-fine-energyland-full-timeseries -ethos-fine-energyland-full-timeseries,1-8760ts,cbc,2.10.11,2023.0,ok,optimal,2430.004431005,672.536,419125.8088459,,,,3600.0,benchmark-instance-leftovers-01,20251222-leftovers,2025-12-22 21:30:44.914955,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-full-timeseries-1-8760ts,cbc-2.10.11,ethos-fine-energyland-full-timeseries -ethos-fine-energyland-full-timeseries,1-8760ts,gurobi,12.0.0,2024.0,TO,Timeout,3600.0,638.4,,,,3600.0,3600.0,benchmark-instance-leftovers-01,20251222-leftovers,2025-12-22 22:11:45.851037,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-full-timeseries-1-8760ts,gurobi-12.0.0,ethos-fine-energyland-full-timeseries -ethos-fine-energyland-full-timeseries,1-8760ts,highs,1.9.0,2024.0,TO,Timeout,3600.0,1024.48,,,,3600.0,3600.0,benchmark-instance-leftovers-01,20251222-leftovers,2025-12-22 23:15:18.142749,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-full-timeseries-1-8760ts,highs-1.9.0,ethos-fine-energyland-full-timeseries -ethos-fine-energyland-full-timeseries,1-8760ts,scip,9.2.0,2024.0,TO,Timeout,3600.0,3518.06,,,,3600.0,3600.0,benchmark-instance-leftovers-01,20251222-leftovers,2025-12-23 00:18:50.482422,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-full-timeseries-1-8760ts,scip-9.2.0,ethos-fine-energyland-full-timeseries -ethos-fine-energyland-full-timeseries,1-8760ts,cbc,2.10.12,2024.0,ok,optimal,2473.122507863998,674.956,419125.8088459,,,,3600.0,benchmark-instance-leftovers-01,20251222-leftovers,2025-12-23 01:22:24.230287,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-full-timeseries-1-8760ts,cbc-2.10.12,ethos-fine-energyland-full-timeseries -ethos-fine-energyland-full-timeseries,1-8760ts,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,666.62,,,,3600.0,3600.0,benchmark-instance-leftovers-01,20251222-leftovers,2025-12-23 02:04:12.520064,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-full-timeseries-1-8760ts,gurobi-13.0.0,ethos-fine-energyland-full-timeseries -ethos-fine-energyland-full-timeseries,1-8760ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,1847.01850138,1414.248,419125.80902,,,1847.01850138,3600.0,benchmark-instance-leftovers-01,20251222-leftovers,2025-12-23 03:07:50.071152,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-full-timeseries-1-8760ts,highs-hipo-1.12.0-hipo,ethos-fine-energyland-full-timeseries -ethos-fine-energyland-full-timeseries,1-8760ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,1646.1628530519956,751.712,419125.80898,,,1646.1628530519956,3600.0,benchmark-instance-leftovers-01,20251222-leftovers,2025-12-23 03:38:37.852631,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-full-timeseries-1-8760ts,highs-ipx-1.12.0-hipo,ethos-fine-energyland-full-timeseries -ethos-fine-energyland-full-timeseries,1-8760ts,highs,1.12.0,2025.0,TO,Timeout,3600.0,1083.616,,,,3600.0,3600.0,benchmark-instance-leftovers-01,20251222-leftovers,2025-12-23 04:09:40.798214,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-full-timeseries-1-8760ts,highs-1.12.0,ethos-fine-energyland-full-timeseries -ethos-fine-energyland-full-timeseries,1-8760ts,scip,10.0.0,2025.0,TO,Timeout,3600.0,3492.412,,,,3600.0,3600.0,benchmark-instance-leftovers-01,20251222-leftovers,2025-12-23 05:13:14.720901,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-full-timeseries-1-8760ts,scip-10.0.0,ethos-fine-energyland-full-timeseries -ethos-fine-multi-regional-7tp-12seg,8-84ts,glpk,5.0,2020.0,warning,unknown,0.0111664899999937,138.892,,,,,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 15:02:07.728042,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-12seg-8-84ts,glpk-5.0,ethos-fine-multi-regional-7tp-12seg -FINE-1-node-energy-system-workflow,1-8760ts,glpk,5.0,2020.0,ok,optimal,0.8011371610000424,131.972,17.82077055,,,,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 15:05:34.065766,c4-standard-2,us-central1-a,305f3ff,FINE-1-node-energy-system-workflow-1-8760ts,glpk-5.0,FINE-1-node-energy-system-workflow -FINE-hydrogen-partload,1-168ts,glpk,5.0,2020.0,ok,optimal,0.2350406560000237,127.208,11444.372743,,,,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 15:05:35.325012,c4-standard-2,us-central1-a,305f3ff,FINE-hydrogen-partload-1-168ts,glpk-5.0,FINE-hydrogen-partload -ethos-fine-multi-regional-7tp-12seg,8-84ts,gurobi,10.0.0,2022.0,ok,optimal,349.96282271100006,342.464,53.25010145765235,,,349.4593849182129,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 15:06:11.553367,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-12seg-8-84ts,gurobi-10.0.0,ethos-fine-multi-regional-7tp-12seg -ethos-fine-multi-regional-7tp-12seg,8-84ts,highs,1.5.0.dev0,2022.0,ok,optimal,1580.8615006920002,626.34,53.25268126515963,,,1580.52761387825,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 15:15:31.990884,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-12seg-8-84ts,highs-1.5.0.dev0,ethos-fine-multi-regional-7tp-12seg -ethos-fine-multi-regional-7tp-12seg,8-84ts,scip,8.0.3,2022.0,TO,Timeout,3600.0,538.908,,,,3600.0,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 15:41:53.801788,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-12seg-8-84ts,scip-8.0.3,ethos-fine-multi-regional-7tp-12seg -FINE-1-node-energy-system-workflow,1-8760ts,gurobi,10.0.0,2022.0,ok,optimal,0.7736353000000236,176.724,7.820769964790924,,,0.425955057144165,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 16:45:22.120183,c4-standard-2,us-central1-a,305f3ff,FINE-1-node-energy-system-workflow-1-8760ts,gurobi-10.0.0,FINE-1-node-energy-system-workflow -FINE-1-node-energy-system-workflow,1-8760ts,highs,1.5.0.dev0,2022.0,ok,optimal,0.4606855020001603,170.424,7.820769901602278,,,0.4124083518981933,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 16:45:23.533065,c4-standard-2,us-central1-a,305f3ff,FINE-1-node-energy-system-workflow-1-8760ts,highs-1.5.0.dev0,FINE-1-node-energy-system-workflow -FINE-1-node-energy-system-workflow,1-8760ts,scip,8.0.3,2022.0,ok,optimal,1.4936424689994965,213.212,7.820770244687351,,,1.45181,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 16:45:24.626610,c4-standard-2,us-central1-a,305f3ff,FINE-1-node-energy-system-workflow-1-8760ts,scip-8.0.3,FINE-1-node-energy-system-workflow -FINE-hydrogen-partload,1-168ts,gurobi,10.0.0,2022.0,ok,optimal,0.1478468329996758,164.972,1444.3727050827322,,,0.1291768550872802,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 16:45:26.772474,c4-standard-2,us-central1-a,305f3ff,FINE-hydrogen-partload-1-168ts,gurobi-10.0.0,FINE-hydrogen-partload -FINE-hydrogen-partload,1-168ts,highs,1.5.0.dev0,2022.0,ok,optimal,1.301661437999428,179.368,1444.3835977501997,,,1.2796626091003418,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 16:45:27.515736,c4-standard-2,us-central1-a,305f3ff,FINE-hydrogen-partload-1-168ts,highs-1.5.0.dev0,FINE-hydrogen-partload -FINE-hydrogen-partload,1-168ts,scip,8.0.3,2022.0,ok,optimal,0.4365384849998008,200.94,1444.3846830744046,,,0.413489,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 16:45:29.428658,c4-standard-2,us-central1-a,305f3ff,FINE-hydrogen-partload-1-168ts,scip-8.0.3,FINE-hydrogen-partload -ethos-fine-multi-regional-7tp-12seg,8-84ts,gurobi,11.0.0,2023.0,ok,optimal,411.7170464880001,339.816,53.25010303109077,,,411.3402619361877,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 16:48:42.904506,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-12seg-8-84ts,gurobi-11.0.0,ethos-fine-multi-regional-7tp-12seg -ethos-fine-multi-regional-7tp-12seg,8-84ts,highs,1.6.0.dev0,2023.0,ok,optimal,1498.1798099460011,660.984,53.25268126515963,,,1497.9683039188385,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 16:59:01.818472,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-12seg-8-84ts,highs-1.6.0.dev0,ethos-fine-multi-regional-7tp-12seg -ethos-fine-multi-regional-7tp-12seg,8-84ts,scip,8.1.0,2023.0,TO,Timeout,3600.0,552.372,,,,3600.0,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 17:24:00.868021,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-12seg-8-84ts,scip-8.1.0,ethos-fine-multi-regional-7tp-12seg -ethos-fine-multi-regional-7tp-12seg,8-84ts,cbc,2.10.11,2023.0,TO,Timeout,3600.0,170.448,,,,3600.0,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 18:27:27.014081,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-12seg-8-84ts,cbc-2.10.11,ethos-fine-multi-regional-7tp-12seg -FINE-1-node-energy-system-workflow,1-8760ts,gurobi,11.0.0,2023.0,ok,optimal,0.7375672599991958,181.968,7.820769964790924,,,0.4514951705932617,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 19:30:53.931080,c4-standard-2,us-central1-a,305f3ff,FINE-1-node-energy-system-workflow-1-8760ts,gurobi-11.0.0,FINE-1-node-energy-system-workflow -FINE-1-node-energy-system-workflow,1-8760ts,highs,1.6.0.dev0,2023.0,ok,optimal,0.4511322950020258,179.412,7.820769901602278,,,0.4102227687835693,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 19:30:55.406140,c4-standard-2,us-central1-a,305f3ff,FINE-1-node-energy-system-workflow-1-8760ts,highs-1.6.0.dev0,FINE-1-node-energy-system-workflow -FINE-1-node-energy-system-workflow,1-8760ts,scip,8.1.0,2023.0,ok,optimal,1.4903787479997843,222.384,7.820770244687351,,,1.448744,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 19:30:56.581779,c4-standard-2,us-central1-a,305f3ff,FINE-1-node-energy-system-workflow-1-8760ts,scip-8.1.0,FINE-1-node-energy-system-workflow -FINE-1-node-energy-system-workflow,1-8760ts,cbc,2.10.11,2023.0,ok,optimal,0.8849771759996656,164.244,7.82077444,,,,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 19:30:58.828182,c4-standard-2,us-central1-a,305f3ff,FINE-1-node-energy-system-workflow-1-8760ts,cbc-2.10.11,FINE-1-node-energy-system-workflow -FINE-hydrogen-partload,1-168ts,gurobi,11.0.0,2023.0,ok,optimal,0.1340589680003177,172.956,1444.3846882976527,,,0.119762897491455,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 19:31:00.456038,c4-standard-2,us-central1-a,305f3ff,FINE-hydrogen-partload-1-168ts,gurobi-11.0.0,FINE-hydrogen-partload -FINE-hydrogen-partload,1-168ts,highs,1.6.0.dev0,2023.0,ok,optimal,1.2482092989994271,190.296,1444.3835977501997,,,1.2299814224243164,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 19:31:01.307035,c4-standard-2,us-central1-a,305f3ff,FINE-hydrogen-partload-1-168ts,highs-1.6.0.dev0,FINE-hydrogen-partload -FINE-hydrogen-partload,1-168ts,scip,8.1.0,2023.0,ok,optimal,0.4539345699995465,210.112,1444.3846830744046,,,0.4305609999999999,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 19:31:03.292142,c4-standard-2,us-central1-a,305f3ff,FINE-hydrogen-partload-1-168ts,scip-8.1.0,FINE-hydrogen-partload -FINE-hydrogen-partload,1-168ts,cbc,2.10.11,2023.0,ok,optimal,0.467886565002118,160.212,1444.37270174,,,0.43,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 19:31:04.481512,c4-standard-2,us-central1-a,305f3ff,FINE-hydrogen-partload-1-168ts,cbc-2.10.11,FINE-hydrogen-partload -ethos-fine-multi-regional-7tp-12seg,8-84ts,gurobi,12.0.0,2024.0,ok,optimal,371.059377444999,340.872,53.25009798158863,0.0,0.0,370.64214301109314,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 19:31:33.655963,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-12seg-8-84ts,gurobi-12.0.0,ethos-fine-multi-regional-7tp-12seg -ethos-fine-multi-regional-7tp-12seg,8-84ts,highs,1.9.0,2024.0,ok,optimal,1287.6745844949985,518.244,53.25009720219299,1.5543122344752194e-15,8.657178161620958e-05,1287.3030564785004,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 19:41:18.481182,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-12seg-8-84ts,highs-1.9.0,ethos-fine-multi-regional-7tp-12seg -ethos-fine-multi-regional-7tp-12seg,8-84ts,scip,9.2.0,2024.0,TO,Timeout,3600.0,531.732,,,,3600.0,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 20:02:47.060908,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-12seg-8-84ts,scip-9.2.0,ethos-fine-multi-regional-7tp-12seg -ethos-fine-multi-regional-7tp-12seg,8-84ts,cbc,2.10.12,2024.0,TO,Timeout,3600.0,153.18,,,,3600.0,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 21:06:14.933357,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-12seg-8-84ts,cbc-2.10.12,ethos-fine-multi-regional-7tp-12seg -FINE-1-node-energy-system-workflow,1-8760ts,gurobi,12.0.0,2024.0,ok,optimal,0.9079922669989172,166.072,7.820769869206643,,,0.5595879554748535,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 22:09:51.357397,c4-standard-2,us-central1-a,305f3ff,FINE-1-node-energy-system-workflow-1-8760ts,gurobi-12.0.0,FINE-1-node-energy-system-workflow -FINE-1-node-energy-system-workflow,1-8760ts,highs,1.9.0,2024.0,ok,optimal,0.5205113929987419,163.98,7.820769899216402,,,0.4691355228424072,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 22:09:52.830798,c4-standard-2,us-central1-a,305f3ff,FINE-1-node-energy-system-workflow-1-8760ts,highs-1.9.0,FINE-1-node-energy-system-workflow -FINE-1-node-energy-system-workflow,1-8760ts,scip,9.2.0,2024.0,ok,optimal,1.498238414998923,206.176,7.820770244687351,,,1.454192,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 22:09:53.900398,c4-standard-2,us-central1-a,305f3ff,FINE-1-node-energy-system-workflow-1-8760ts,scip-9.2.0,FINE-1-node-energy-system-workflow -FINE-1-node-energy-system-workflow,1-8760ts,cbc,2.10.12,2024.0,ok,optimal,0.9225683129989192,156.836,7.82077444,,,,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 22:09:55.966797,c4-standard-2,us-central1-a,305f3ff,FINE-1-node-energy-system-workflow-1-8760ts,cbc-2.10.12,FINE-1-node-energy-system-workflow -FINE-hydrogen-partload,1-168ts,gurobi,12.0.0,2024.0,ok,optimal,0.1503344949996972,158.184,1444.3846882976527,0.0,8.296517554498387e-06,0.1338741779327392,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 22:09:57.436276,c4-standard-2,us-central1-a,305f3ff,FINE-hydrogen-partload-1-168ts,gurobi-12.0.0,FINE-hydrogen-partload -FINE-hydrogen-partload,1-168ts,highs,1.9.0,2024.0,ok,optimal,1.4085346110005048,169.928,1444.3801161051751,0.0,0.0,1.3870353698730469,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 22:09:58.100395,c4-standard-2,us-central1-a,305f3ff,FINE-hydrogen-partload-1-168ts,highs-1.9.0,FINE-hydrogen-partload -FINE-hydrogen-partload,1-168ts,scip,9.2.0,2024.0,ok,optimal,0.4405076990005909,195.252,1444.3846830744046,0.0,8.295179601998324e-06,0.4167119999999999,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 22:10:00.028122,c4-standard-2,us-central1-a,305f3ff,FINE-hydrogen-partload-1-168ts,scip-9.2.0,FINE-hydrogen-partload -FINE-hydrogen-partload,1-168ts,cbc,2.10.12,2024.0,ok,optimal,0.4843141069977719,149.4,1444.37270174,0.0,,0.43,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 22:10:00.999477,c4-standard-2,us-central1-a,305f3ff,FINE-hydrogen-partload-1-168ts,cbc-2.10.12,FINE-hydrogen-partload -ethos-fine-multi-regional-7tp-12seg,8-84ts,gurobi,13.0.0,2025.0,ok,optimal,373.3001761429987,346.52,53.25010246772827,0.0,9.37099286142332e-05,372.87707781791687,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 22:10:31.228242,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-12seg-8-84ts,gurobi-13.0.0,ethos-fine-multi-regional-7tp-12seg -ethos-fine-multi-regional-7tp-12seg,8-84ts,highs,1.12.0,2025.0,ok,optimal,1214.569450228999,653.132,53.25009719363893,3.3306690738754696e-16,9.837132455104795e-05,1214.3251922130585,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 22:20:22.267367,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-12seg-8-84ts,highs-1.12.0,ethos-fine-multi-regional-7tp-12seg -ethos-fine-multi-regional-7tp-12seg,8-84ts,scip,10.0.0,2025.0,TO,Timeout,3600.0,564.62,,,,3600.0,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 22:40:38.101090,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-12seg-8-84ts,scip-10.0.0,ethos-fine-multi-regional-7tp-12seg -FINE-1-node-energy-system-workflow,1-8760ts,gurobi,13.0.0,2025.0,ok,optimal,0.8861302160003106,195.472,7.820769869206643,,,0.5633101463317871,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 23:44:17.701333,c4-standard-2,us-central1-a,305f3ff,FINE-1-node-energy-system-workflow-1-8760ts,gurobi-13.0.0,FINE-1-node-energy-system-workflow -FINE-1-node-energy-system-workflow,1-8760ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,1.0613190760013822,163.112,7.8207697488,,,1.0613190760013822,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 23:44:19.393941,c4-standard-2,us-central1-a,305f3ff,FINE-1-node-energy-system-workflow-1-8760ts,highs-hipo-1.12.0-hipo,FINE-1-node-energy-system-workflow -FINE-1-node-energy-system-workflow,1-8760ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,0.4615486939983384,163.516,7.8207697488,,,0.4615486939983384,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 23:44:21.228014,c4-standard-2,us-central1-a,305f3ff,FINE-1-node-energy-system-workflow-1-8760ts,highs-ipx-1.12.0-hipo,FINE-1-node-energy-system-workflow -FINE-1-node-energy-system-workflow,1-8760ts,highs,1.12.0,2025.0,ok,optimal,0.5382357509988651,189.984,7.820769899216402,,,0.4952831268310547,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 23:44:22.447932,c4-standard-2,us-central1-a,305f3ff,FINE-1-node-energy-system-workflow-1-8760ts,highs-1.12.0,FINE-1-node-energy-system-workflow -FINE-1-node-energy-system-workflow,1-8760ts,scip,10.0.0,2025.0,ok,optimal,1.54766951000056,231.916,7.820770244687351,,,1.50164,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 23:44:23.773760,c4-standard-2,us-central1-a,305f3ff,FINE-1-node-energy-system-workflow-1-8760ts,scip-10.0.0,FINE-1-node-energy-system-workflow -FINE-hydrogen-partload,1-168ts,gurobi,13.0.0,2025.0,ok,optimal,0.1366013170008955,184.464,1444.3846882976527,0.0,8.296517554498387e-06,0.1198689937591552,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 23:44:26.122842,c4-standard-2,us-central1-a,305f3ff,FINE-hydrogen-partload-1-168ts,gurobi-13.0.0,FINE-hydrogen-partload -FINE-hydrogen-partload,1-168ts,highs,1.12.0,2025.0,ok,optimal,1.8336192030001257,200.78,1444.3782847313232,2.220446049250313e-16,0.0,1.8143208026885984,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 23:44:27.037878,c4-standard-2,us-central1-a,305f3ff,FINE-hydrogen-partload-1-168ts,highs-1.12.0,FINE-hydrogen-partload -FINE-hydrogen-partload,1-168ts,scip,10.0.0,2025.0,ok,optimal,0.4527905210015888,221.652,1444.3846830744046,0.0,8.295179601998324e-06,0.4267439999999999,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 23:44:29.630709,c4-standard-2,us-central1-a,305f3ff,FINE-hydrogen-partload-1-168ts,scip-10.0.0,FINE-hydrogen-partload -pypsa-power+ely-ucgas,1-1h,glpk,5.0,2020.0,ok,optimal,136.61381072299997,251.6,84667526620.0,,,,3600.0,benchmark-instance-leftovers-03,20251222-leftovers,2025-12-22 15:02:00.514381,c4-standard-2,us-central1-a,305f3ff,pypsa-power+ely-ucgas-1-1h,glpk-5.0,pypsa-power+ely-ucgas -pypsa-power+ely-ucgas,1-1h,gurobi,10.0.0,2022.0,ok,optimal,17.658088105999923,424.292,84667526618.30763,,,16.801554918289185,3600.0,benchmark-instance-leftovers-03,20251222-leftovers,2025-12-22 15:08:42.146215,c4-standard-2,us-central1-a,305f3ff,pypsa-power+ely-ucgas-1-1h,gurobi-10.0.0,pypsa-power+ely-ucgas -pypsa-power+ely-ucgas,1-1h,highs,1.5.0.dev0,2022.0,ok,optimal,58.54836125500003,477.764,84667526618.3079,,,57.67913222312927,3600.0,benchmark-instance-leftovers-03,20251222-leftovers,2025-12-22 15:12:48.133115,c4-standard-2,us-central1-a,305f3ff,pypsa-power+ely-ucgas-1-1h,highs-1.5.0.dev0,pypsa-power+ely-ucgas -pypsa-power+ely-ucgas,1-1h,scip,8.0.3,2022.0,ok,optimal,59.30207876800012,894.908,84667526618.30788,,,58.383772,3600.0,benchmark-instance-leftovers-03,20251222-leftovers,2025-12-22 15:13:48.104588,c4-standard-2,us-central1-a,305f3ff,pypsa-power+ely-ucgas-1-1h,scip-8.0.3,pypsa-power+ely-ucgas -pypsa-power+ely-ucgas,1-1h,gurobi,11.0.0,2023.0,ok,optimal,18.137868182000147,430.672,84667526618.30762,,,17.385411977767944,3600.0,benchmark-instance-leftovers-03,20251222-leftovers,2025-12-22 15:18:16.700168,c4-standard-2,us-central1-a,305f3ff,pypsa-power+ely-ucgas-1-1h,gurobi-11.0.0,pypsa-power+ely-ucgas -pypsa-power+ely-ucgas,1-1h,highs,1.6.0.dev0,2023.0,ok,optimal,57.53939345699996,435.028,84667526618.3079,,,56.8264582157135,3600.0,benchmark-instance-leftovers-03,20251222-leftovers,2025-12-22 15:22:21.643501,c4-standard-2,us-central1-a,305f3ff,pypsa-power+ely-ucgas-1-1h,highs-1.6.0.dev0,pypsa-power+ely-ucgas -pypsa-power+ely-ucgas,1-1h,scip,8.1.0,2023.0,ok,optimal,58.567770324999856,899.436,84667526618.30788,,,57.802846,3600.0,benchmark-instance-leftovers-03,20251222-leftovers,2025-12-22 15:23:20.548733,c4-standard-2,us-central1-a,305f3ff,pypsa-power+ely-ucgas-1-1h,scip-8.1.0,pypsa-power+ely-ucgas -pypsa-power+ely-ucgas,1-1h,cbc,2.10.11,2023.0,ok,optimal,55.32660233299998,407.108,84667526618.3104,,,54.62,3600.0,benchmark-instance-leftovers-03,20251222-leftovers,2025-12-22 15:24:20.677691,c4-standard-2,us-central1-a,305f3ff,pypsa-power+ely-ucgas-1-1h,cbc-2.10.11,pypsa-power+ely-ucgas -pypsa-power+ely-ucgas,1-1h,gurobi,12.0.0,2024.0,ok,optimal,17.041209169000012,415.608,84667526618.30765,0.0,0.0,16.277580976486206,3600.0,benchmark-instance-leftovers-03,20251222-leftovers,2025-12-22 15:25:46.096685,c4-standard-2,us-central1-a,305f3ff,pypsa-power+ely-ucgas-1-1h,gurobi-12.0.0,pypsa-power+ely-ucgas -pypsa-power+ely-ucgas,1-1h,highs,1.9.0,2024.0,ok,optimal,58.622400879,490.932,84667526618.3079,0.0,0.0,57.71735835075378,3600.0,benchmark-instance-leftovers-03,20251222-leftovers,2025-12-22 15:29:50.452641,c4-standard-2,us-central1-a,305f3ff,pypsa-power+ely-ucgas-1-1h,highs-1.9.0,pypsa-power+ely-ucgas -pypsa-power+ely-ucgas,1-1h,scip,9.2.0,2024.0,ok,optimal,58.97081865200016,885.428,84667526618.30788,0.0,0.0,58.208427,3600.0,benchmark-instance-leftovers-03,20251222-leftovers,2025-12-22 15:30:50.551683,c4-standard-2,us-central1-a,305f3ff,pypsa-power+ely-ucgas-1-1h,scip-9.2.0,pypsa-power+ely-ucgas -pypsa-power+ely-ucgas,1-1h,cbc,2.10.12,2024.0,ok,optimal,56.44511963600007,406.316,84667526618.3104,0.0,,54.87,3600.0,benchmark-instance-leftovers-03,20251222-leftovers,2025-12-22 15:31:51.131999,c4-standard-2,us-central1-a,305f3ff,pypsa-power+ely-ucgas-1-1h,cbc-2.10.12,pypsa-power+ely-ucgas -pypsa-power+ely-ucgas,1-1h,gurobi,13.0.0,2025.0,ok,optimal,16.990900229999625,446.276,84667526618.30762,0.0,0.0,16.269125938415527,3600.0,benchmark-instance-leftovers-03,20251222-leftovers,2025-12-22 15:33:17.418483,c4-standard-2,us-central1-a,305f3ff,pypsa-power+ely-ucgas-1-1h,gurobi-13.0.0,pypsa-power+ely-ucgas -pypsa-power+ely-ucgas,1-1h,highs,1.12.0,2025.0,ok,optimal,67.11014031100012,410.8,84667526618.30788,0.0,0.0,66.35568046569824,3600.0,benchmark-instance-leftovers-03,20251222-leftovers,2025-12-22 15:37:24.364917,c4-standard-2,us-central1-a,305f3ff,pypsa-power+ely-ucgas-1-1h,highs-1.12.0,pypsa-power+ely-ucgas -pypsa-power+ely-ucgas,1-1h,scip,10.0.0,2025.0,ok,optimal,59.252943469,908.52,84667526618.30788,0.0,0.0,58.457557,3600.0,benchmark-instance-leftovers-03,20251222-leftovers,2025-12-22 15:38:33.130123,c4-standard-2,us-central1-a,305f3ff,pypsa-power+ely-ucgas-1-1h,scip-10.0.0,pypsa-power+ely-ucgas -pypsa-de-elec-trex_copt,10-3h,glpk,5.0,2020.0,TO,Timeout,3600.0,415.208,,,,3600.0,3600.0,benchmark-instance-new-pypsa-26,20251227-new-pypsa,2025-12-27 07:45:05.410904,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-10-3h,glpk-5.0,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,10-3h,gurobi,10.0.0,2022.0,ok,optimal,1578.3349137639998,2113.288,7543499216.323404,,,1570.544261932373,3600.0,benchmark-instance-new-pypsa-26,20251227-new-pypsa,2025-12-27 08:49:27.714187,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-10-3h,gurobi-10.0.0,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,10-3h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1711.748,,,,3600.0,3600.0,benchmark-instance-new-pypsa-26,20251227-new-pypsa,2025-12-27 09:19:36.828055,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-10-3h,highs-1.5.0.dev0,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,10-3h,scip,8.0.3,2022.0,TO,Timeout,3600.0,5839.256,,,,3600.0,3600.0,benchmark-instance-new-pypsa-26,20251227-new-pypsa,2025-12-27 10:23:19.234689,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-10-3h,scip-8.0.3,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,10-3h,gurobi,11.0.0,2023.0,ok,optimal,650.531504984001,2038.78,7543499216.323317,,,644.1766800880432,3600.0,benchmark-instance-new-pypsa-26,20251227-new-pypsa,2025-12-27 11:30:21.088269,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-10-3h,gurobi-11.0.0,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,10-3h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,1513.292,,,,3600.0,3600.0,benchmark-instance-new-pypsa-26,20251227-new-pypsa,2025-12-27 11:44:51.628914,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-10-3h,highs-1.6.0.dev0,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,10-3h,scip,8.1.0,2023.0,TO,Timeout,3600.0,5860.856,,,,3600.0,3600.0,benchmark-instance-new-pypsa-26,20251227-new-pypsa,2025-12-27 12:48:38.484906,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-10-3h,scip-8.1.0,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,10-3h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,446.16,,,,3600.0,3600.0,benchmark-instance-new-pypsa-26,20251227-new-pypsa,2025-12-27 13:52:24.839236,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-10-3h,cbc-2.10.11,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,10-3h,gurobi,12.0.0,2024.0,ok,optimal,1079.8776452460006,2033.6,7543499216.323313,,,1073.4799959659576,3600.0,benchmark-instance-new-pypsa-26,20251227-new-pypsa,2025-12-27 14:56:49.316422,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-10-3h,gurobi-12.0.0,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,10-3h,highs,1.9.0,2024.0,TO,Timeout,3600.0,1621.956,,,,3600.0,3600.0,benchmark-instance-new-pypsa-26,20251227-new-pypsa,2025-12-27 15:18:39.605867,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-10-3h,highs-1.9.0,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,10-3h,scip,9.2.0,2024.0,TO,Timeout,3600.0,5853.12,,,,3600.0,3600.0,benchmark-instance-new-pypsa-26,20251227-new-pypsa,2025-12-27 16:22:18.455200,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-10-3h,scip-9.2.0,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,10-3h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,428.8,,,,3600.0,3600.0,benchmark-instance-new-pypsa-26,20251227-new-pypsa,2025-12-27 17:25:57.149765,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-10-3h,cbc-2.10.12,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,10-3h,gurobi,13.0.0,2025.0,ok,optimal,1468.0149078190009,2055.46,7543499216.323244,,,1461.6444618701937,3600.0,benchmark-instance-new-pypsa-26,20251227-new-pypsa,2025-12-27 18:30:07.032844,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-10-3h,gurobi-13.0.0,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,10-3h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,548.6443839560015,1954.608,7543499216.3,,,548.6443839560015,3600.0,benchmark-instance-new-pypsa-26,20251227-new-pypsa,2025-12-27 18:58:22.250640,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-10-3h,highs-hipo-1.12.0-hipo,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,10-3h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,3600.0,163.496,,,,3600.0,3600.0,benchmark-instance-new-pypsa-26,20251227-new-pypsa,2025-12-27 19:07:31.640586,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-10-3h,highs-ipx-1.12.0-hipo,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,10-3h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1514.696,,,,3600.0,3600.0,benchmark-instance-new-pypsa-26,20251227-new-pypsa,2025-12-27 20:11:13.412395,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-10-3h,highs-1.12.0,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,10-3h,scip,10.0.0,2025.0,TO,Timeout,3600.0,5861.332,,,,3600.0,3600.0,benchmark-instance-new-pypsa-26,20251227-new-pypsa,2025-12-27 21:14:58.984216,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-10-3h,scip-10.0.0,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,50-3h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,1356.276,,,,86400.0,86400.0,benchmark-instance-new-pypsa-11,20251227-new-pypsa,2025-12-27 07:45:26.906360,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-50-3h,cbc-2.10.12,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,50-3h,gurobi,13.0.0,2025.0,ok,optimal,675.9127318770043,10640.628,7431209630.045691,,,650.7675561904907,86400.0,benchmark-instance-new-pypsa-11,20251227-new-pypsa,2025-12-28 07:49:24.946145,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-50-3h,gurobi-13.0.0,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,50-3h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,13170.412436850997,9264.268,7431209630.0,,,13170.412436850997,86400.0,benchmark-instance-new-pypsa-11,20251227-new-pypsa,2025-12-28 08:04:32.923451,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-50-3h,highs-hipo-1.12.0-hipo,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,50-3h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,86400.0,164.156,,,,86400.0,86400.0,benchmark-instance-new-pypsa-11,20251227-new-pypsa,2025-12-28 11:47:32.378779,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-50-3h,highs-ipx-1.12.0-hipo,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,50-3h,highs,1.12.0,2025.0,TO,Timeout,86400.0,5162.816,,,,86400.0,86400.0,benchmark-instance-new-pypsa-11,20251227-new-pypsa,2025-12-29 11:51:01.703890,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-50-3h,highs-1.12.0,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,50-3h,scip,10.0.0,2025.0,TO,Timeout,86400.0,23850.44,,,,86400.0,86400.0,benchmark-instance-new-pypsa-11,20251227-new-pypsa,2025-12-30 11:54:37.677267,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-50-3h,scip-10.0.0,pypsa-de-elec-trex_copt -pypsa-eur-elec,100-3h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,2974.948,,,,86400.0,86400.0,benchmark-instance-new-pypsa-00,20251227-new-pypsa,2025-12-27 07:45:21.662494,c4-highmem-16,us-central1-a,305f3ff,pypsa-eur-elec-100-3h,cbc-2.10.12,pypsa-eur-elec -pypsa-eur-elec,100-3h,gurobi,13.0.0,2025.0,ok,optimal,3154.032548642994,18764.776,34963383640.95888,,,3094.800269842148,86400.0,benchmark-instance-new-pypsa-00,20251227-new-pypsa,2025-12-28 07:49:30.972083,c4-highmem-16,us-central1-a,305f3ff,pypsa-eur-elec-100-3h,gurobi-13.0.0,pypsa-eur-elec -pypsa-eur-elec,100-3h,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,86400.0,162.968,,,,86400.0,86400.0,benchmark-instance-new-pypsa-00,20251227-new-pypsa,2025-12-28 08:46:37.997367,c4-highmem-16,us-central1-a,305f3ff,pypsa-eur-elec-100-3h,highs-hipo-1.12.0-hipo,pypsa-eur-elec -pypsa-eur-elec,100-3h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,86400.0,162.972,,,,86400.0,86400.0,benchmark-instance-new-pypsa-00,20251227-new-pypsa,2025-12-29 08:50:11.738076,c4-highmem-16,us-central1-a,305f3ff,pypsa-eur-elec-100-3h,highs-ipx-1.12.0-hipo,pypsa-eur-elec -pypsa-eur-elec,100-3h,highs,1.12.0,2025.0,error,internal_solver_error,17941.545273860043,11598.92,,,,17878.015210151672,86400.0,benchmark-instance-new-pypsa-00,20251227-new-pypsa,2025-12-30 08:53:55.833647,c4-highmem-16,us-central1-a,305f3ff,pypsa-eur-elec-100-3h,highs-1.12.0,pypsa-eur-elec -pypsa-eur-elec,100-3h,scip,10.0.0,2025.0,TO,Timeout,86400.0,47686.896,,,,86400.0,86400.0,benchmark-instance-new-pypsa-00,20251227-new-pypsa,2025-12-30 13:57:26.638202,c4-highmem-16,us-central1-a,305f3ff,pypsa-eur-elec-100-3h,scip-10.0.0,pypsa-eur-elec -pypsa-de-elec,10-1h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,1016.96,,,,86400.0,86400.0,benchmark-instance-new-pypsa-19,20251227-new-pypsa,2025-12-27 07:46:12.524018,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-10-1h,cbc-2.10.12,pypsa-de-elec -pypsa-de-elec,10-1h,gurobi,13.0.0,2025.0,ok,optimal,146.85964792799496,7031.5,5604866180.744831,,,128.30193495750427,86400.0,benchmark-instance-new-pypsa-19,20251227-new-pypsa,2025-12-28 07:50:21.335995,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-10-1h,gurobi-13.0.0,pypsa-de-elec -pypsa-de-elec,10-1h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,1998.0988146970049,4683.94,5604866180.9,,,1998.0988146970049,86400.0,benchmark-instance-new-pypsa-19,20251227-new-pypsa,2025-12-28 07:56:47.068407,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-10-1h,highs-hipo-1.12.0-hipo,pypsa-de-elec -pypsa-de-elec,10-1h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,14797.838572816996,3425.564,5604866180.8,,,14797.838572816996,86400.0,benchmark-instance-new-pypsa-19,20251227-new-pypsa,2025-12-28 08:30:05.933015,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-10-1h,highs-ipx-1.12.0-hipo,pypsa-de-elec -pypsa-de-elec,10-1h,highs,1.12.0,2025.0,ok,optimal,30500.32222700801,6201.432,5604866180.744875,,,30477.26105809212,86400.0,benchmark-instance-new-pypsa-19,20251227-new-pypsa,2025-12-28 12:40:33.574755,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-10-1h,highs-1.12.0,pypsa-de-elec -pypsa-de-elec,10-1h,scip,10.0.0,2025.0,TO,Timeout,86400.0,15054.288,,,,86400.0,86400.0,benchmark-instance-new-pypsa-19,20251227-new-pypsa,2025-12-28 21:12:40.946709,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-10-1h,scip-10.0.0,pypsa-de-elec -pypsa-de-elec-dfp,20-1h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,1749.396,,,,86400.0,86400.0,benchmark-instance-new-pypsa-05,20251227-new-pypsa,2025-12-27 07:46:33.211723,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-dfp-20-1h,cbc-2.10.12,pypsa-de-elec-dfp -pypsa-de-elec-dfp,20-1h,gurobi,13.0.0,2025.0,ok,optimal,481.7661000590015,11565.02,7693654587.63356,,,449.3641219139099,86400.0,benchmark-instance-new-pypsa-05,20251227-new-pypsa,2025-12-28 07:50:35.505766,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-dfp-20-1h,gurobi-13.0.0,pypsa-de-elec-dfp -pypsa-de-elec-dfp,20-1h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,5993.152001606999,9071.024,7693654587.7,,,5993.152001606999,86400.0,benchmark-instance-new-pypsa-05,20251227-new-pypsa,2025-12-28 08:02:38.182631,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-dfp-20-1h,highs-hipo-1.12.0-hipo,pypsa-de-elec-dfp -pypsa-de-elec-dfp,20-1h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,86400.0,163.168,,,,86400.0,86400.0,benchmark-instance-new-pypsa-05,20251227-new-pypsa,2025-12-28 09:46:02.342312,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-dfp-20-1h,highs-ipx-1.12.0-hipo,pypsa-de-elec-dfp -pypsa-de-elec-dfp,20-1h,highs,1.12.0,2025.0,TO,Timeout,86400.0,6312.924,,,,86400.0,86400.0,benchmark-instance-new-pypsa-05,20251227-new-pypsa,2025-12-29 09:49:31.856742,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-dfp-20-1h,highs-1.12.0,pypsa-de-elec-dfp -pypsa-de-elec-dfp,20-1h,scip,10.0.0,2025.0,TO,Timeout,86400.0,27778.832,,,,86400.0,86400.0,benchmark-instance-new-pypsa-05,20251227-new-pypsa,2025-12-30 09:53:17.224605,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-dfp-20-1h,scip-10.0.0,pypsa-de-elec-dfp -pypsa-de-elec-trex_vopt-dfp,10-1h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,1015.504,,,,86400.0,86400.0,benchmark-instance-new-pypsa-14,20251227-new-pypsa,2025-12-27 07:45:40.671272,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-dfp-10-1h,cbc-2.10.12,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,10-1h,gurobi,13.0.0,2025.0,ok,optimal,563.1006232509972,8196.304,7574726795.593382,,,544.1030659675598,86400.0,benchmark-instance-new-pypsa-14,20251227-new-pypsa,2025-12-28 07:49:57.173380,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-dfp-10-1h,gurobi-13.0.0,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,10-1h,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,86400.0,163.924,,,,86400.0,86400.0,benchmark-instance-new-pypsa-14,20251227-new-pypsa,2025-12-28 08:03:22.785365,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-dfp-10-1h,highs-hipo-1.12.0-hipo,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,10-1h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,86400.0,164.212,,,,86400.0,86400.0,benchmark-instance-new-pypsa-14,20251227-new-pypsa,2025-12-29 08:06:57.169918,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-dfp-10-1h,highs-ipx-1.12.0-hipo,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,10-1h,highs,1.12.0,2025.0,ok,optimal,85172.81605425701,6276.844,7574726795.593275,,,85152.41181516647,86400.0,benchmark-instance-new-pypsa-14,20251227-new-pypsa,2025-12-30 08:10:13.131133,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-dfp-10-1h,highs-1.12.0,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,10-1h,scip,10.0.0,2025.0,TO,Timeout,86400.0,17787.228,,,,86400.0,86400.0,benchmark-instance-new-pypsa-14,20251227-new-pypsa,2025-12-31 07:53:26.133642,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-dfp-10-1h,scip-10.0.0,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,10-3h,glpk,5.0,2020.0,TO,Timeout,3600.0,415.188,,,,3600.0,3600.0,benchmark-instance-new-pypsa-23,20251227-new-pypsa,2025-12-27 07:44:56.136774,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-dfp-10-3h,glpk-5.0,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,10-3h,gurobi,10.0.0,2022.0,ok,optimal,507.6285556969997,2099.56,7543487909.763189,,,499.89591693878174,3600.0,benchmark-instance-new-pypsa-23,20251227-new-pypsa,2025-12-27 08:49:09.315335,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-dfp-10-3h,gurobi-10.0.0,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,10-3h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1712.992,,,,3600.0,3600.0,benchmark-instance-new-pypsa-23,20251227-new-pypsa,2025-12-27 09:01:14.742654,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-dfp-10-3h,highs-1.5.0.dev0,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,10-3h,scip,8.0.3,2022.0,TO,Timeout,3600.0,5847.712,,,,3600.0,3600.0,benchmark-instance-new-pypsa-23,20251227-new-pypsa,2025-12-27 10:04:43.433618,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-dfp-10-3h,scip-8.0.3,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,10-3h,gurobi,11.0.0,2023.0,ok,optimal,731.3238123689989,2042.972,7543487909.763147,,,725.2651040554047,3600.0,benchmark-instance-new-pypsa-23,20251227-new-pypsa,2025-12-27 11:11:32.363717,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-dfp-10-3h,gurobi-11.0.0,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,10-3h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,1508.144,,,,3600.0,3600.0,benchmark-instance-new-pypsa-23,20251227-new-pypsa,2025-12-27 11:27:17.726196,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-dfp-10-3h,highs-1.6.0.dev0,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,10-3h,scip,8.1.0,2023.0,TO,Timeout,3600.0,5865.556,,,,3600.0,3600.0,benchmark-instance-new-pypsa-23,20251227-new-pypsa,2025-12-27 12:30:45.580290,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-dfp-10-3h,scip-8.1.0,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,10-3h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,445.924,,,,3600.0,3600.0,benchmark-instance-new-pypsa-23,20251227-new-pypsa,2025-12-27 13:34:17.106479,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-dfp-10-3h,cbc-2.10.11,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,10-3h,gurobi,12.0.0,2024.0,ok,optimal,908.7250072589997,2033.116,7543487909.763105,,,902.4691030979156,3600.0,benchmark-instance-new-pypsa-23,20251227-new-pypsa,2025-12-27 14:38:28.062909,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-dfp-10-3h,gurobi-12.0.0,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,10-3h,highs,1.9.0,2024.0,TO,Timeout,3600.0,1631.3,,,,3600.0,3600.0,benchmark-instance-new-pypsa-23,20251227-new-pypsa,2025-12-27 14:57:23.670024,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-dfp-10-3h,highs-1.9.0,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,10-3h,scip,9.2.0,2024.0,TO,Timeout,3600.0,5846.8,,,,3600.0,3600.0,benchmark-instance-new-pypsa-23,20251227-new-pypsa,2025-12-27 16:01:05.129114,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-dfp-10-3h,scip-9.2.0,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,10-3h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,428.636,,,,3600.0,3600.0,benchmark-instance-new-pypsa-23,20251227-new-pypsa,2025-12-27 17:04:38.155966,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-dfp-10-3h,cbc-2.10.12,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,10-3h,gurobi,13.0.0,2025.0,ok,optimal,1280.803704854996,2055.952,7543487909.763082,,,1274.4965119361875,3600.0,benchmark-instance-new-pypsa-23,20251227-new-pypsa,2025-12-27 18:08:43.628289,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-dfp-10-3h,gurobi-13.0.0,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,10-3h,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,3600.0,162.752,,,,3600.0,3600.0,benchmark-instance-new-pypsa-23,20251227-new-pypsa,2025-12-27 18:33:45.157959,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-dfp-10-3h,highs-hipo-1.12.0-hipo,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,10-3h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,3600.0,162.808,,,,3600.0,3600.0,benchmark-instance-new-pypsa-23,20251227-new-pypsa,2025-12-27 19:37:27.490860,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-dfp-10-3h,highs-ipx-1.12.0-hipo,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,10-3h,highs,1.12.0,2025.0,ok,optimal,3559.810454034996,2354.764,7543487909.763254,,,3552.3786487579346,3600.0,benchmark-instance-new-pypsa-23,20251227-new-pypsa,2025-12-27 20:41:14.663209,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-dfp-10-3h,highs-1.12.0,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,10-3h,scip,10.0.0,2025.0,TO,Timeout,3600.0,5870.456,,,,3600.0,3600.0,benchmark-instance-new-pypsa-23,20251227-new-pypsa,2025-12-27 21:44:15.710559,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-dfp-10-3h,scip-10.0.0,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec,50-3h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,1367.036,,,,86400.0,86400.0,benchmark-instance-new-pypsa-13,20251227-new-pypsa,2025-12-27 07:45:55.898415,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-50-3h,cbc-2.10.12,pypsa-de-elec -pypsa-de-elec,50-3h,gurobi,13.0.0,2025.0,ok,optimal,289.8933526289911,9681.38,5632464122.90567,,,263.9121310710907,86400.0,benchmark-instance-new-pypsa-13,20251227-new-pypsa,2025-12-28 07:50:01.064819,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-50-3h,gurobi-13.0.0,pypsa-de-elec -pypsa-de-elec,50-3h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,5500.474371075994,7989.896,5632464122.9,,,5500.474371075994,86400.0,benchmark-instance-new-pypsa-13,20251227-new-pypsa,2025-12-28 07:58:50.412664,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-50-3h,highs-hipo-1.12.0-hipo,pypsa-de-elec -pypsa-de-elec,50-3h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,48917.46950559699,4660.844,5632464122.9,,,48917.46950559699,86400.0,benchmark-instance-new-pypsa-13,20251227-new-pypsa,2025-12-28 09:34:14.580947,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-50-3h,highs-ipx-1.12.0-hipo,pypsa-de-elec -pypsa-de-elec,50-3h,highs,1.12.0,2025.0,TO,Timeout,86400.0,4817.456,,,,86400.0,86400.0,benchmark-instance-new-pypsa-13,20251227-new-pypsa,2025-12-28 23:13:18.533470,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-50-3h,highs-1.12.0,pypsa-de-elec -pypsa-de-elec,50-3h,scip,10.0.0,2025.0,TO,Timeout,86400.0,21400.888,,,,86400.0,86400.0,benchmark-instance-new-pypsa-13,20251227-new-pypsa,2025-12-29 23:17:08.626880,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-50-3h,scip-10.0.0,pypsa-de-elec -pypsa-de-elec-trex_vopt,10-3h,glpk,5.0,2020.0,TO,Timeout,3600.0,415.024,,,,3600.0,3600.0,benchmark-instance-new-pypsa-24,20251227-new-pypsa,2025-12-27 07:44:51.681031,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-10-3h,glpk-5.0,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,10-3h,gurobi,10.0.0,2022.0,ok,optimal,656.7600870309998,2101.708,7543468432.416399,,,648.7604160308838,3600.0,benchmark-instance-new-pypsa-24,20251227-new-pypsa,2025-12-27 08:49:14.886710,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-10-3h,gurobi-10.0.0,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,10-3h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1712.256,,,,3600.0,3600.0,benchmark-instance-new-pypsa-24,20251227-new-pypsa,2025-12-27 09:04:03.415714,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-10-3h,highs-1.5.0.dev0,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,10-3h,scip,8.0.3,2022.0,TO,Timeout,3600.0,5842.456,,,,3600.0,3600.0,benchmark-instance-new-pypsa-24,20251227-new-pypsa,2025-12-27 10:07:50.212419,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-10-3h,scip-8.0.3,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,10-3h,gurobi,11.0.0,2023.0,ok,optimal,1453.526282322,2046.424,7543468432.416323,,,1447.085666179657,3600.0,benchmark-instance-new-pypsa-24,20251227-new-pypsa,2025-12-27 11:15:09.837366,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-10-3h,gurobi-11.0.0,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,10-3h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,1508.664,,,,3600.0,3600.0,benchmark-instance-new-pypsa-24,20251227-new-pypsa,2025-12-27 11:43:14.276773,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-10-3h,highs-1.6.0.dev0,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,10-3h,scip,8.1.0,2023.0,TO,Timeout,3600.0,5853.528,,,,3600.0,3600.0,benchmark-instance-new-pypsa-24,20251227-new-pypsa,2025-12-27 12:47:00.939320,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-10-3h,scip-8.1.0,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,10-3h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,446.216,,,,3600.0,3600.0,benchmark-instance-new-pypsa-24,20251227-new-pypsa,2025-12-27 13:50:46.561359,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-10-3h,cbc-2.10.11,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,10-3h,gurobi,12.0.0,2024.0,ok,optimal,1334.8141141559972,2032.504,7543468432.416403,,,1328.1919240951538,3600.0,benchmark-instance-new-pypsa-24,20251227-new-pypsa,2025-12-27 14:55:08.525434,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-10-3h,gurobi-12.0.0,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,10-3h,highs,1.9.0,2024.0,TO,Timeout,3600.0,1634.88,,,,3600.0,3600.0,benchmark-instance-new-pypsa-24,20251227-new-pypsa,2025-12-27 15:21:22.265776,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-10-3h,highs-1.9.0,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,10-3h,scip,9.2.0,2024.0,TO,Timeout,3600.0,5837.876,,,,3600.0,3600.0,benchmark-instance-new-pypsa-24,20251227-new-pypsa,2025-12-27 16:25:05.234185,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-10-3h,scip-9.2.0,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,10-3h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,428.916,,,,3600.0,3600.0,benchmark-instance-new-pypsa-24,20251227-new-pypsa,2025-12-27 17:28:46.385217,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-10-3h,cbc-2.10.12,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,10-3h,gurobi,13.0.0,2025.0,ok,optimal,1473.8851235380062,2061.164,7543468432.416368,,,1467.709941148758,3600.0,benchmark-instance-new-pypsa-24,20251227-new-pypsa,2025-12-27 18:32:54.314158,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-10-3h,gurobi-13.0.0,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,10-3h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,664.6151803810062,1956.836,7543468432.5,,,664.6151803810062,3600.0,benchmark-instance-new-pypsa-24,20251227-new-pypsa,2025-12-27 19:01:11.566778,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-10-3h,highs-hipo-1.12.0-hipo,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,10-3h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,3574.6836313879976,1171.252,7543468432.4,,,3574.6836313879976,3600.0,benchmark-instance-new-pypsa-24,20251227-new-pypsa,2025-12-27 19:12:16.932556,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-10-3h,highs-ipx-1.12.0-hipo,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,10-3h,highs,1.12.0,2025.0,ok,optimal,2952.861641026,2299.492,7543468432.416414,,,2945.6628770828247,3600.0,benchmark-instance-new-pypsa-24,20251227-new-pypsa,2025-12-27 20:15:34.018675,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-10-3h,highs-1.12.0,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,10-3h,scip,10.0.0,2025.0,TO,Timeout,3600.0,5855.06,,,,3600.0,3600.0,benchmark-instance-new-pypsa-24,20251227-new-pypsa,2025-12-27 21:04:52.579859,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-10-3h,scip-10.0.0,pypsa-de-elec-trex_vopt -pypsa-eur-elec,50-24h,glpk,5.0,2020.0,TO,Timeout,3600.0,305.916,,,,3600.0,3600.0,benchmark-instance-new-pypsa-29,20251227-new-pypsa,2025-12-27 07:44:54.553827,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-24h,glpk-5.0,pypsa-eur-elec -pypsa-eur-elec,50-24h,gurobi,10.0.0,2022.0,TO,Timeout,3600.0,661.244,,,,3600.0,3600.0,benchmark-instance-new-pypsa-29,20251227-new-pypsa,2025-12-27 08:49:24.272873,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-24h,gurobi-10.0.0,pypsa-eur-elec -pypsa-eur-elec,50-24h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1105.036,,,,3600.0,3600.0,benchmark-instance-new-pypsa-29,20251227-new-pypsa,2025-12-27 09:53:12.295465,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-24h,highs-1.5.0.dev0,pypsa-eur-elec -pypsa-eur-elec,50-24h,scip,8.0.3,2022.0,TO,Timeout,3600.0,3398.444,,,,3600.0,3600.0,benchmark-instance-new-pypsa-29,20251227-new-pypsa,2025-12-27 10:56:58.350138,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-24h,scip-8.0.3,pypsa-eur-elec -pypsa-eur-elec,50-24h,gurobi,11.0.0,2023.0,TO,Timeout,3600.0,672.016,,,,3600.0,3600.0,benchmark-instance-new-pypsa-29,20251227-new-pypsa,2025-12-27 12:04:07.589362,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-24h,gurobi-11.0.0,pypsa-eur-elec -pypsa-eur-elec,50-24h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,1059.068,,,,3600.0,3600.0,benchmark-instance-new-pypsa-29,20251227-new-pypsa,2025-12-27 13:07:51.036036,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-24h,highs-1.6.0.dev0,pypsa-eur-elec -pypsa-eur-elec,50-24h,scip,8.1.0,2023.0,TO,Timeout,3600.0,3404.908,,,,3600.0,3600.0,benchmark-instance-new-pypsa-29,20251227-new-pypsa,2025-12-27 14:11:35.137360,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-24h,scip-8.1.0,pypsa-eur-elec -pypsa-eur-elec,50-24h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,336.76,,,,3600.0,3600.0,benchmark-instance-new-pypsa-29,20251227-new-pypsa,2025-12-27 15:15:18.710691,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-24h,cbc-2.10.11,pypsa-eur-elec -pypsa-eur-elec,50-24h,gurobi,12.0.0,2024.0,ok,optimal,3490.881909959004,1304.984,32743539907.77884,,,3486.923056125641,3600.0,benchmark-instance-new-pypsa-29,20251227-new-pypsa,2025-12-27 16:19:29.473091,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-24h,gurobi-12.0.0,pypsa-eur-elec -pypsa-eur-elec,50-24h,highs,1.9.0,2024.0,TO,Timeout,3600.0,1630.912,,,,3600.0,3600.0,benchmark-instance-new-pypsa-29,20251227-new-pypsa,2025-12-27 17:21:28.235115,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-24h,highs-1.9.0,pypsa-eur-elec -pypsa-eur-elec,50-24h,scip,9.2.0,2024.0,TO,Timeout,3600.0,3390.156,,,,3600.0,3600.0,benchmark-instance-new-pypsa-29,20251227-new-pypsa,2025-12-27 18:25:10.593507,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-24h,scip-9.2.0,pypsa-eur-elec -pypsa-eur-elec,50-24h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,319.392,,,,3600.0,3600.0,benchmark-instance-new-pypsa-29,20251227-new-pypsa,2025-12-27 19:28:52.644805,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-24h,cbc-2.10.12,pypsa-eur-elec -pypsa-eur-elec,50-24h,gurobi,13.0.0,2025.0,ok,optimal,3356.899099162998,1331.716,32743539907.778797,,,3352.8631739616394,3600.0,benchmark-instance-new-pypsa-29,20251227-new-pypsa,2025-12-27 20:33:13.529861,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-24h,gurobi-13.0.0,pypsa-eur-elec -pypsa-eur-elec,50-24h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,994.484785560002,3348.756,32743539908.0,,,994.484785560002,3600.0,benchmark-instance-new-pypsa-29,20251227-new-pypsa,2025-12-27 21:33:07.504704,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-24h,highs-hipo-1.12.0-hipo,pypsa-eur-elec -pypsa-eur-elec,50-24h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,840.4238477170002,725.092,32743539909.0,,,840.4238477170002,3600.0,benchmark-instance-new-pypsa-29,20251227-new-pypsa,2025-12-27 21:49:43.052871,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-24h,highs-ipx-1.12.0-hipo,pypsa-eur-elec -pypsa-eur-elec,50-24h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1551.276,,,,3600.0,3600.0,benchmark-instance-new-pypsa-29,20251227-new-pypsa,2025-12-27 22:03:44.473980,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-24h,highs-1.12.0,pypsa-eur-elec -pypsa-eur-elec,50-24h,scip,10.0.0,2025.0,TO,Timeout,3600.0,3410.82,,,,3600.0,3600.0,benchmark-instance-new-pypsa-29,20251227-new-pypsa,2025-12-27 23:07:32.092244,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-24h,scip-10.0.0,pypsa-eur-elec -pypsa-eur-elec,50-3h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,1597.964,,,,86400.0,86400.0,benchmark-instance-new-pypsa-07,20251227-new-pypsa,2025-12-27 07:54:25.374647,c4-highmem-16,us-east1-b,305f3ff,pypsa-eur-elec-50-3h,cbc-2.10.12,pypsa-eur-elec -pypsa-eur-elec,50-3h,gurobi,13.0.0,2025.0,ok,optimal,3524.640558254003,10303.564,35580111629.54472,,,3493.991401195526,86400.0,benchmark-instance-new-pypsa-07,20251227-new-pypsa,2025-12-28 07:58:24.004327,c4-highmem-16,us-east1-b,305f3ff,pypsa-eur-elec-50-3h,gurobi-13.0.0,pypsa-eur-elec -pypsa-eur-elec,50-3h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,15242.385195757,8901.156,35580111631.0,,,15242.385195757,86400.0,benchmark-instance-new-pypsa-07,20251227-new-pypsa,2025-12-28 09:01:11.537548,c4-highmem-16,us-east1-b,305f3ff,pypsa-eur-elec-50-3h,highs-hipo-1.12.0-hipo,pypsa-eur-elec -pypsa-eur-elec,50-3h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,74664.283962099,5584.692,35580111634.0,,,74664.283962099,86400.0,benchmark-instance-new-pypsa-07,20251227-new-pypsa,2025-12-28 13:18:47.457427,c4-highmem-16,us-east1-b,305f3ff,pypsa-eur-elec-50-3h,highs-ipx-1.12.0-hipo,pypsa-eur-elec -pypsa-eur-elec,50-3h,highs,1.12.0,2025.0,TO,Timeout,86400.0,7092.696,,,,86400.0,86400.0,benchmark-instance-new-pypsa-07,20251227-new-pypsa,2025-12-29 10:06:45.280460,c4-highmem-16,us-east1-b,305f3ff,pypsa-eur-elec-50-3h,highs-1.12.0,pypsa-eur-elec -pypsa-eur-elec,50-3h,scip,10.0.0,2025.0,TO,Timeout,86400.0,24734.124,,,,86400.0,86400.0,benchmark-instance-new-pypsa-07,20251227-new-pypsa,2025-12-30 10:10:21.074288,c4-highmem-16,us-east1-b,305f3ff,pypsa-eur-elec-50-3h,scip-10.0.0,pypsa-eur-elec -pypsa-eur-elec,50-12h,glpk,5.0,2020.0,TO,Timeout,3600.0,489.68,,,,3600.0,3600.0,benchmark-instance-new-pypsa-21,20251227-new-pypsa,2025-12-27 07:44:46.393292,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-12h,glpk-5.0,pypsa-eur-elec -pypsa-eur-elec,50-12h,gurobi,10.0.0,2022.0,TO,Timeout,3600.0,1152.024,,,,3600.0,3600.0,benchmark-instance-new-pypsa-21,20251227-new-pypsa,2025-12-27 08:49:34.265442,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-12h,gurobi-10.0.0,pypsa-eur-elec -pypsa-eur-elec,50-12h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1866.916,,,,3600.0,3600.0,benchmark-instance-new-pypsa-21,20251227-new-pypsa,2025-12-27 09:54:13.240320,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-12h,highs-1.5.0.dev0,pypsa-eur-elec -pypsa-eur-elec,50-12h,scip,8.0.3,2022.0,OOM,Out of Memory,,,,,,,3600.0,benchmark-instance-new-pypsa-21,20251227-new-pypsa,2025-12-27 10:58:34.632762,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-12h,scip-8.0.3,pypsa-eur-elec -pypsa-eur-elec,50-12h,gurobi,11.0.0,2023.0,TO,Timeout,3600.0,1163.916,,,,3600.0,3600.0,benchmark-instance-new-pypsa-21,20251227-new-pypsa,2025-12-27 11:02:41.613649,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-12h,gurobi-11.0.0,pypsa-eur-elec -pypsa-eur-elec,50-12h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,1704.376,,,,3600.0,3600.0,benchmark-instance-new-pypsa-21,20251227-new-pypsa,2025-12-27 12:07:03.807218,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-12h,highs-1.6.0.dev0,pypsa-eur-elec -pypsa-eur-elec,50-12h,scip,8.1.0,2023.0,OOM,Out of Memory,,,,,,,3600.0,benchmark-instance-new-pypsa-21,20251227-new-pypsa,2025-12-27 13:11:43.918402,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-12h,scip-8.1.0,pypsa-eur-elec -pypsa-eur-elec,50-12h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,520.3,,,,3600.0,3600.0,benchmark-instance-new-pypsa-21,20251227-new-pypsa,2025-12-27 13:12:13.636730,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-12h,cbc-2.10.11,pypsa-eur-elec -pypsa-eur-elec,50-12h,gurobi,12.0.0,2024.0,TO,Timeout,3600.0,1174.72,,,,3600.0,3600.0,benchmark-instance-new-pypsa-21,20251227-new-pypsa,2025-12-27 14:17:34.400926,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-12h,gurobi-12.0.0,pypsa-eur-elec -pypsa-eur-elec,50-12h,highs,1.9.0,2024.0,TO,Timeout,3600.0,1650.096,,,,3600.0,3600.0,benchmark-instance-new-pypsa-21,20251227-new-pypsa,2025-12-27 15:21:54.376703,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-12h,highs-1.9.0,pypsa-eur-elec -pypsa-eur-elec,50-12h,scip,9.2.0,2024.0,OOM,Out of Memory,,,,,,,3600.0,benchmark-instance-new-pypsa-21,20251227-new-pypsa,2025-12-27 16:25:44.407650,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-12h,scip-9.2.0,pypsa-eur-elec -pypsa-eur-elec,50-12h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,503.128,,,,3600.0,3600.0,benchmark-instance-new-pypsa-21,20251227-new-pypsa,2025-12-27 16:26:05.814766,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-12h,cbc-2.10.12,pypsa-eur-elec -pypsa-eur-elec,50-12h,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,1207.848,,,,3600.0,3600.0,benchmark-instance-new-pypsa-21,20251227-new-pypsa,2025-12-27 17:30:31.548212,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-12h,gurobi-13.0.0,pypsa-eur-elec -pypsa-eur-elec,50-12h,highs-hipo,1.12.0-hipo,2025.0,OOM,Out of Memory,,,,,,,3600.0,benchmark-instance-new-pypsa-21,20251227-new-pypsa,2025-12-27 18:34:36.779990,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-12h,highs-hipo-1.12.0-hipo,pypsa-eur-elec -pypsa-eur-elec,50-12h,highs-ipx,1.12.0-hipo,2025.0,OOM,Out of Memory,,,,,,,3600.0,benchmark-instance-new-pypsa-21,20251227-new-pypsa,2025-12-27 18:35:29.809107,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-12h,highs-ipx-1.12.0-hipo,pypsa-eur-elec -pypsa-eur-elec,50-12h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1691.916,,,,3600.0,3600.0,benchmark-instance-new-pypsa-21,20251227-new-pypsa,2025-12-27 18:35:39.531398,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-12h,highs-1.12.0,pypsa-eur-elec -pypsa-eur-elec,50-12h,scip,10.0.0,2025.0,OOM,Out of Memory,,,,,,,3600.0,benchmark-instance-new-pypsa-21,20251227-new-pypsa,2025-12-27 19:39:36.588711,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-12h,scip-10.0.0,pypsa-eur-elec -pypsa-de-elec-trex_copt-dfp,10-1h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,1015.956,,,,86400.0,86400.0,benchmark-instance-new-pypsa-16,20251227-new-pypsa,2025-12-30 07:41:10.916755,c4-highmem-16,us-central1-a,553001,pypsa-de-elec-trex_copt-dfp-10-1h,cbc-2.10.12,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,10-1h,gurobi,13.0.0,2025.0,ok,optimal,552.1199110390007,7628.688,7574759720.579138,,,533.0534610748291,86400.0,benchmark-instance-new-pypsa-16,20251227-new-pypsa,2025-12-31 07:45:14.172222,c4-highmem-16,us-central1-a,553001,pypsa-de-elec-trex_copt-dfp-10-1h,gurobi-13.0.0,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,10-1h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,11486.280942394003,5661.88,7574759723.3,,,11486.280942394003,86400.0,benchmark-instance-new-pypsa-16,20251227-new-pypsa,2025-12-31 07:58:25.476273,c4-highmem-16,us-central1-a,553001,pypsa-de-elec-trex_copt-dfp-10-1h,highs-hipo-1.12.0-hipo,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,10-1h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,86400.0,164.256,,,,86400.0,86400.0,benchmark-instance-new-pypsa-16,20251227-new-pypsa,2025-12-31 11:13:26.293784,c4-highmem-16,us-central1-a,553001,pypsa-de-elec-trex_copt-dfp-10-1h,highs-ipx-1.12.0-hipo,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,10-1h,highs,1.12.0,2025.0,ok,optimal,85896.52626633999,6254.324,7574759720.57873,,,85873.38935446739,86400.0,benchmark-instance-new-pypsa-16,20251227-new-pypsa,2026-01-01 11:17:06.344685,c4-highmem-16,us-central1-a,553001,pypsa-de-elec-trex_copt-dfp-10-1h,highs-1.12.0,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,10-1h,scip,10.0.0,2025.0,TO,Timeout,86400.0,17449.636,,,,86400.0,86400.0,benchmark-instance-new-pypsa-16,20251227-new-pypsa,2026-01-02 11:12:32.859124,c4-highmem-16,us-central1-a,553001,pypsa-de-elec-trex_copt-dfp-10-1h,scip-10.0.0,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-dfp,10-1h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,1017.124,,,,86400.0,86400.0,benchmark-instance-new-pypsa-18,20251227-new-pypsa,2025-12-27 07:46:12.695704,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-dfp-10-1h,cbc-2.10.12,pypsa-de-elec-dfp -pypsa-de-elec-dfp,10-1h,gurobi,13.0.0,2025.0,ok,optimal,319.50899926900456,6936.528,7578404513.851929,,,301.16634607315063,86400.0,benchmark-instance-new-pypsa-18,20251227-new-pypsa,2025-12-28 07:50:17.710346,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-dfp-10-1h,gurobi-13.0.0,pypsa-de-elec-dfp -pypsa-de-elec-dfp,10-1h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,4994.882943600998,4689.556,7578404514.0,,,4994.882943600998,86400.0,benchmark-instance-new-pypsa-18,20251227-new-pypsa,2025-12-28 07:59:25.640812,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-dfp-10-1h,highs-hipo-1.12.0-hipo,pypsa-de-elec-dfp -pypsa-de-elec-dfp,10-1h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,19386.069528448992,3370.476,7578404514.1,,,19386.069528448992,86400.0,benchmark-instance-new-pypsa-18,20251227-new-pypsa,2025-12-28 09:26:21.292913,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-dfp-10-1h,highs-ipx-1.12.0-hipo,pypsa-de-elec-dfp -pypsa-de-elec-dfp,10-1h,highs,1.12.0,2025.0,ok,optimal,71276.268222631,6210.72,7578404513.851887,,,71253.86956429482,86400.0,benchmark-instance-new-pypsa-18,20251227-new-pypsa,2025-12-28 14:53:13.247888,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-dfp-10-1h,highs-1.12.0,pypsa-de-elec-dfp -pypsa-de-elec-dfp,10-1h,scip,10.0.0,2025.0,TO,Timeout,86400.0,15008.052,,,,86400.0,86400.0,benchmark-instance-new-pypsa-18,20251227-new-pypsa,2025-12-29 10:44:58.051243,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-dfp-10-1h,scip-10.0.0,pypsa-de-elec-dfp -pypsa-de-elec-trex_copt,20-1h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,1742.196,,,,86400.0,86400.0,benchmark-instance-new-pypsa-04,20251227-new-pypsa,2025-12-27 07:53:31.448807,c4-highmem-16,us-east1-b,305f3ff,pypsa-de-elec-trex_copt-20-1h,cbc-2.10.12,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,20-1h,gurobi,13.0.0,2025.0,ok,optimal,1178.4059438419936,14195.156,7559712213.521395,,,1148.8415729999542,86400.0,benchmark-instance-new-pypsa-04,20251227-new-pypsa,2025-12-28 07:57:09.364870,c4-highmem-16,us-east1-b,305f3ff,pypsa-de-elec-trex_copt-20-1h,gurobi-13.0.0,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,20-1h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,24653.512998185997,10758.316,7559712213.8,,,24653.512998185997,86400.0,benchmark-instance-new-pypsa-04,20251227-new-pypsa,2025-12-28 08:20:26.437987,c4-highmem-16,us-east1-b,305f3ff,pypsa-de-elec-trex_copt-20-1h,highs-hipo-1.12.0-hipo,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,20-1h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,86400.0,162.924,,,,86400.0,86400.0,benchmark-instance-new-pypsa-04,20251227-new-pypsa,2025-12-28 15:14:28.912691,c4-highmem-16,us-east1-b,305f3ff,pypsa-de-elec-trex_copt-20-1h,highs-ipx-1.12.0-hipo,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,20-1h,highs,1.12.0,2025.0,TO,Timeout,86400.0,6478.848,,,,86400.0,86400.0,benchmark-instance-new-pypsa-04,20251227-new-pypsa,2025-12-29 15:17:39.120269,c4-highmem-16,us-east1-b,305f3ff,pypsa-de-elec-trex_copt-20-1h,highs-1.12.0,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,20-1h,scip,10.0.0,2025.0,TO,Timeout,86400.0,30655.14,,,,86400.0,86400.0,benchmark-instance-new-pypsa-04,20251227-new-pypsa,2025-12-30 15:20:46.761872,c4-highmem-16,us-east1-b,305f3ff,pypsa-de-elec-trex_copt-20-1h,scip-10.0.0,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_vopt,10-1h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,1015.944,,,,86400.0,86400.0,benchmark-instance-new-pypsa-15,20251227-new-pypsa,2025-12-30 07:41:09.880996,c4-highmem-16,us-central1-a,553001,pypsa-de-elec-trex_vopt-10-1h,cbc-2.10.12,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,10-1h,gurobi,13.0.0,2025.0,ok,optimal,556.0059503889934,8143.372,7574743524.678019,,,536.8196511268616,86400.0,benchmark-instance-new-pypsa-15,20251227-new-pypsa,2025-12-31 07:45:17.824549,c4-highmem-16,us-central1-a,553001,pypsa-de-elec-trex_vopt-10-1h,gurobi-13.0.0,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,10-1h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,11150.948562995009,5639.808,7574743525.7,,,11150.948562995009,86400.0,benchmark-instance-new-pypsa-15,20251227-new-pypsa,2025-12-31 07:58:34.339501,c4-highmem-16,us-central1-a,553001,pypsa-de-elec-trex_vopt-10-1h,highs-hipo-1.12.0-hipo,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,10-1h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,86400.0,163.06,,,,86400.0,86400.0,benchmark-instance-new-pypsa-15,20251227-new-pypsa,2025-12-31 11:08:05.056140,c4-highmem-16,us-central1-a,553001,pypsa-de-elec-trex_vopt-10-1h,highs-ipx-1.12.0-hipo,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,10-1h,highs,1.12.0,2025.0,TO,Timeout,86400.0,3698.464,,,,86400.0,86400.0,benchmark-instance-new-pypsa-15,20251227-new-pypsa,2026-01-01 11:11:40.138630,c4-highmem-16,us-central1-a,553001,pypsa-de-elec-trex_vopt-10-1h,highs-1.12.0,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,10-1h,scip,10.0.0,2025.0,TO,Timeout,86400.0,17553.128,,,,86400.0,86400.0,benchmark-instance-new-pypsa-15,20251227-new-pypsa,2026-01-02 11:15:21.019724,c4-highmem-16,us-central1-a,553001,pypsa-de-elec-trex_vopt-10-1h,scip-10.0.0,pypsa-de-elec-trex_vopt -pypsa-eur-elec,100-24h,glpk,5.0,2020.0,TO,Timeout,3600.0,474.72,,,,3600.0,3600.0,benchmark-instance-new-pypsa-22,20251227-new-pypsa,2025-12-27 07:44:43.938706,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-100-24h,glpk-5.0,pypsa-eur-elec -pypsa-eur-elec,100-24h,gurobi,10.0.0,2022.0,TO,Timeout,3600.0,1138.96,,,,3600.0,3600.0,benchmark-instance-new-pypsa-22,20251227-new-pypsa,2025-12-27 08:49:14.046720,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-100-24h,gurobi-10.0.0,pypsa-eur-elec -pypsa-eur-elec,100-24h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1884.608,,,,3600.0,3600.0,benchmark-instance-new-pypsa-22,20251227-new-pypsa,2025-12-27 09:53:01.062844,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-100-24h,highs-1.5.0.dev0,pypsa-eur-elec -pypsa-eur-elec,100-24h,scip,8.0.3,2022.0,OOM,Out of Memory,,,,,,,3600.0,benchmark-instance-new-pypsa-22,20251227-new-pypsa,2025-12-27 10:56:51.154490,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-100-24h,scip-8.0.3,pypsa-eur-elec -pypsa-eur-elec,100-24h,gurobi,11.0.0,2023.0,TO,Timeout,3600.0,1117.924,,,,3600.0,3600.0,benchmark-instance-new-pypsa-22,20251227-new-pypsa,2025-12-27 11:00:45.136025,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-100-24h,gurobi-11.0.0,pypsa-eur-elec -pypsa-eur-elec,100-24h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,1684.176,,,,3600.0,3600.0,benchmark-instance-new-pypsa-22,20251227-new-pypsa,2025-12-27 12:04:33.761380,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-100-24h,highs-1.6.0.dev0,pypsa-eur-elec -pypsa-eur-elec,100-24h,scip,8.1.0,2023.0,OOM,Out of Memory,,,,,,,3600.0,benchmark-instance-new-pypsa-22,20251227-new-pypsa,2025-12-27 13:08:22.181845,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-100-24h,scip-8.1.0,pypsa-eur-elec -pypsa-eur-elec,100-24h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,505.78,,,,3600.0,3600.0,benchmark-instance-new-pypsa-22,20251227-new-pypsa,2025-12-27 13:08:42.148856,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-100-24h,cbc-2.10.11,pypsa-eur-elec -pypsa-eur-elec,100-24h,gurobi,12.0.0,2024.0,TO,Timeout,3600.0,1126.664,,,,3600.0,3600.0,benchmark-instance-new-pypsa-22,20251227-new-pypsa,2025-12-27 14:13:05.567344,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-100-24h,gurobi-12.0.0,pypsa-eur-elec -pypsa-eur-elec,100-24h,highs,1.9.0,2024.0,TO,Timeout,3600.0,1569.464,,,,3600.0,3600.0,benchmark-instance-new-pypsa-22,20251227-new-pypsa,2025-12-27 15:16:53.178878,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-100-24h,highs-1.9.0,pypsa-eur-elec -pypsa-eur-elec,100-24h,scip,9.2.0,2024.0,OOM,Out of Memory,,,,,,,3600.0,benchmark-instance-new-pypsa-22,20251227-new-pypsa,2025-12-27 16:20:37.385315,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-100-24h,scip-9.2.0,pypsa-eur-elec -pypsa-eur-elec,100-24h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,488.616,,,,3600.0,3600.0,benchmark-instance-new-pypsa-22,20251227-new-pypsa,2025-12-27 16:20:56.911649,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-100-24h,cbc-2.10.12,pypsa-eur-elec -pypsa-eur-elec,100-24h,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,1156.712,,,,3600.0,3600.0,benchmark-instance-new-pypsa-22,20251227-new-pypsa,2025-12-27 17:25:11.060345,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-100-24h,gurobi-13.0.0,pypsa-eur-elec -pypsa-eur-elec,100-24h,highs-hipo,1.12.0-hipo,2025.0,OOM,Out of Memory,,,,,,,3600.0,benchmark-instance-new-pypsa-22,20251227-new-pypsa,2025-12-27 18:28:55.360302,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-100-24h,highs-hipo-1.12.0-hipo,pypsa-eur-elec -pypsa-eur-elec,100-24h,highs-ipx,1.12.0-hipo,2025.0,OOM,Out of Memory,,,,,,,3600.0,benchmark-instance-new-pypsa-22,20251227-new-pypsa,2025-12-27 18:31:17.017712,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-100-24h,highs-ipx-1.12.0-hipo,pypsa-eur-elec -pypsa-eur-elec,100-24h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1667.348,,,,3600.0,3600.0,benchmark-instance-new-pypsa-22,20251227-new-pypsa,2025-12-27 18:31:25.622913,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-100-24h,highs-1.12.0,pypsa-eur-elec -pypsa-eur-elec,100-24h,scip,10.0.0,2025.0,OOM,Out of Memory,,,,,,,3600.0,benchmark-instance-new-pypsa-22,20251227-new-pypsa,2025-12-27 19:35:04.297322,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-100-24h,scip-10.0.0,pypsa-eur-elec -pypsa-de-elec-dfp,10-3h,glpk,5.0,2020.0,TO,Timeout,3600.0,415.4,,,,3600.0,3600.0,benchmark-instance-new-pypsa-27,20251227-new-pypsa,2025-12-27 07:45:01.373976,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-dfp-10-3h,glpk-5.0,pypsa-de-elec-dfp -pypsa-de-elec-dfp,10-3h,gurobi,10.0.0,2022.0,ok,optimal,1571.289741748,2054.9,7547570289.716175,,,1563.5610349178314,3600.0,benchmark-instance-new-pypsa-27,20251227-new-pypsa,2025-12-27 08:49:25.957434,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-dfp-10-3h,gurobi-10.0.0,pypsa-de-elec-dfp -pypsa-de-elec-dfp,10-3h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1456.82,,,,3600.0,3600.0,benchmark-instance-new-pypsa-27,20251227-new-pypsa,2025-12-27 09:19:26.704480,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-dfp-10-3h,highs-1.5.0.dev0,pypsa-de-elec-dfp -pypsa-de-elec-dfp,10-3h,scip,8.0.3,2022.0,TO,Timeout,3600.0,5223.16,,,,3600.0,3600.0,benchmark-instance-new-pypsa-27,20251227-new-pypsa,2025-12-27 10:23:10.937412,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-dfp-10-3h,scip-8.0.3,pypsa-de-elec-dfp -pypsa-de-elec-dfp,10-3h,gurobi,11.0.0,2023.0,ok,optimal,1374.82737567,1984.46,7547570289.716198,,,1368.5739450454712,3600.0,benchmark-instance-new-pypsa-27,20251227-new-pypsa,2025-12-27 11:30:15.664473,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-dfp-10-3h,gurobi-11.0.0,pypsa-de-elec-dfp -pypsa-de-elec-dfp,10-3h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,1357.216,,,,3600.0,3600.0,benchmark-instance-new-pypsa-27,20251227-new-pypsa,2025-12-27 11:56:52.894637,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-dfp-10-3h,highs-1.6.0.dev0,pypsa-de-elec-dfp -pypsa-de-elec-dfp,10-3h,scip,8.1.0,2023.0,TO,Timeout,3600.0,5236.824,,,,3600.0,3600.0,benchmark-instance-new-pypsa-27,20251227-new-pypsa,2025-12-27 13:00:40.359063,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-dfp-10-3h,scip-8.1.0,pypsa-de-elec-dfp -pypsa-de-elec-dfp,10-3h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,446.656,,,,3600.0,3600.0,benchmark-instance-new-pypsa-27,20251227-new-pypsa,2025-12-27 14:04:23.605708,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-dfp-10-3h,cbc-2.10.11,pypsa-de-elec-dfp -pypsa-de-elec-dfp,10-3h,gurobi,12.0.0,2024.0,ok,optimal,2045.6713331880017,2014.728,7547570289.716084,,,2039.1081140041351,3600.0,benchmark-instance-new-pypsa-27,20251227-new-pypsa,2025-12-27 15:08:43.400418,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-dfp-10-3h,gurobi-12.0.0,pypsa-de-elec-dfp -pypsa-de-elec-dfp,10-3h,highs,1.9.0,2024.0,TO,Timeout,3600.0,1346.804,,,,3600.0,3600.0,benchmark-instance-new-pypsa-27,20251227-new-pypsa,2025-12-27 15:46:46.605290,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-dfp-10-3h,highs-1.9.0,pypsa-de-elec-dfp -pypsa-de-elec-dfp,10-3h,scip,9.2.0,2024.0,TO,Timeout,3600.0,5218.828,,,,3600.0,3600.0,benchmark-instance-new-pypsa-27,20251227-new-pypsa,2025-12-27 16:50:25.619063,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-dfp-10-3h,scip-9.2.0,pypsa-de-elec-dfp -pypsa-de-elec-dfp,10-3h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,429.188,,,,3600.0,3600.0,benchmark-instance-new-pypsa-27,20251227-new-pypsa,2025-12-27 17:54:06.146413,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-dfp-10-3h,cbc-2.10.12,pypsa-de-elec-dfp -pypsa-de-elec-dfp,10-3h,gurobi,13.0.0,2025.0,ok,optimal,1802.699754735004,2040.736,7547570289.716072,,,1796.061371088028,3600.0,benchmark-instance-new-pypsa-27,20251227-new-pypsa,2025-12-27 18:58:15.956133,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-dfp-10-3h,gurobi-13.0.0,pypsa-de-elec-dfp -pypsa-de-elec-dfp,10-3h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,490.6244673089968,1603.512,7547570289.8,,,490.6244673089968,3600.0,benchmark-instance-new-pypsa-27,20251227-new-pypsa,2025-12-27 19:32:03.363805,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-dfp-10-3h,highs-hipo-1.12.0-hipo,pypsa-de-elec-dfp -pypsa-de-elec-dfp,10-3h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,2444.0271068209986,1150.592,7547570289.7,,,2444.0271068209986,3600.0,benchmark-instance-new-pypsa-27,20251227-new-pypsa,2025-12-27 19:40:14.740689,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-dfp-10-3h,highs-ipx-1.12.0-hipo,pypsa-de-elec-dfp -pypsa-de-elec-dfp,10-3h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1361.16,,,,3600.0,3600.0,benchmark-instance-new-pypsa-27,20251227-new-pypsa,2025-12-27 20:20:59.517463,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-dfp-10-3h,highs-1.12.0,pypsa-de-elec-dfp -pypsa-de-elec-dfp,10-3h,scip,10.0.0,2025.0,TO,Timeout,3600.0,5275.492,,,,3600.0,3600.0,benchmark-instance-new-pypsa-27,20251227-new-pypsa,2025-12-27 21:24:47.804227,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-dfp-10-3h,scip-10.0.0,pypsa-de-elec-dfp -pypsa-de-elec-trex_copt-dfp,50-3h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,1356.088,,,,86400.0,86400.0,benchmark-instance-new-pypsa-10,20251227-new-pypsa,2025-12-27 07:45:52.453213,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-dfp-50-3h,cbc-2.10.12,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,50-3h,gurobi,13.0.0,2025.0,ok,optimal,634.8138213979983,10722.82,7431205668.065031,,,608.9049220085144,86400.0,benchmark-instance-new-pypsa-10,20251227-new-pypsa,2025-12-28 07:50:09.420751,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-dfp-50-3h,gurobi-13.0.0,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,50-3h,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,86400.0,163.328,,,,86400.0,86400.0,benchmark-instance-new-pypsa-10,20251227-new-pypsa,2025-12-28 08:04:51.413226,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-dfp-50-3h,highs-hipo-1.12.0-hipo,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,50-3h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,86400.0,164.348,,,,86400.0,86400.0,benchmark-instance-new-pypsa-10,20251227-new-pypsa,2025-12-29 08:08:31.221771,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-dfp-50-3h,highs-ipx-1.12.0-hipo,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,50-3h,highs,1.12.0,2025.0,TO,Timeout,86400.0,5106.308,,,,86400.0,86400.0,benchmark-instance-new-pypsa-10,20251227-new-pypsa,2025-12-30 08:11:59.448171,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-dfp-50-3h,highs-1.12.0,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,50-3h,scip,10.0.0,2025.0,TO,Timeout,86400.0,23869.664,,,,86400.0,86400.0,benchmark-instance-new-pypsa-10,20251227-new-pypsa,2025-12-31 08:15:31.474931,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-dfp-50-3h,scip-10.0.0,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_vopt-dfp,20-1h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,1742.248,,,,86400.0,86400.0,benchmark-instance-new-pypsa-01,20251227-new-pypsa,2025-12-27 07:53:40.033157,c4-highmem-16,us-east1-b,305f3ff,pypsa-de-elec-trex_vopt-dfp-20-1h,cbc-2.10.12,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,20-1h,gurobi,13.0.0,2025.0,ok,optimal,1129.7322427190084,14097.74,7559817261.457777,,,1098.7759499549866,86400.0,benchmark-instance-new-pypsa-01,20251227-new-pypsa,2025-12-28 07:57:20.868267,c4-highmem-16,us-east1-b,305f3ff,pypsa-de-elec-trex_vopt-dfp-20-1h,gurobi-13.0.0,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,20-1h,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,86400.0,163.372,,,,86400.0,86400.0,benchmark-instance-new-pypsa-01,20251227-new-pypsa,2025-12-28 08:19:56.558979,c4-highmem-16,us-east1-b,305f3ff,pypsa-de-elec-trex_vopt-dfp-20-1h,highs-hipo-1.12.0-hipo,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,20-1h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,86400.0,163.868,,,,86400.0,86400.0,benchmark-instance-new-pypsa-01,20251227-new-pypsa,2025-12-29 08:23:10.185361,c4-highmem-16,us-east1-b,305f3ff,pypsa-de-elec-trex_vopt-dfp-20-1h,highs-ipx-1.12.0-hipo,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,20-1h,highs,1.12.0,2025.0,TO,Timeout,86400.0,6477.252,,,,86400.0,86400.0,benchmark-instance-new-pypsa-01,20251227-new-pypsa,2025-12-30 08:26:25.086006,c4-highmem-16,us-east1-b,305f3ff,pypsa-de-elec-trex_vopt-dfp-20-1h,highs-1.12.0,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,20-1h,scip,10.0.0,2025.0,TO,Timeout,86400.0,30653.232,,,,86400.0,86400.0,benchmark-instance-new-pypsa-01,20251227-new-pypsa,2025-12-31 08:29:45.150103,c4-highmem-16,us-east1-b,305f3ff,pypsa-de-elec-trex_vopt-dfp-20-1h,scip-10.0.0,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec,20-1h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,1749.444,,,,86400.0,86400.0,benchmark-instance-new-pypsa-06,20251227-new-pypsa,2025-12-27 07:46:30.819769,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-20-1h,cbc-2.10.12,pypsa-de-elec -pypsa-de-elec,20-1h,gurobi,13.0.0,2025.0,ok,optimal,656.0546303599986,12030.188,5687524467.5891,,,622.0128829479218,86400.0,benchmark-instance-new-pypsa-06,20251227-new-pypsa,2025-12-28 07:50:38.834922,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-20-1h,gurobi-13.0.0,pypsa-de-elec -pypsa-de-elec,20-1h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,7886.210970529006,9673.528,5687524467.6,,,7886.210970529006,86400.0,benchmark-instance-new-pypsa-06,20251227-new-pypsa,2025-12-28 08:05:41.444047,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-20-1h,highs-hipo-1.12.0-hipo,pypsa-de-elec -pypsa-de-elec,20-1h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,86400.0,163.024,,,,86400.0,86400.0,benchmark-instance-new-pypsa-06,20251227-new-pypsa,2025-12-28 10:20:39.258502,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-20-1h,highs-ipx-1.12.0-hipo,pypsa-de-elec -pypsa-de-elec,20-1h,highs,1.12.0,2025.0,TO,Timeout,86400.0,6315.552,,,,86400.0,86400.0,benchmark-instance-new-pypsa-06,20251227-new-pypsa,2025-12-29 10:24:14.146077,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-20-1h,highs-1.12.0,pypsa-de-elec -pypsa-de-elec,20-1h,scip,10.0.0,2025.0,TO,Timeout,86400.0,27763.64,,,,86400.0,86400.0,benchmark-instance-new-pypsa-06,20251227-new-pypsa,2025-12-30 10:27:55.899709,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-20-1h,scip-10.0.0,pypsa-de-elec -pypsa-eur-elec,100-12h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,841.284,,,,86400.0,86400.0,benchmark-instance-new-pypsa-20,20251227-new-pypsa,2025-12-27 07:46:13.947818,c4-highmem-16,us-central1-a,305f3ff,pypsa-eur-elec-100-12h,cbc-2.10.12,pypsa-eur-elec -pypsa-eur-elec,100-12h,gurobi,13.0.0,2025.0,ok,optimal,3128.30503672699,6225.172,32574498573.12773,,,3113.294273853302,86400.0,benchmark-instance-new-pypsa-20,20251227-new-pypsa,2025-12-28 07:50:26.821600,c4-highmem-16,us-central1-a,305f3ff,pypsa-eur-elec-100-12h,gurobi-13.0.0,pypsa-eur-elec -pypsa-eur-elec,100-12h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,4825.267783032003,14019.588,32574498575.0,,,4825.267783032003,86400.0,benchmark-instance-new-pypsa-20,20251227-new-pypsa,2025-12-28 08:46:26.363331,c4-highmem-16,us-central1-a,305f3ff,pypsa-eur-elec-100-12h,highs-hipo-1.12.0-hipo,pypsa-eur-elec -pypsa-eur-elec,100-12h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,18664.001028397997,2734.428,32574498576.0,,,18664.001028397997,86400.0,benchmark-instance-new-pypsa-20,20251227-new-pypsa,2025-12-28 10:10:23.552070,c4-highmem-16,us-central1-a,305f3ff,pypsa-eur-elec-100-12h,highs-ipx-1.12.0-hipo,pypsa-eur-elec -pypsa-eur-elec,100-12h,highs,1.12.0,2025.0,TO,Timeout,86400.0,3524.456,,,,86400.0,86400.0,benchmark-instance-new-pypsa-20,20251227-new-pypsa,2025-12-28 15:24:58.838558,c4-highmem-16,us-central1-a,305f3ff,pypsa-eur-elec-100-12h,highs-1.12.0,pypsa-eur-elec -pypsa-eur-elec,100-12h,scip,10.0.0,2025.0,ER,,,17158.412,,,,,86400.0,benchmark-instance-new-pypsa-20,20251227-new-pypsa,2025-12-29 15:28:33.710635,c4-highmem-16,us-central1-a,305f3ff,pypsa-eur-elec-100-12h,scip-10.0.0,pypsa-eur-elec -pypsa-de-elec-trex_copt,10-1h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,1015.628,,,,86400.0,86400.0,benchmark-instance-new-pypsa-17,20251227-new-pypsa,2025-12-27 07:45:53.871962,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-10-1h,cbc-2.10.12,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,10-1h,gurobi,13.0.0,2025.0,ok,optimal,600.7057695599942,7698.084,7574758600.977137,,,582.5433790683746,86400.0,benchmark-instance-new-pypsa-17,20251227-new-pypsa,2025-12-28 07:49:56.034151,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-10-1h,gurobi-13.0.0,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,10-1h,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,86400.0,164.204,,,,86400.0,86400.0,benchmark-instance-new-pypsa-17,20251227-new-pypsa,2025-12-28 08:03:46.391926,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-10-1h,highs-hipo-1.12.0-hipo,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,10-1h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,86400.0,163.644,,,,86400.0,86400.0,benchmark-instance-new-pypsa-17,20251227-new-pypsa,2025-12-29 08:07:19.160625,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-10-1h,highs-ipx-1.12.0-hipo,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,10-1h,highs,1.12.0,2025.0,TO,Timeout,86400.0,3777.132,,,,86400.0,86400.0,benchmark-instance-new-pypsa-17,20251227-new-pypsa,2025-12-30 08:10:52.381290,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-10-1h,highs-1.12.0,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,10-1h,scip,10.0.0,2025.0,TO,Timeout,86400.0,17469.424,,,,86400.0,86400.0,benchmark-instance-new-pypsa-17,20251227-new-pypsa,2025-12-31 08:14:20.723364,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-10-1h,scip-10.0.0,pypsa-de-elec-trex_copt -pypsa-de-elec-dfp,50-3h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,1366.908,,,,86400.0,86400.0,benchmark-instance-new-pypsa-12,20251227-new-pypsa,2025-12-27 07:45:48.029029,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-dfp-50-3h,cbc-2.10.12,pypsa-de-elec-dfp -pypsa-de-elec-dfp,50-3h,gurobi,13.0.0,2025.0,ok,optimal,337.5526760920038,9767.764,7538244541.982296,,,311.10126209259033,86400.0,benchmark-instance-new-pypsa-12,20251227-new-pypsa,2025-12-28 07:50:02.239715,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-dfp-50-3h,gurobi-13.0.0,pypsa-de-elec-dfp -pypsa-de-elec-dfp,50-3h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,8520.903523344998,7999.144,7538244542.0,,,8520.903523344998,86400.0,benchmark-instance-new-pypsa-12,20251227-new-pypsa,2025-12-28 07:59:47.843654,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-dfp-50-3h,highs-hipo-1.12.0-hipo,pypsa-de-elec-dfp -pypsa-de-elec-dfp,50-3h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,63416.69015321901,4911.516,7538244542.0,,,63416.69015321901,86400.0,benchmark-instance-new-pypsa-12,20251227-new-pypsa,2025-12-28 10:25:21.496835,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-dfp-50-3h,highs-ipx-1.12.0-hipo,pypsa-de-elec-dfp -pypsa-de-elec-dfp,50-3h,highs,1.12.0,2025.0,TO,Timeout,86400.0,4835.32,,,,86400.0,86400.0,benchmark-instance-new-pypsa-12,20251227-new-pypsa,2025-12-29 04:05:59.227289,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-dfp-50-3h,highs-1.12.0,pypsa-de-elec-dfp -pypsa-de-elec-dfp,50-3h,scip,10.0.0,2025.0,TO,Timeout,86400.0,21614.26,,,,86400.0,86400.0,benchmark-instance-new-pypsa-12,20251227-new-pypsa,2025-12-30 04:09:29.656945,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-dfp-50-3h,scip-10.0.0,pypsa-de-elec-dfp -pypsa-de-elec-trex_copt-dfp,10-3h,glpk,5.0,2020.0,TO,Timeout,3600.0,415.264,,,,3600.0,3600.0,benchmark-instance-new-pypsa-25,20251227-new-pypsa,2025-12-27 07:44:13.152392,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-dfp-10-3h,glpk-5.0,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,10-3h,gurobi,10.0.0,2022.0,ok,optimal,845.044507093,2099.044,7543506567.31576,,,837.3354268074036,3600.0,benchmark-instance-new-pypsa-25,20251227-new-pypsa,2025-12-27 08:48:24.461697,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-dfp-10-3h,gurobi-10.0.0,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,10-3h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1724.8,,,,3600.0,3600.0,benchmark-instance-new-pypsa-25,20251227-new-pypsa,2025-12-27 09:06:12.571582,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-dfp-10-3h,highs-1.5.0.dev0,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,10-3h,scip,8.0.3,2022.0,TO,Timeout,3600.0,5833.776,,,,3600.0,3600.0,benchmark-instance-new-pypsa-25,20251227-new-pypsa,2025-12-27 10:09:49.881084,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-dfp-10-3h,scip-8.0.3,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,10-3h,gurobi,11.0.0,2023.0,ok,optimal,760.1178567199986,2038.932,7543506567.315741,,,753.8634669780731,3600.0,benchmark-instance-new-pypsa-25,20251227-new-pypsa,2025-12-27 11:16:55.709450,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-dfp-10-3h,gurobi-11.0.0,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,10-3h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,1516.72,,,,3600.0,3600.0,benchmark-instance-new-pypsa-25,20251227-new-pypsa,2025-12-27 11:33:15.843892,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-dfp-10-3h,highs-1.6.0.dev0,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,10-3h,scip,8.1.0,2023.0,TO,Timeout,3600.0,5850.908,,,,3600.0,3600.0,benchmark-instance-new-pypsa-25,20251227-new-pypsa,2025-12-27 12:36:51.507361,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-dfp-10-3h,scip-8.1.0,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,10-3h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,445.872,,,,3600.0,3600.0,benchmark-instance-new-pypsa-25,20251227-new-pypsa,2025-12-27 13:40:28.602335,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-dfp-10-3h,cbc-2.10.11,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,10-3h,gurobi,12.0.0,2024.0,ok,optimal,1307.289218648002,2031.476,7543506567.315691,,,1301.0400331020355,3600.0,benchmark-instance-new-pypsa-25,20251227-new-pypsa,2025-12-27 14:44:34.006749,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-dfp-10-3h,gurobi-12.0.0,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,10-3h,highs,1.9.0,2024.0,TO,Timeout,3600.0,1584.28,,,,3600.0,3600.0,benchmark-instance-new-pypsa-25,20251227-new-pypsa,2025-12-27 15:10:05.348753,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-dfp-10-3h,highs-1.9.0,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,10-3h,scip,9.2.0,2024.0,TO,Timeout,3600.0,5854.152,,,,3600.0,3600.0,benchmark-instance-new-pypsa-25,20251227-new-pypsa,2025-12-27 16:13:42.718409,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-dfp-10-3h,scip-9.2.0,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,10-3h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,428.812,,,,3600.0,3600.0,benchmark-instance-new-pypsa-25,20251227-new-pypsa,2025-12-27 17:17:21.611002,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-dfp-10-3h,cbc-2.10.12,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,10-3h,gurobi,13.0.0,2025.0,ok,optimal,1384.192210885005,2052.668,7543506567.315668,,,1378.0421838760376,3600.0,benchmark-instance-new-pypsa-25,20251227-new-pypsa,2025-12-27 18:21:26.115857,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-dfp-10-3h,gurobi-13.0.0,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,10-3h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,540.994438709,1954.02,7543506567.3,,,540.994438709,3600.0,benchmark-instance-new-pypsa-25,20251227-new-pypsa,2025-12-27 18:48:11.399944,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-dfp-10-3h,highs-hipo-1.12.0-hipo,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,10-3h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,3600.0,163.848,,,,3600.0,3600.0,benchmark-instance-new-pypsa-25,20251227-new-pypsa,2025-12-27 18:57:13.141343,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-dfp-10-3h,highs-ipx-1.12.0-hipo,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,10-3h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1549.848,,,,3600.0,3600.0,benchmark-instance-new-pypsa-25,20251227-new-pypsa,2025-12-27 20:00:50.528560,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-dfp-10-3h,highs-1.12.0,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,10-3h,scip,10.0.0,2025.0,TO,Timeout,3600.0,5863.656,,,,3600.0,3600.0,benchmark-instance-new-pypsa-25,20251227-new-pypsa,2025-12-27 21:04:27.341645,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-dfp-10-3h,scip-10.0.0,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,20-1h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,1742.468,,,,86400.0,86400.0,benchmark-instance-new-pypsa-03,20251227-new-pypsa,2025-12-27 07:54:06.381751,c4-highmem-16,us-east1-b,305f3ff,pypsa-de-elec-trex_copt-dfp-20-1h,cbc-2.10.12,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,20-1h,gurobi,13.0.0,2025.0,ok,optimal,1113.1540554120002,14167.196,7559773523.414247,,,1081.3874509334564,86400.0,benchmark-instance-new-pypsa-03,20251227-new-pypsa,2025-12-28 07:57:44.503970,c4-highmem-16,us-east1-b,305f3ff,pypsa-de-elec-trex_copt-dfp-20-1h,gurobi-13.0.0,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,20-1h,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,86400.0,164.232,,,,86400.0,86400.0,benchmark-instance-new-pypsa-03,20251227-new-pypsa,2025-12-28 08:20:08.058843,c4-highmem-16,us-east1-b,305f3ff,pypsa-de-elec-trex_copt-dfp-20-1h,highs-hipo-1.12.0-hipo,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,20-1h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,86400.0,162.996,,,,86400.0,86400.0,benchmark-instance-new-pypsa-03,20251227-new-pypsa,2025-12-29 08:23:29.060818,c4-highmem-16,us-east1-b,305f3ff,pypsa-de-elec-trex_copt-dfp-20-1h,highs-ipx-1.12.0-hipo,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,20-1h,highs,1.12.0,2025.0,TO,Timeout,86400.0,6467.876,,,,86400.0,86400.0,benchmark-instance-new-pypsa-03,20251227-new-pypsa,2025-12-30 08:26:52.391280,c4-highmem-16,us-east1-b,305f3ff,pypsa-de-elec-trex_copt-dfp-20-1h,highs-1.12.0,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,20-1h,scip,10.0.0,2025.0,TO,Timeout,86400.0,30567.264,,,,86400.0,86400.0,benchmark-instance-new-pypsa-03,20251227-new-pypsa,2025-12-31 08:30:16.240158,c4-highmem-16,us-east1-b,305f3ff,pypsa-de-elec-trex_copt-dfp-20-1h,scip-10.0.0,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec,10-3h,glpk,5.0,2020.0,TO,Timeout,3600.0,415.388,,,,3600.0,3600.0,benchmark-instance-new-pypsa-28,20251227-new-pypsa,2025-12-27 07:44:12.227872,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-10-3h,glpk-5.0,pypsa-de-elec -pypsa-de-elec,10-3h,gurobi,10.0.0,2022.0,ok,optimal,1518.5415935190003,2047.172,5588501780.18354,,,1510.7062170505524,3600.0,benchmark-instance-new-pypsa-28,20251227-new-pypsa,2025-12-27 08:48:24.620409,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-10-3h,gurobi-10.0.0,pypsa-de-elec -pypsa-de-elec,10-3h,highs,1.5.0.dev0,2022.0,ok,optimal,3254.447021516001,2283.312,5588501780.18354,,,3246.096278429032,3600.0,benchmark-instance-new-pypsa-28,20251227-new-pypsa,2025-12-27 09:17:23.199785,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-10-3h,highs-1.5.0.dev0,pypsa-de-elec -pypsa-de-elec,10-3h,scip,8.0.3,2022.0,TO,Timeout,3600.0,5234.068,,,,3600.0,3600.0,benchmark-instance-new-pypsa-28,20251227-new-pypsa,2025-12-27 10:11:45.448477,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-10-3h,scip-8.0.3,pypsa-de-elec -pypsa-de-elec,10-3h,gurobi,11.0.0,2023.0,ok,optimal,819.6053401810004,1986.12,5588501780.183531,,,813.4969561100006,3600.0,benchmark-instance-new-pypsa-28,20251227-new-pypsa,2025-12-27 11:18:39.237101,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-10-3h,gurobi-11.0.0,pypsa-de-elec -pypsa-de-elec,10-3h,highs,1.6.0.dev0,2023.0,ok,optimal,3147.7450729970005,2249.492,5588501780.18354,,,3141.946448326111,3600.0,benchmark-instance-new-pypsa-28,20251227-new-pypsa,2025-12-27 11:35:58.481465,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-10-3h,highs-1.6.0.dev0,pypsa-de-elec -pypsa-de-elec,10-3h,scip,8.1.0,2023.0,TO,Timeout,3600.0,5249.064,,,,3600.0,3600.0,benchmark-instance-new-pypsa-28,20251227-new-pypsa,2025-12-27 12:28:30.699514,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-10-3h,scip-8.1.0,pypsa-de-elec -pypsa-de-elec,10-3h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,446.416,,,,3600.0,3600.0,benchmark-instance-new-pypsa-28,20251227-new-pypsa,2025-12-27 13:32:13.741042,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-10-3h,cbc-2.10.11,pypsa-de-elec -pypsa-de-elec,10-3h,gurobi,12.0.0,2024.0,ok,optimal,714.6875555160004,2022.704,5588501780.183533,,,708.0701150894165,3600.0,benchmark-instance-new-pypsa-28,20251227-new-pypsa,2025-12-27 14:36:27.609724,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-10-3h,gurobi-12.0.0,pypsa-de-elec -pypsa-de-elec,10-3h,highs,1.9.0,2024.0,ok,optimal,1678.788813866002,2166.004,5588501780.183577,,,1668.590735912323,3600.0,benchmark-instance-new-pypsa-28,20251227-new-pypsa,2025-12-27 14:52:22.237330,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-10-3h,highs-1.9.0,pypsa-de-elec -pypsa-de-elec,10-3h,scip,9.2.0,2024.0,TO,Timeout,3600.0,5230.648,,,,3600.0,3600.0,benchmark-instance-new-pypsa-28,20251227-new-pypsa,2025-12-27 15:20:32.256352,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-10-3h,scip-9.2.0,pypsa-de-elec -pypsa-de-elec,10-3h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,429.452,,,,3600.0,3600.0,benchmark-instance-new-pypsa-28,20251227-new-pypsa,2025-12-27 16:24:18.113820,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-10-3h,cbc-2.10.12,pypsa-de-elec -pypsa-de-elec,10-3h,gurobi,13.0.0,2025.0,ok,optimal,1067.3663923450003,2036.396,5588501780.183527,,,1060.9421660900116,3600.0,benchmark-instance-new-pypsa-28,20251227-new-pypsa,2025-12-27 17:28:33.540730,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-10-3h,gurobi-13.0.0,pypsa-de-elec -pypsa-de-elec,10-3h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,369.8622583690012,1600.796,5588501780.3,,,369.8622583690012,3600.0,benchmark-instance-new-pypsa-28,20251227-new-pypsa,2025-12-27 17:50:09.002966,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-10-3h,highs-hipo-1.12.0-hipo,pypsa-de-elec -pypsa-de-elec,10-3h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,1917.7374094050028,1367.416,5588501780.3,,,1917.7374094050028,3600.0,benchmark-instance-new-pypsa-28,20251227-new-pypsa,2025-12-27 17:56:19.658398,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-10-3h,highs-ipx-1.12.0-hipo,pypsa-de-elec -pypsa-de-elec,10-3h,highs,1.12.0,2025.0,ok,optimal,1723.4433951399988,2253.656,5588501780.1835575,,,1716.5741188526154,3600.0,benchmark-instance-new-pypsa-28,20251227-new-pypsa,2025-12-27 18:28:18.164816,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-10-3h,highs-1.12.0,pypsa-de-elec -pypsa-de-elec,10-3h,scip,10.0.0,2025.0,TO,Timeout,3600.0,5237.088,,,,3600.0,3600.0,benchmark-instance-new-pypsa-28,20251227-new-pypsa,2025-12-27 19:00:49.662913,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-10-3h,scip-10.0.0,pypsa-de-elec -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,145.832,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 08:50:39.011892,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332 -pglib_opf_case162_ieee_dtc,162-NA,glpk,5.0,2020.0,TO,Timeout,3600.0,122.408,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 09:54:25.833156,c4-standard-2,us-central1-a,305f3ff,pglib_opf_case162_ieee_dtc-162-NA,glpk-5.0,pglib_opf_case162_ieee_dtc -SWITCH-planning-reserves,3-6ts,glpk,5.0,2020.0,ER,,,125.108,,,,,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 10:58:12.202636,c4-standard-2,us-central1-a,305f3ff,SWITCH-planning-reserves-3-6ts,glpk-5.0,SWITCH-planning-reserves -OEMOF-house-without-nonconvex-investment,1-365ts,glpk,5.0,2020.0,TO,Timeout,3600.0,122.996,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 10:58:12.721276,c4-standard-2,us-central1-a,305f3ff,OEMOF-house-without-nonconvex-investment-1-365ts,glpk-5.0,OEMOF-house-without-nonconvex-investment -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,125.516,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 12:01:59.624718,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29 -tulipa-1_EU_investment_simple,28-13h,glpk,5.0,2020.0,ok,unknown,351.35213184299937,282.144,1191044225.0,,,,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 13:05:45.648257,c4-standard-2,us-central1-a,305f3ff,tulipa-1_EU_investment_simple-28-13h,glpk-5.0,tulipa-1_EU_investment_simple -genx-3_three_zones_w_co2_capture-no_uc,3-1h,glpk,5.0,2020.0,ok,optimal,183.5365734740008,254.132,6371.601825,,,,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 13:11:37.508131,c4-standard-2,us-central1-a,305f3ff,genx-3_three_zones_w_co2_capture-no_uc-3-1h,glpk-5.0,genx-3_three_zones_w_co2_capture-no_uc -times-etimeseu-france-elec+heat-co2-multi_stage,1-64ts,glpk,5.0,2020.0,warning,unknown,0.0305231689999345,167.592,,,,,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 13:14:41.565395,c4-standard-2,us-central1-a,305f3ff,times-etimeseu-france-elec+heat-co2-multi_stage-1-64ts,glpk-5.0,times-etimeseu-france-elec+heat-co2-multi_stage -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332,73-1h,gurobi,10.0.0,2022.0,TO,Timeout,3600.0,647.62,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 13:15:23.548227,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332,73-1h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,973.944,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 14:19:06.872894,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332,73-1h,scip,8.0.3,2022.0,TO,Timeout,3600.0,1457.172,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 15:22:47.497469,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332 -pglib_opf_case162_ieee_dtc,162-NA,gurobi,10.0.0,2022.0,ok,optimal,70.70870240500153,185.504,97703.85568543524,,,70.38848304748535,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 16:26:19.196237,c4-standard-2,us-central1-a,305f3ff,pglib_opf_case162_ieee_dtc-162-NA,gurobi-10.0.0,pglib_opf_case162_ieee_dtc -pglib_opf_case162_ieee_dtc,162-NA,highs,1.5.0.dev0,2022.0,warning,infeasible,1084.419532691998,218.816,,,,1084.4097211360931,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 16:27:30.533092,c4-standard-2,us-central1-a,305f3ff,pglib_opf_case162_ieee_dtc-162-NA,highs-1.5.0.dev0,pglib_opf_case162_ieee_dtc -pglib_opf_case162_ieee_dtc,162-NA,scip,8.0.3,2022.0,TO,Timeout,3600.0,627.1,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 16:45:35.579826,c4-standard-2,us-central1-a,305f3ff,pglib_opf_case162_ieee_dtc-162-NA,scip-8.0.3,pglib_opf_case162_ieee_dtc -SWITCH-planning-reserves,3-6ts,gurobi,10.0.0,2022.0,ok,optimal,0.3159273179990123,159.456,135901915.10941112,,,0.005976915359497,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 17:49:47.835520,c4-standard-2,us-central1-a,305f3ff,SWITCH-planning-reserves-3-6ts,gurobi-10.0.0,SWITCH-planning-reserves -SWITCH-planning-reserves,3-6ts,highs,1.5.0.dev0,2022.0,ok,optimal,0.0105676499988476,148.388,135901915.10941112,,,0.0035021305084228,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 17:49:48.793039,c4-standard-2,us-central1-a,305f3ff,SWITCH-planning-reserves-3-6ts,highs-1.5.0.dev0,SWITCH-planning-reserves -SWITCH-planning-reserves,3-6ts,scip,8.0.3,2022.0,ok,optimal,0.0204318340001918,162.192,135901915.10941115,,,0.0115959999999999,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 17:49:49.437833,c4-standard-2,us-central1-a,305f3ff,SWITCH-planning-reserves-3-6ts,scip-8.0.3,SWITCH-planning-reserves -OEMOF-house-without-nonconvex-investment,1-365ts,gurobi,10.0.0,2022.0,ok,optimal,1.4450012010020146,166.204,5544.6786027555645,,,1.4259209632873535,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 17:49:50.094856,c4-standard-2,us-central1-a,305f3ff,OEMOF-house-without-nonconvex-investment-1-365ts,gurobi-10.0.0,OEMOF-house-without-nonconvex-investment -OEMOF-house-without-nonconvex-investment,1-365ts,highs,1.5.0.dev0,2022.0,ok,optimal,1.2608567140014202,172.852,5544.6786027555645,,,1.2430157661437988,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 17:49:52.195672,c4-standard-2,us-central1-a,305f3ff,OEMOF-house-without-nonconvex-investment-1-365ts,highs-1.5.0.dev0,OEMOF-house-without-nonconvex-investment -OEMOF-house-without-nonconvex-investment,1-365ts,scip,8.0.3,2022.0,ok,optimal,2674.2500486850004,306.132,5544.678602755559,,,2674.226218,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 17:49:54.110478,c4-standard-2,us-central1-a,305f3ff,OEMOF-house-without-nonconvex-investment-1-365ts,scip-8.0.3,OEMOF-house-without-nonconvex-investment -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29,73-1h,gurobi,10.0.0,2022.0,ok,optimal,5.560446960997069,193.4,316166.1922811257,,,5.223098039627075,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 18:34:29.015361,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29,73-1h,highs,1.5.0.dev0,2022.0,ok,optimal,72.35034419899603,377.228,316166.1922811258,,,72.29968047142029,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 18:34:35.258787,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29,73-1h,scip,8.0.3,2022.0,ok,optimal,67.24422724600299,365.576,316166.1922811258,,,67.201038,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 18:35:48.284100,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29 -tulipa-1_EU_investment_simple,28-13h,gurobi,10.0.0,2022.0,ok,optimal,10.257649787003174,575.64,1201109872.6358657,,,9.637546062469482,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 18:36:56.253109,c4-standard-2,us-central1-a,305f3ff,tulipa-1_EU_investment_simple-28-13h,gurobi-10.0.0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-13h,highs,1.5.0.dev0,2022.0,ok,optimal,111.46874551699877,1806.852,1201065322.6590817,,,110.50428438186646,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 18:37:07.962218,c4-standard-2,us-central1-a,305f3ff,tulipa-1_EU_investment_simple-28-13h,highs-1.5.0.dev0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-13h,scip,8.0.3,2022.0,ok,optimal,99.34918746100448,1534.272,1201153267.0010223,,,98.11609,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 18:39:00.889891,c4-standard-2,us-central1-a,305f3ff,tulipa-1_EU_investment_simple-28-13h,scip-8.0.3,tulipa-1_EU_investment_simple -genx-3_three_zones_w_co2_capture-no_uc,3-1h,gurobi,10.0.0,2022.0,ok,optimal,12.231587995003792,443.628,6371.601824921134,,,11.026207208633425,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 18:40:41.953914,c4-standard-2,us-central1-a,305f3ff,genx-3_three_zones_w_co2_capture-no_uc-3-1h,gurobi-10.0.0,genx-3_three_zones_w_co2_capture-no_uc -genx-3_three_zones_w_co2_capture-no_uc,3-1h,highs,1.5.0.dev0,2022.0,ok,optimal,53.90097429999878,488.46,6371.601824921261,,,53.02526116371155,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 18:40:55.523304,c4-standard-2,us-central1-a,305f3ff,genx-3_three_zones_w_co2_capture-no_uc-3-1h,highs-1.5.0.dev0,genx-3_three_zones_w_co2_capture-no_uc -genx-3_three_zones_w_co2_capture-no_uc,3-1h,scip,8.0.3,2022.0,ok,optimal,136.216793323998,1013.06,6371.601824921385,,,135.441171,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 18:41:50.760606,c4-standard-2,us-central1-a,305f3ff,genx-3_three_zones_w_co2_capture-no_uc-3-1h,scip-8.0.3,genx-3_three_zones_w_co2_capture-no_uc -times-etimeseu-france-elec+heat-co2-multi_stage,1-64ts,gurobi,10.0.0,2022.0,ok,optimal,5.736057112997514,331.66,427842.1201974795,,,5.077528953552246,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 18:44:08.502772,c4-standard-2,us-central1-a,305f3ff,times-etimeseu-france-elec+heat-co2-multi_stage-1-64ts,gurobi-10.0.0,times-etimeseu-france-elec+heat-co2-multi_stage -times-etimeseu-france-elec+heat-co2-multi_stage,1-64ts,highs,1.5.0.dev0,2022.0,ok,optimal,20.71305102000042,362.488,427842.1201974797,,,19.98507046699524,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 18:44:15.434339,c4-standard-2,us-central1-a,305f3ff,times-etimeseu-france-elec+heat-co2-multi_stage-1-64ts,highs-1.5.0.dev0,times-etimeseu-france-elec+heat-co2-multi_stage -times-etimeseu-france-elec+heat-co2-multi_stage,1-64ts,scip,8.0.3,2022.0,ok,optimal,90.4243320339956,1858.504,427842.1201974794,,,89.722887,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 18:44:37.330475,c4-standard-2,us-central1-a,305f3ff,times-etimeseu-france-elec+heat-co2-multi_stage-1-64ts,scip-8.0.3,times-etimeseu-france-elec+heat-co2-multi_stage -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332,73-1h,gurobi,11.0.0,2023.0,TO,Timeout,3600.0,636.564,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 18:53:12.383261,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332,73-1h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,1014.808,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 19:57:03.166287,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332,73-1h,scip,8.1.0,2023.0,TO,Timeout,3600.0,1521.252,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 21:00:36.662051,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332,73-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,177.32,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 22:04:06.779509,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332 -pglib_opf_case162_ieee_dtc,162-NA,gurobi,11.0.0,2023.0,ok,optimal,41.545159887005866,184.32,97701.26756135892,,,41.28594708442688,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 23:07:39.281734,c4-standard-2,us-central1-a,305f3ff,pglib_opf_case162_ieee_dtc-162-NA,gurobi-11.0.0,pglib_opf_case162_ieee_dtc -pglib_opf_case162_ieee_dtc,162-NA,highs,1.6.0.dev0,2023.0,warning,infeasible,1203.754954801996,229.376,,,,1203.748726129532,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 23:08:21.564565,c4-standard-2,us-central1-a,305f3ff,pglib_opf_case162_ieee_dtc-162-NA,highs-1.6.0.dev0,pglib_opf_case162_ieee_dtc -pglib_opf_case162_ieee_dtc,162-NA,scip,8.1.0,2023.0,TO,Timeout,3600.0,641.608,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 23:28:26.044728,c4-standard-2,us-central1-a,305f3ff,pglib_opf_case162_ieee_dtc-162-NA,scip-8.1.0,pglib_opf_case162_ieee_dtc -pglib_opf_case162_ieee_dtc,162-NA,cbc,2.10.11,2023.0,TO,Timeout,3600.0,154.364,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 00:31:55.703161,c4-standard-2,us-central1-a,305f3ff,pglib_opf_case162_ieee_dtc-162-NA,cbc-2.10.11,pglib_opf_case162_ieee_dtc -SWITCH-planning-reserves,3-6ts,gurobi,11.0.0,2023.0,ok,optimal,0.2567802240009769,169.096,135901915.10941112,,,0.0056791305541992,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 01:35:26.035083,c4-standard-2,us-central1-a,305f3ff,SWITCH-planning-reserves-3-6ts,gurobi-11.0.0,SWITCH-planning-reserves -SWITCH-planning-reserves,3-6ts,highs,1.6.0.dev0,2023.0,ok,optimal,0.0100027529988437,159.008,135901915.10941112,,,0.0036525726318359,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 01:35:27.036794,c4-standard-2,us-central1-a,305f3ff,SWITCH-planning-reserves-3-6ts,highs-1.6.0.dev0,SWITCH-planning-reserves -SWITCH-planning-reserves,3-6ts,scip,8.1.0,2023.0,ok,optimal,0.0192822850003722,172.616,135901915.10941115,,,0.011411,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 01:35:27.773862,c4-standard-2,us-central1-a,305f3ff,SWITCH-planning-reserves-3-6ts,scip-8.1.0,SWITCH-planning-reserves -SWITCH-planning-reserves,3-6ts,cbc,2.10.11,2023.0,ok,optimal,0.0494315210016793,157.072,135901915.10941112,,,0.03,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 01:35:28.534320,c4-standard-2,us-central1-a,305f3ff,SWITCH-planning-reserves-3-6ts,cbc-2.10.11,SWITCH-planning-reserves -OEMOF-house-without-nonconvex-investment,1-365ts,gurobi,11.0.0,2023.0,ok,optimal,0.606622385996161,173.616,5544.678602755564,,,0.5920908451080322,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 01:35:29.306873,c4-standard-2,us-central1-a,305f3ff,OEMOF-house-without-nonconvex-investment-1-365ts,gurobi-11.0.0,OEMOF-house-without-nonconvex-investment -OEMOF-house-without-nonconvex-investment,1-365ts,highs,1.6.0.dev0,2023.0,ok,optimal,1.2555787329984014,184.696,5544.6786027555645,,,1.238245725631714,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 01:35:30.648835,c4-standard-2,us-central1-a,305f3ff,OEMOF-house-without-nonconvex-investment-1-365ts,highs-1.6.0.dev0,OEMOF-house-without-nonconvex-investment -OEMOF-house-without-nonconvex-investment,1-365ts,scip,8.1.0,2023.0,ok,optimal,2656.1283029900005,312.144,5544.678602755559,,,2656.106524,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 01:35:32.666669,c4-standard-2,us-central1-a,305f3ff,OEMOF-house-without-nonconvex-investment-1-365ts,scip-8.1.0,OEMOF-house-without-nonconvex-investment -OEMOF-house-without-nonconvex-investment,1-365ts,cbc,2.10.11,2023.0,ok,optimal,393.3393381900023,159.684,5544.67860276,,,393.3,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 02:19:49.531750,c4-standard-2,us-central1-a,305f3ff,OEMOF-house-without-nonconvex-investment-1-365ts,cbc-2.10.11,OEMOF-house-without-nonconvex-investment -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29,73-1h,gurobi,11.0.0,2023.0,ok,optimal,6.095935992001614,200.188,316166.19228112587,,,4.448256969451904,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 02:26:23.603693,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29,73-1h,highs,1.6.0.dev0,2023.0,ok,optimal,67.02957998700003,383.356,316166.1922811258,,,66.99979138374329,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 02:26:30.452067,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29,73-1h,scip,8.1.0,2023.0,ok,optimal,63.43979724500241,381.812,316166.1922811258,,,63.398235,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 02:27:38.228018,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29,73-1h,cbc,2.10.11,2023.0,ok,optimal,2356.058823377003,159.584,316166.19228113,,,2356.01,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 02:28:42.447161,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29 -tulipa-1_EU_investment_simple,28-13h,gurobi,11.0.0,2023.0,ok,optimal,6.3947615360084455,578.328,1201107611.7220223,,,5.67854905128479,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 03:11:29.145249,c4-standard-2,us-central1-a,305f3ff,tulipa-1_EU_investment_simple-28-13h,gurobi-11.0.0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-13h,highs,1.6.0.dev0,2023.0,ok,optimal,99.23825413700251,1900.74,1201065322.6590817,,,98.62405204772948,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 03:11:36.736617,c4-standard-2,us-central1-a,305f3ff,tulipa-1_EU_investment_simple-28-13h,highs-1.6.0.dev0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-13h,scip,8.1.0,2023.0,ok,optimal,95.79687168799865,1476.02,1201153267.0010223,,,94.750048,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 03:13:17.159473,c4-standard-2,us-central1-a,305f3ff,tulipa-1_EU_investment_simple-28-13h,scip-8.1.0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-13h,cbc,2.10.11,2023.0,ok,optimal,239.7106627559988,743.024,1201137235.09714,,,239.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 03:14:54.437561,c4-standard-2,us-central1-a,305f3ff,tulipa-1_EU_investment_simple-28-13h,cbc-2.10.11,tulipa-1_EU_investment_simple -genx-3_three_zones_w_co2_capture-no_uc,3-1h,gurobi,11.0.0,2023.0,ok,optimal,11.430480994997197,444.82,6371.601824921143,,,10.397307872772217,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 03:18:55.271384,c4-standard-2,us-central1-a,305f3ff,genx-3_three_zones_w_co2_capture-no_uc-3-1h,gurobi-11.0.0,genx-3_three_zones_w_co2_capture-no_uc -genx-3_three_zones_w_co2_capture-no_uc,3-1h,highs,1.6.0.dev0,2023.0,ok,optimal,51.92965636099689,496.956,6371.601824921261,,,51.20230460166931,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 03:19:07.996252,c4-standard-2,us-central1-a,305f3ff,genx-3_three_zones_w_co2_capture-no_uc-3-1h,highs-1.6.0.dev0,genx-3_three_zones_w_co2_capture-no_uc -genx-3_three_zones_w_co2_capture-no_uc,3-1h,scip,8.1.0,2023.0,ok,optimal,133.41798753800686,1015.952,6371.601824921385,,,132.776884,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 03:20:01.197697,c4-standard-2,us-central1-a,305f3ff,genx-3_three_zones_w_co2_capture-no_uc-3-1h,scip-8.1.0,genx-3_three_zones_w_co2_capture-no_uc -genx-3_three_zones_w_co2_capture-no_uc,3-1h,cbc,2.10.11,2023.0,ok,optimal,27.16483882599277,300.556,6371.60182492,,,,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 03:22:16.140806,c4-standard-2,us-central1-a,305f3ff,genx-3_three_zones_w_co2_capture-no_uc-3-1h,cbc-2.10.11,genx-3_three_zones_w_co2_capture-no_uc -times-etimeseu-france-elec+heat-co2-multi_stage,1-64ts,gurobi,11.0.0,2023.0,ok,optimal,5.536229065997759,336.084,427842.1201974795,,,5.033726930618286,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 03:22:44.574504,c4-standard-2,us-central1-a,305f3ff,times-etimeseu-france-elec+heat-co2-multi_stage-1-64ts,gurobi-11.0.0,times-etimeseu-france-elec+heat-co2-multi_stage -times-etimeseu-france-elec+heat-co2-multi_stage,1-64ts,highs,1.6.0.dev0,2023.0,ok,optimal,19.83914787400863,386.888,427842.1201974797,,,19.34779691696167,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 03:22:51.170759,c4-standard-2,us-central1-a,305f3ff,times-etimeseu-france-elec+heat-co2-multi_stage-1-64ts,highs-1.6.0.dev0,times-etimeseu-france-elec+heat-co2-multi_stage -times-etimeseu-france-elec+heat-co2-multi_stage,1-64ts,scip,8.1.0,2023.0,ok,optimal,88.40449107300083,1866.124,427842.1201974794,,,87.800358,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 03:23:12.066302,c4-standard-2,us-central1-a,305f3ff,times-etimeseu-france-elec+heat-co2-multi_stage-1-64ts,scip-8.1.0,times-etimeseu-france-elec+heat-co2-multi_stage -times-etimeseu-france-elec+heat-co2-multi_stage,1-64ts,cbc,2.10.11,2023.0,ER,,,199.228,,,,,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 03:24:41.773287,c4-standard-2,us-central1-a,305f3ff,times-etimeseu-france-elec+heat-co2-multi_stage-1-64ts,cbc-2.10.11,times-etimeseu-france-elec+heat-co2-multi_stage -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332,73-1h,gurobi,12.0.0,2024.0,TO,Timeout,3600.0,646.616,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 03:25:11.457512,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332,73-1h,highs,1.9.0,2024.0,TO,Timeout,3600.0,1032.248,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 04:28:41.775859,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332,73-1h,scip,9.2.0,2024.0,TO,Timeout,3600.0,1503.84,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 05:32:12.641452,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332,73-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,159.976,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 06:35:43.807451,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332 -pglib_opf_case162_ieee_dtc,162-NA,gurobi,12.0.0,2024.0,ok,optimal,60.19394027400995,180.38,97701.26756130432,0.0,0.0,59.92341995239258,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 07:39:50.276922,c4-standard-2,us-central1-a,305f3ff,pglib_opf_case162_ieee_dtc-162-NA,gurobi-12.0.0,pglib_opf_case162_ieee_dtc -pglib_opf_case162_ieee_dtc,162-NA,highs,1.9.0,2024.0,TO,Timeout,3600.0,311.848,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 07:40:51.058598,c4-standard-2,us-central1-a,305f3ff,pglib_opf_case162_ieee_dtc-162-NA,highs-1.9.0,pglib_opf_case162_ieee_dtc -pglib_opf_case162_ieee_dtc,162-NA,scip,9.2.0,2024.0,TO,Timeout,3600.0,623.556,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 08:44:45.767094,c4-standard-2,us-central1-a,305f3ff,pglib_opf_case162_ieee_dtc-162-NA,scip-9.2.0,pglib_opf_case162_ieee_dtc -pglib_opf_case162_ieee_dtc,162-NA,cbc,2.10.12,2024.0,TO,Timeout,3600.0,136.788,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 09:48:32.920989,c4-standard-2,us-central1-a,305f3ff,pglib_opf_case162_ieee_dtc-162-NA,cbc-2.10.12,pglib_opf_case162_ieee_dtc -SWITCH-planning-reserves,3-6ts,gurobi,12.0.0,2024.0,ok,optimal,0.3081980119895888,154.096,135901915.10941112,0.0,8.994016188165039e-05,0.0060310363769531,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 10:52:11.822414,c4-standard-2,us-central1-a,305f3ff,SWITCH-planning-reserves-3-6ts,gurobi-12.0.0,SWITCH-planning-reserves -SWITCH-planning-reserves,3-6ts,highs,1.9.0,2024.0,ok,optimal,0.0116209169937064,143.344,135901915.10941112,0.0,0.0,0.0041170120239257,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 10:52:12.646713,c4-standard-2,us-central1-a,305f3ff,SWITCH-planning-reserves-3-6ts,highs-1.9.0,SWITCH-planning-reserves -SWITCH-planning-reserves,3-6ts,scip,9.2.0,2024.0,ok,optimal,0.0194362309994176,156.988,135901915.10941115,0.0,0.0,0.011642,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 10:52:13.170288,c4-standard-2,us-central1-a,305f3ff,SWITCH-planning-reserves-3-6ts,scip-9.2.0,SWITCH-planning-reserves -SWITCH-planning-reserves,3-6ts,cbc,2.10.12,2024.0,ok,optimal,0.0585399630072061,142.236,135901915.10941112,0.0,,0.03,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 10:52:13.699730,c4-standard-2,us-central1-a,305f3ff,SWITCH-planning-reserves-3-6ts,cbc-2.10.12,SWITCH-planning-reserves -OEMOF-house-without-nonconvex-investment,1-365ts,gurobi,12.0.0,2024.0,ok,optimal,1.3623321420018328,159.332,5544.6786027555645,0.0,9.084057484404188e-05,1.346724033355713,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 10:52:14.265563,c4-standard-2,us-central1-a,305f3ff,OEMOF-house-without-nonconvex-investment-1-365ts,gurobi-12.0.0,OEMOF-house-without-nonconvex-investment -OEMOF-house-without-nonconvex-investment,1-365ts,highs,1.9.0,2024.0,ok,optimal,1.3325170230091317,163.928,5544.6786027555645,1.4432899320127035e-14,9.960454361130932e-06,1.3141067028045654,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 10:52:16.150335,c4-standard-2,us-central1-a,305f3ff,OEMOF-house-without-nonconvex-investment-1-365ts,highs-1.9.0,OEMOF-house-without-nonconvex-investment -OEMOF-house-without-nonconvex-investment,1-365ts,scip,9.2.0,2024.0,ok,optimal,2619.9419632229983,300.124,5544.678602755559,4.440892098500626e-16,0.0,2619.918824,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 10:52:18.014343,c4-standard-2,us-central1-a,305f3ff,OEMOF-house-without-nonconvex-investment-1-365ts,scip-9.2.0,OEMOF-house-without-nonconvex-investment -OEMOF-house-without-nonconvex-investment,1-365ts,cbc,2.10.12,2024.0,ok,optimal,422.18104054100695,148.56,5544.67860276,0.0,,422.12,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 11:35:58.492674,c4-standard-2,us-central1-a,305f3ff,OEMOF-house-without-nonconvex-investment-1-365ts,cbc-2.10.12,OEMOF-house-without-nonconvex-investment -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29,73-1h,gurobi,12.0.0,2024.0,ok,optimal,4.514982542008511,188.596,316166.1922811258,0.0,0.0,4.218513011932373,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 11:43:01.228912,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29,73-1h,highs,1.9.0,2024.0,ok,optimal,116.30953470499662,454.796,316166.19228060875,3.195838375948975e-14,5.620127264138029e-05,116.2531988620758,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 11:43:06.353811,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29,73-1h,scip,9.2.0,2024.0,ok,optimal,65.25701208801183,371.172,316166.1922811258,5.09940640461362e-16,0.0,65.214391,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 11:45:03.248555,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29,73-1h,cbc,2.10.12,2024.0,ok,optimal,2316.595940094994,149.808,316166.19228113,0.0,,2316.49,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 11:46:09.114585,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29 -tulipa-1_EU_investment_simple,28-13h,gurobi,12.0.0,2024.0,ok,optimal,6.216185780998785,573.972,1201108985.931106,0.0,9.816100772010912e-05,5.494509935379028,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 12:28:19.733287,c4-standard-2,us-central1-a,305f3ff,tulipa-1_EU_investment_simple-28-13h,gurobi-12.0.0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-13h,highs,1.9.0,2024.0,ok,optimal,110.6344869589957,1799.016,1201065322.6590817,8.526512829121202e-14,9.478675851476188e-05,109.59893655776978,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 12:28:27.460080,c4-standard-2,us-central1-a,305f3ff,tulipa-1_EU_investment_simple-28-13h,highs-1.9.0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-13h,scip,9.2.0,2024.0,ok,optimal,99.5372870459978,1512.188,1201153267.0010223,1.8758328224066645e-12,9.610584986787948e-05,98.461709,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 12:30:19.637415,c4-standard-2,us-central1-a,305f3ff,tulipa-1_EU_investment_simple-28-13h,scip-9.2.0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-13h,cbc,2.10.12,2024.0,ok,optimal,259.3384303919884,747.216,1201137235.09714,0.0,0.0,257.45,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 12:32:00.942313,c4-standard-2,us-central1-a,305f3ff,tulipa-1_EU_investment_simple-28-13h,cbc-2.10.12,tulipa-1_EU_investment_simple -genx-3_three_zones_w_co2_capture-no_uc,3-1h,gurobi,12.0.0,2024.0,ok,optimal,5.514799969008891,427.88,6371.601824921133,,,4.470582962036133,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 12:36:22.003187,c4-standard-2,us-central1-a,305f3ff,genx-3_three_zones_w_co2_capture-no_uc-3-1h,gurobi-12.0.0,genx-3_three_zones_w_co2_capture-no_uc -genx-3_three_zones_w_co2_capture-no_uc,3-1h,highs,1.9.0,2024.0,ok,optimal,76.76154013200721,473.22,6371.601824921261,,,75.6782808303833,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 12:36:29.315079,c4-standard-2,us-central1-a,305f3ff,genx-3_three_zones_w_co2_capture-no_uc-3-1h,highs-1.9.0,genx-3_three_zones_w_co2_capture-no_uc -genx-3_three_zones_w_co2_capture-no_uc,3-1h,scip,9.2.0,2024.0,ok,optimal,143.85528682600125,999.208,6371.601824921385,,,143.108923,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 12:37:47.967291,c4-standard-2,us-central1-a,305f3ff,genx-3_three_zones_w_co2_capture-no_uc-3-1h,scip-9.2.0,genx-3_three_zones_w_co2_capture-no_uc -genx-3_three_zones_w_co2_capture-no_uc,3-1h,cbc,2.10.12,2024.0,ok,optimal,29.937791124990326,340.224,6371.60182492,,,,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 12:40:13.909000,c4-standard-2,us-central1-a,305f3ff,genx-3_three_zones_w_co2_capture-no_uc-3-1h,cbc-2.10.12,genx-3_three_zones_w_co2_capture-no_uc -times-etimeseu-france-elec+heat-co2-multi_stage,1-64ts,gurobi,12.0.0,2024.0,ok,optimal,5.746646190003958,320.564,427842.1201974797,,,5.182789087295532,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 12:40:45.634247,c4-standard-2,us-central1-a,305f3ff,times-etimeseu-france-elec+heat-co2-multi_stage-1-64ts,gurobi-12.0.0,times-etimeseu-france-elec+heat-co2-multi_stage -times-etimeseu-france-elec+heat-co2-multi_stage,1-64ts,highs,1.9.0,2024.0,ok,optimal,20.290313808000064,362.168,427842.1201974798,,,19.3617160320282,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 12:40:53.063553,c4-standard-2,us-central1-a,305f3ff,times-etimeseu-france-elec+heat-co2-multi_stage-1-64ts,highs-1.9.0,times-etimeseu-france-elec+heat-co2-multi_stage -times-etimeseu-france-elec+heat-co2-multi_stage,1-64ts,scip,9.2.0,2024.0,ok,optimal,93.63738439900044,1851.168,427842.1201974794,,,92.964379,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 12:41:15.118056,c4-standard-2,us-central1-a,305f3ff,times-etimeseu-france-elec+heat-co2-multi_stage-1-64ts,scip-9.2.0,times-etimeseu-france-elec+heat-co2-multi_stage -times-etimeseu-france-elec+heat-co2-multi_stage,1-64ts,cbc,2.10.12,2024.0,ER,,,181.708,,,,,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 12:42:50.578930,c4-standard-2,us-central1-a,305f3ff,times-etimeseu-france-elec+heat-co2-multi_stage-1-64ts,cbc-2.10.12,times-etimeseu-france-elec+heat-co2-multi_stage -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332,73-1h,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,731.212,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 12:43:22.988150,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332,73-1h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1260.12,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 13:47:12.550299,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332 -Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332,73-1h,scip,10.0.0,2025.0,TO,Timeout,3600.0,1479.572,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 14:51:07.622336,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332 -pglib_opf_case162_ieee_dtc,162-NA,gurobi,13.0.0,2025.0,ok,optimal,142.40926164700068,208.4,97706.39353770492,0.0,5.246305935154222e-05,142.14490580558777,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 15:54:55.149614,c4-standard-2,us-central1-a,305f3ff,pglib_opf_case162_ieee_dtc-162-NA,gurobi-13.0.0,pglib_opf_case162_ieee_dtc -pglib_opf_case162_ieee_dtc,162-NA,highs,1.12.0,2025.0,TO,Timeout,3600.0,420.5,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 15:57:18.369584,c4-standard-2,us-central1-a,305f3ff,pglib_opf_case162_ieee_dtc-162-NA,highs-1.12.0,pglib_opf_case162_ieee_dtc -pglib_opf_case162_ieee_dtc,162-NA,scip,10.0.0,2025.0,TO,Timeout,3600.0,641.548,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 17:01:05.574448,c4-standard-2,us-central1-a,305f3ff,pglib_opf_case162_ieee_dtc-162-NA,scip-10.0.0,pglib_opf_case162_ieee_dtc -SWITCH-planning-reserves,3-6ts,gurobi,13.0.0,2025.0,ok,optimal,0.3006773980014259,181.94,135901915.10941112,0.0,8.994016188165039e-05,0.0054669380187988,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 18:04:38.022787,c4-standard-2,us-central1-a,305f3ff,SWITCH-planning-reserves-3-6ts,gurobi-13.0.0,SWITCH-planning-reserves -SWITCH-planning-reserves,3-6ts,highs,1.12.0,2025.0,ok,optimal,0.0141173590091057,170.628,135901915.10941112,0.0,0.0,0.0073225498199462,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 18:04:39.065735,c4-standard-2,us-central1-a,305f3ff,SWITCH-planning-reserves-3-6ts,highs-1.12.0,SWITCH-planning-reserves -SWITCH-planning-reserves,3-6ts,scip,10.0.0,2025.0,ok,optimal,0.0197497859917348,184.288,135901915.10941115,0.0,0.0,0.011252,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 18:04:39.809838,c4-standard-2,us-central1-a,305f3ff,SWITCH-planning-reserves-3-6ts,scip-10.0.0,SWITCH-planning-reserves -OEMOF-house-without-nonconvex-investment,1-365ts,gurobi,13.0.0,2025.0,ok,optimal,0.517853040000773,185.112,5544.6786027555645,0.0,9.678438976160912e-05,0.5020339488983154,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 18:04:40.568473,c4-standard-2,us-central1-a,305f3ff,OEMOF-house-without-nonconvex-investment-1-365ts,gurobi-13.0.0,OEMOF-house-without-nonconvex-investment -OEMOF-house-without-nonconvex-investment,1-365ts,highs,1.12.0,2025.0,ok,optimal,0.9948182839871152,191.908,5544.6786027555645,2.1405099914773018e-13,0.0,0.9778146743774414,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 18:04:41.839875,c4-standard-2,us-central1-a,305f3ff,OEMOF-house-without-nonconvex-investment-1-365ts,highs-1.12.0,OEMOF-house-without-nonconvex-investment -OEMOF-house-without-nonconvex-investment,1-365ts,scip,10.0.0,2025.0,ok,optimal,2656.2481192979903,327.392,5544.678602755559,4.440892098500626e-16,0.0,2656.222952,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 18:04:43.583602,c4-standard-2,us-central1-a,305f3ff,OEMOF-house-without-nonconvex-investment-1-365ts,scip-10.0.0,OEMOF-house-without-nonconvex-investment -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29,73-1h,gurobi,13.0.0,2025.0,ok,optimal,5.522124419003376,209.712,316166.1922811259,0.0,7.794483022265508e-05,5.259214162826538,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 18:49:00.615539,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29,73-1h,highs,1.12.0,2025.0,ok,optimal,95.62010984998778,435.7,316166.1922811259,3.108624468950438e-14,8.371907925554653e-05,95.58365154266356,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 18:49:07.012782,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29,73-1h,scip,10.0.0,2025.0,ok,optimal,67.04485109698726,385.724,316166.1922811258,5.09940640461362e-16,0.0,66.996801,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 18:50:43.498718,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29 -tulipa-1_EU_investment_simple,28-13h,gurobi,13.0.0,2025.0,ok,optimal,7.965820034994977,528.024,1201110511.7891462,0.0,6.760354527228899e-05,7.456496953964233,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 18:51:51.444968,c4-standard-2,us-central1-a,305f3ff,tulipa-1_EU_investment_simple-28-13h,gurobi-13.0.0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-13h,highs,1.12.0,2025.0,ok,optimal,114.30496618100732,2147.18,1201041322.6590817,1.4210854715202006e-13,9.129761501874206e-05,113.50970578193665,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 18:52:00.961766,c4-standard-2,us-central1-a,305f3ff,tulipa-1_EU_investment_simple-28-13h,highs-1.12.0,tulipa-1_EU_investment_simple -tulipa-1_EU_investment_simple,28-13h,scip,10.0.0,2025.0,ok,optimal,105.31024946300022,1541.86,1201153267.0010223,1.8758328224066645e-12,9.610584986787948e-05,104.105043,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 18:53:56.701504,c4-standard-2,us-central1-a,305f3ff,tulipa-1_EU_investment_simple-28-13h,scip-10.0.0,tulipa-1_EU_investment_simple -genx-3_three_zones_w_co2_capture-no_uc,3-1h,gurobi,13.0.0,2025.0,ok,optimal,5.821469450005679,453.544,6371.601824921127,,,4.810559034347534,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 18:55:43.936067,c4-standard-2,us-central1-a,305f3ff,genx-3_three_zones_w_co2_capture-no_uc-3-1h,gurobi-13.0.0,genx-3_three_zones_w_co2_capture-no_uc -genx-3_three_zones_w_co2_capture-no_uc,3-1h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,36.10650454800634,261.944,6371.601825,,,36.10650454800634,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 18:55:51.342669,c4-standard-2,us-central1-a,305f3ff,genx-3_three_zones_w_co2_capture-no_uc-3-1h,highs-hipo-1.12.0-hipo,genx-3_three_zones_w_co2_capture-no_uc -genx-3_three_zones_w_co2_capture-no_uc,3-1h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,66.65968345299189,164.928,6371.6018249,,,66.65968345299189,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 18:56:28.278278,c4-standard-2,us-central1-a,305f3ff,genx-3_three_zones_w_co2_capture-no_uc-3-1h,highs-ipx-1.12.0-hipo,genx-3_three_zones_w_co2_capture-no_uc -genx-3_three_zones_w_co2_capture-no_uc,3-1h,highs,1.12.0,2025.0,ok,optimal,72.37137724300555,509.1,6371.601824921124,,,71.567622423172,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 18:57:35.754790,c4-standard-2,us-central1-a,305f3ff,genx-3_three_zones_w_co2_capture-no_uc-3-1h,highs-1.12.0,genx-3_three_zones_w_co2_capture-no_uc -genx-3_three_zones_w_co2_capture-no_uc,3-1h,scip,10.0.0,2025.0,ok,optimal,134.10808857799566,1026.884,6371.601824921385,,,133.439789,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 18:58:49.526941,c4-standard-2,us-central1-a,305f3ff,genx-3_three_zones_w_co2_capture-no_uc-3-1h,scip-10.0.0,genx-3_three_zones_w_co2_capture-no_uc -times-etimeseu-france-elec+heat-co2-multi_stage,1-64ts,gurobi,13.0.0,2025.0,ok,optimal,4.493932216006215,350.132,427842.12019748,,,3.7432050704956055,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 19:01:05.282334,c4-standard-2,us-central1-a,305f3ff,times-etimeseu-france-elec+heat-co2-multi_stage-1-64ts,gurobi-13.0.0,times-etimeseu-france-elec+heat-co2-multi_stage -times-etimeseu-france-elec+heat-co2-multi_stage,1-64ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,32.84855872299522,281.692,427842.11593,,,32.84855872299522,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 19:04:41.021556,c4-standard-2,us-central1-a,305f3ff,times-etimeseu-france-elec+heat-co2-multi_stage-1-64ts,highs-hipo-1.12.0-hipo,times-etimeseu-france-elec+heat-co2-multi_stage -times-etimeseu-france-elec+heat-co2-multi_stage,1-64ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,15.43091865700262,164.872,427842.12021,,,15.43091865700262,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 19:05:14.615934,c4-standard-2,us-central1-a,305f3ff,times-etimeseu-france-elec+heat-co2-multi_stage-1-64ts,highs-ipx-1.12.0-hipo,times-etimeseu-france-elec+heat-co2-multi_stage -times-etimeseu-france-elec+heat-co2-multi_stage,1-64ts,highs,1.12.0,2025.0,ok,optimal,20.056062998992275,394.528,427842.1201974796,,,19.49641823768616,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 19:05:30.773828,c4-standard-2,us-central1-a,305f3ff,times-etimeseu-france-elec+heat-co2-multi_stage-1-64ts,highs-1.12.0,times-etimeseu-france-elec+heat-co2-multi_stage -times-etimeseu-france-elec+heat-co2-multi_stage,1-64ts,scip,10.0.0,2025.0,ok,optimal,87.99608696800715,1880.892,427842.1201974794,,,87.374778,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 19:05:52.006814,c4-standard-2,us-central1-a,305f3ff,times-etimeseu-france-elec+heat-co2-multi_stage-1-64ts,scip-10.0.0,times-etimeseu-france-elec+heat-co2-multi_stage -pypsa-eur-elec-trex_copt-dfp,50-168h,glpk,5.0,2020.0,ok,optimal,270.18248018400004,239.136,35669946030.0,,,,3600.0,benchmark-instance-more-pypsa-30,20260102-more-pypsa,2026-01-02 20:48:42.759452,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-dfp-50-168h,glpk-5.0,pypsa-eur-elec-trex_copt-dfp -pypsa-eur-elec-trex_copt-dfp,50-168h,gurobi,10.0.0,2022.0,ok,optimal,203.306780883,347.572,35669946025.908775,,,202.34028816223145,3600.0,benchmark-instance-more-pypsa-30,20260102-more-pypsa,2026-01-02 20:57:27.146076,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-dfp-50-168h,gurobi-10.0.0,pypsa-eur-elec-trex_copt-dfp -pypsa-eur-elec-trex_copt-dfp,50-168h,highs,1.5.0.dev0,2022.0,ok,optimal,255.1925332410001,387.584,35669946025.90911,,,254.54421854019165,3600.0,benchmark-instance-more-pypsa-30,20260102-more-pypsa,2026-01-02 21:04:29.008020,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-dfp-50-168h,highs-1.5.0.dev0,pypsa-eur-elec-trex_copt-dfp -pypsa-eur-elec-trex_copt-dfp,50-168h,scip,8.0.3,2022.0,ok,optimal,843.0652358039999,832.364,35669946025.91094,,,842.417026,3600.0,benchmark-instance-more-pypsa-30,20260102-more-pypsa,2026-01-02 21:08:45.276201,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-dfp-50-168h,scip-8.0.3,pypsa-eur-elec-trex_copt-dfp -pypsa-eur-elec-trex_copt-dfp,50-168h,gurobi,11.0.0,2023.0,ok,optimal,314.5404122529999,352.62,35669946025.908806,,,313.80189299583435,3600.0,benchmark-instance-more-pypsa-30,20260102-more-pypsa,2026-01-02 21:26:09.774517,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-dfp-50-168h,gurobi-11.0.0,pypsa-eur-elec-trex_copt-dfp -pypsa-eur-elec-trex_copt-dfp,50-168h,highs,1.6.0.dev0,2023.0,ok,optimal,252.4980912760002,386.408,35669946025.90911,,,252.03610849380493,3600.0,benchmark-instance-more-pypsa-30,20260102-more-pypsa,2026-01-02 21:35:01.942232,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-dfp-50-168h,highs-1.6.0.dev0,pypsa-eur-elec-trex_copt-dfp -pypsa-eur-elec-trex_copt-dfp,50-168h,scip,8.1.0,2023.0,ok,optimal,841.5254147169999,836.304,35669946025.91094,,,840.982786,3600.0,benchmark-instance-more-pypsa-30,20260102-more-pypsa,2026-01-02 21:39:15.478330,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-dfp-50-168h,scip-8.1.0,pypsa-eur-elec-trex_copt-dfp -pypsa-eur-elec-trex_copt-dfp,50-168h,cbc,2.10.11,2023.0,ok,optimal,959.596117905,213.596,35669946025.90867,,,,3600.0,benchmark-instance-more-pypsa-30,20260102-more-pypsa,2026-01-02 21:53:18.205007,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-dfp-50-168h,cbc-2.10.11,pypsa-eur-elec-trex_copt-dfp -pypsa-eur-elec-trex_copt-dfp,50-168h,gurobi,12.0.0,2024.0,ok,optimal,185.3623361070004,334.176,35669946025.90891,,,184.54534816741943,3600.0,benchmark-instance-more-pypsa-30,20260102-more-pypsa,2026-01-02 22:09:47.256634,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-dfp-50-168h,gurobi-12.0.0,pypsa-eur-elec-trex_copt-dfp -pypsa-eur-elec-trex_copt-dfp,50-168h,highs,1.9.0,2024.0,ok,optimal,337.1273812599993,371.796,35669946025.90914,,,336.37108993530273,3600.0,benchmark-instance-more-pypsa-30,20260102-more-pypsa,2026-01-02 22:16:31.553604,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-dfp-50-168h,highs-1.9.0,pypsa-eur-elec-trex_copt-dfp -pypsa-eur-elec-trex_copt-dfp,50-168h,scip,9.2.0,2024.0,ok,optimal,842.6074856340001,819.604,35669946025.91094,,,842.054001,3600.0,benchmark-instance-more-pypsa-30,20260102-more-pypsa,2026-01-02 22:22:09.964311,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-dfp-50-168h,scip-9.2.0,pypsa-eur-elec-trex_copt-dfp -pypsa-eur-elec-trex_copt-dfp,50-168h,cbc,2.10.12,2024.0,ok,optimal,959.030478386,228.32,35669946025.90867,,,,3600.0,benchmark-instance-more-pypsa-30,20260102-more-pypsa,2026-01-02 22:36:14.028601,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-dfp-50-168h,cbc-2.10.12,pypsa-eur-elec-trex_copt-dfp -pypsa-eur-elec-trex_copt-dfp,50-168h,gurobi,13.0.0,2025.0,ok,optimal,159.2044994859998,367.928,35669946025.90885,,,158.38282322883606,3600.0,benchmark-instance-more-pypsa-30,20260102-more-pypsa,2026-01-02 22:53:16.905922,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-dfp-50-168h,gurobi-13.0.0,pypsa-eur-elec-trex_copt-dfp -pypsa-eur-elec-trex_copt-dfp,50-168h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,23.9586212410004,198.192,35669946026.0,,,23.9586212410004,3600.0,benchmark-instance-more-pypsa-30,20260102-more-pypsa,2026-01-02 22:59:34.215197,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-dfp-50-168h,highs-hipo-1.12.0-hipo,pypsa-eur-elec-trex_copt-dfp -pypsa-eur-elec-trex_copt-dfp,50-168h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,29.30037143500067,162.908,35669946027.0,,,29.30037143500067,3600.0,benchmark-instance-more-pypsa-30,20260102-more-pypsa,2026-01-02 22:59:59.183235,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-dfp-50-168h,highs-ipx-1.12.0-hipo,pypsa-eur-elec-trex_copt-dfp -pypsa-eur-elec-trex_copt-dfp,50-168h,highs,1.12.0,2025.0,ok,optimal,331.0109143380014,379.72,35669946025.90873,,,330.49356746673584,3600.0,benchmark-instance-more-pypsa-30,20260102-more-pypsa,2026-01-02 23:00:29.223473,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-dfp-50-168h,highs-1.12.0,pypsa-eur-elec-trex_copt-dfp -pypsa-eur-elec-trex_copt-dfp,50-168h,scip,10.0.0,2025.0,ok,optimal,845.0222157710014,843.904,35669946025.91094,,,844.450545,3600.0,benchmark-instance-more-pypsa-30,20260102-more-pypsa,2026-01-02 23:06:01.317051,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-dfp-50-168h,scip-10.0.0,pypsa-eur-elec-trex_copt-dfp -pypsa-eur-elec-trex_vopt,100-12h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,835.24,,,,86400.0,86400.0,benchmark-instance-more-pypsa-07,20260102-more-pypsa,2026-01-02 20:51:23.500285,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-100-12h,cbc-2.10.12,pypsa-eur-elec-trex_vopt -pypsa-eur-elec-trex_vopt,100-12h,gurobi,13.0.0,2025.0,ok,optimal,2335.947780443006,7919.74,36238244992.98922,,,2320.587463140488,86400.0,benchmark-instance-more-pypsa-07,20260102-more-pypsa,2026-01-03 20:55:26.513177,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-100-12h,gurobi-13.0.0,pypsa-eur-elec-trex_vopt -pypsa-eur-elec-trex_vopt,100-12h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,6487.06390991401,26532.108,36238244994.0,,,6487.06390991401,86400.0,benchmark-instance-more-pypsa-07,20260102-more-pypsa,2026-01-03 21:38:30.393774,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-100-12h,highs-hipo-1.12.0-hipo,pypsa-eur-elec-trex_vopt -pypsa-eur-elec-trex_vopt,100-12h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,26006.440206748,2862.648,36238244994.0,,,26006.440206748,86400.0,benchmark-instance-more-pypsa-07,20260102-more-pypsa,2026-01-03 23:30:10.100398,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-100-12h,highs-ipx-1.12.0-hipo,pypsa-eur-elec-trex_vopt -pypsa-eur-elec-trex_vopt,100-12h,highs,1.12.0,2025.0,TO,Timeout,86400.0,3435.76,,,,86400.0,86400.0,benchmark-instance-more-pypsa-07,20260102-more-pypsa,2026-01-04 06:47:14.824117,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-100-12h,highs-1.12.0,pypsa-eur-elec-trex_vopt -pypsa-eur-elec-trex_vopt,100-12h,scip,10.0.0,2025.0,TO,Timeout,86400.0,13965.704,,,,86400.0,86400.0,benchmark-instance-more-pypsa-07,20260102-more-pypsa,2026-01-05 06:50:52.425944,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-100-12h,scip-10.0.0,pypsa-eur-elec-trex_vopt -pypsa-de-elec-trex_vopt-dfp,50-24h,glpk,5.0,2020.0,ok,optimal,3386.561672926,762.028,7061411465.0,,,,3600.0,benchmark-instance-more-pypsa-16,20260102-more-pypsa,2026-01-02 20:49:32.432108,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-dfp-50-24h,glpk-5.0,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,50-24h,gurobi,10.0.0,2022.0,ok,optimal,598.2864280519998,1188.184,7061411464.426516,,,594.062294960022,3600.0,benchmark-instance-more-pypsa-16,20260102-more-pypsa,2026-01-02 21:50:41.368021,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-dfp-50-24h,gurobi-10.0.0,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,50-24h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1037.176,,,,3600.0,3600.0,benchmark-instance-more-pypsa-16,20260102-more-pypsa,2026-01-02 22:04:32.120368,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-dfp-50-24h,highs-1.5.0.dev0,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,50-24h,scip,8.0.3,2022.0,TO,Timeout,3600.0,3276.848,,,,3600.0,3600.0,benchmark-instance-more-pypsa-16,20260102-more-pypsa,2026-01-02 23:08:30.582480,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-dfp-50-24h,scip-8.0.3,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,50-24h,gurobi,11.0.0,2023.0,ok,optimal,607.9973963150005,1149.084,7061411464.4265,,,604.5845630168915,3600.0,benchmark-instance-more-pypsa-16,20260102-more-pypsa,2026-01-03 00:15:53.156883,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-dfp-50-24h,gurobi-11.0.0,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,50-24h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,969.372,,,,3600.0,3600.0,benchmark-instance-more-pypsa-16,20260102-more-pypsa,2026-01-03 00:29:55.734998,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-dfp-50-24h,highs-1.6.0.dev0,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,50-24h,scip,8.1.0,2023.0,TO,Timeout,3600.0,3331.832,,,,3600.0,3600.0,benchmark-instance-more-pypsa-16,20260102-more-pypsa,2026-01-03 01:33:46.631057,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-dfp-50-24h,scip-8.1.0,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,50-24h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,306.744,,,,3600.0,3600.0,benchmark-instance-more-pypsa-16,20260102-more-pypsa,2026-01-03 02:37:35.765738,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-dfp-50-24h,cbc-2.10.11,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,50-24h,gurobi,12.0.0,2024.0,TO,Timeout,3600.0,693.856,,,,3600.0,3600.0,benchmark-instance-more-pypsa-16,20260102-more-pypsa,2026-01-03 03:41:55.831722,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-dfp-50-24h,gurobi-12.0.0,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,50-24h,highs,1.9.0,2024.0,TO,Timeout,3600.0,996.156,,,,3600.0,3600.0,benchmark-instance-more-pypsa-16,20260102-more-pypsa,2026-01-03 04:45:44.469093,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-dfp-50-24h,highs-1.9.0,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,50-24h,scip,9.2.0,2024.0,TO,Timeout,3600.0,3328.876,,,,3600.0,3600.0,benchmark-instance-more-pypsa-16,20260102-more-pypsa,2026-01-03 05:49:31.944440,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-dfp-50-24h,scip-9.2.0,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,50-24h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,289.292,,,,3600.0,3600.0,benchmark-instance-more-pypsa-16,20260102-more-pypsa,2026-01-03 06:53:29.097627,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-dfp-50-24h,cbc-2.10.12,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,50-24h,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,707.908,,,,3600.0,3600.0,benchmark-instance-more-pypsa-16,20260102-more-pypsa,2026-01-03 07:57:48.630242,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-dfp-50-24h,gurobi-13.0.0,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,50-24h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,601.769648002999,3245.28,7061411464.4,,,601.769648002999,3600.0,benchmark-instance-more-pypsa-16,20260102-more-pypsa,2026-01-03 09:01:35.739325,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-dfp-50-24h,highs-hipo-1.12.0-hipo,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,50-24h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,757.7721633740002,647.62,7061411464.4,,,757.7721633740002,3600.0,benchmark-instance-more-pypsa-16,20260102-more-pypsa,2026-01-03 09:11:38.362348,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-dfp-50-24h,highs-ipx-1.12.0-hipo,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,50-24h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1007.588,,,,3600.0,3600.0,benchmark-instance-more-pypsa-16,20260102-more-pypsa,2026-01-03 09:24:17.353841,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-dfp-50-24h,highs-1.12.0,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,50-24h,scip,10.0.0,2025.0,TO,Timeout,3600.0,3343.88,,,,3600.0,3600.0,benchmark-instance-more-pypsa-16,20260102-more-pypsa,2026-01-03 10:27:59.313624,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-dfp-50-24h,scip-10.0.0,pypsa-de-elec-trex_vopt-dfp -pypsa-eur-sec-trex_vopt,50-168h,glpk,5.0,2020.0,TO,Timeout,3600.0,272.204,,,,3600.0,3600.0,benchmark-instance-more-pypsa-21,20260102-more-pypsa,2026-01-02 20:50:01.284202,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_vopt-50-168h,glpk-5.0,pypsa-eur-sec-trex_vopt -pypsa-eur-sec-trex_vopt,50-168h,gurobi,10.0.0,2022.0,TO,Timeout,3600.0,606.372,,,,3600.0,3600.0,benchmark-instance-more-pypsa-21,20260102-more-pypsa,2026-01-02 21:54:27.648983,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_vopt-50-168h,gurobi-10.0.0,pypsa-eur-sec-trex_vopt -pypsa-eur-sec-trex_vopt,50-168h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,897.424,,,,3600.0,3600.0,benchmark-instance-more-pypsa-21,20260102-more-pypsa,2026-01-02 22:58:13.244758,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_vopt-50-168h,highs-1.5.0.dev0,pypsa-eur-sec-trex_vopt -pypsa-eur-sec-trex_vopt,50-168h,scip,8.0.3,2022.0,TO,Timeout,3600.0,3069.708,,,,3600.0,3600.0,benchmark-instance-more-pypsa-21,20260102-more-pypsa,2026-01-03 00:01:51.820228,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_vopt-50-168h,scip-8.0.3,pypsa-eur-sec-trex_vopt -pypsa-eur-sec-trex_vopt,50-168h,gurobi,11.0.0,2023.0,TO,Timeout,3600.0,620.084,,,,3600.0,3600.0,benchmark-instance-more-pypsa-21,20260102-more-pypsa,2026-01-03 01:08:49.807726,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_vopt-50-168h,gurobi-11.0.0,pypsa-eur-sec-trex_vopt -pypsa-eur-sec-trex_vopt,50-168h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,857.716,,,,3600.0,3600.0,benchmark-instance-more-pypsa-21,20260102-more-pypsa,2026-01-03 02:12:34.236865,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_vopt-50-168h,highs-1.6.0.dev0,pypsa-eur-sec-trex_vopt -pypsa-eur-sec-trex_vopt,50-168h,scip,8.1.0,2023.0,TO,Timeout,3600.0,3110.056,,,,3600.0,3600.0,benchmark-instance-more-pypsa-21,20260102-more-pypsa,2026-01-03 03:16:12.234266,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_vopt-50-168h,scip-8.1.0,pypsa-eur-sec-trex_vopt -pypsa-eur-sec-trex_vopt,50-168h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,302.668,,,,3600.0,3600.0,benchmark-instance-more-pypsa-21,20260102-more-pypsa,2026-01-03 04:19:57.282022,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_vopt-50-168h,cbc-2.10.11,pypsa-eur-sec-trex_vopt -pypsa-eur-sec-trex_vopt,50-168h,gurobi,12.0.0,2024.0,TO,Timeout,3600.0,614.42,,,,3600.0,3600.0,benchmark-instance-more-pypsa-21,20260102-more-pypsa,2026-01-03 05:24:09.283611,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_vopt-50-168h,gurobi-12.0.0,pypsa-eur-sec-trex_vopt -pypsa-eur-sec-trex_vopt,50-168h,highs,1.9.0,2024.0,TO,Timeout,3600.0,883.22,,,,3600.0,3600.0,benchmark-instance-more-pypsa-21,20260102-more-pypsa,2026-01-03 06:27:56.150109,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_vopt-50-168h,highs-1.9.0,pypsa-eur-sec-trex_vopt -pypsa-eur-sec-trex_vopt,50-168h,scip,9.2.0,2024.0,TO,Timeout,3600.0,3101.332,,,,3600.0,3600.0,benchmark-instance-more-pypsa-21,20260102-more-pypsa,2026-01-03 07:31:39.862595,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_vopt-50-168h,scip-9.2.0,pypsa-eur-sec-trex_vopt -pypsa-eur-sec-trex_vopt,50-168h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,285.684,,,,3600.0,3600.0,benchmark-instance-more-pypsa-21,20260102-more-pypsa,2026-01-03 08:35:20.010830,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_vopt-50-168h,cbc-2.10.12,pypsa-eur-sec-trex_vopt -pypsa-eur-sec-trex_vopt,50-168h,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,649.932,,,,3600.0,3600.0,benchmark-instance-more-pypsa-21,20260102-more-pypsa,2026-01-03 09:39:30.968243,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_vopt-50-168h,gurobi-13.0.0,pypsa-eur-sec-trex_vopt -pypsa-eur-sec-trex_vopt,50-168h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,445.0670673700006,1239.94,377057245080.0,,,445.0670673700006,3600.0,benchmark-instance-more-pypsa-21,20260102-more-pypsa,2026-01-03 10:43:14.631925,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_vopt-50-168h,highs-hipo-1.12.0-hipo,pypsa-eur-sec-trex_vopt -pypsa-eur-sec-trex_vopt,50-168h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,578.6686117119971,571.748,377057245080.0,,,578.6686117119971,3600.0,benchmark-instance-more-pypsa-21,20260102-more-pypsa,2026-01-03 10:50:40.842916,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_vopt-50-168h,highs-ipx-1.12.0-hipo,pypsa-eur-sec-trex_vopt -pypsa-eur-sec-trex_vopt,50-168h,highs,1.12.0,2025.0,TO,Timeout,3600.0,843.884,,,,3600.0,3600.0,benchmark-instance-more-pypsa-21,20260102-more-pypsa,2026-01-03 11:00:20.286778,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_vopt-50-168h,highs-1.12.0,pypsa-eur-sec-trex_vopt -pypsa-eur-sec-trex_vopt,50-168h,scip,10.0.0,2025.0,TO,Timeout,3600.0,3113.412,,,,3600.0,3600.0,benchmark-instance-more-pypsa-21,20260102-more-pypsa,2026-01-03 12:04:04.320723,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_vopt-50-168h,scip-10.0.0,pypsa-eur-sec-trex_vopt -pypsa-de-sec-trex_copt,50-168h,glpk,5.0,2020.0,TO,Timeout,3600.0,270.612,,,,3600.0,3600.0,benchmark-instance-more-pypsa-24,20260102-more-pypsa,2026-01-02 20:49:39.200285,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-50-168h,glpk-5.0,pypsa-de-sec-trex_copt -pypsa-de-sec-trex_copt,50-168h,gurobi,10.0.0,2022.0,TO,Timeout,3600.0,604.812,,,,3600.0,3600.0,benchmark-instance-more-pypsa-24,20260102-more-pypsa,2026-01-02 21:54:01.740770,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-50-168h,gurobi-10.0.0,pypsa-de-sec-trex_copt -pypsa-de-sec-trex_copt,50-168h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,927.404,,,,3600.0,3600.0,benchmark-instance-more-pypsa-24,20260102-more-pypsa,2026-01-02 22:57:42.998507,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-50-168h,highs-1.5.0.dev0,pypsa-de-sec-trex_copt -pypsa-de-sec-trex_copt,50-168h,scip,8.0.3,2022.0,TO,Timeout,3600.0,3014.864,,,,3600.0,3600.0,benchmark-instance-more-pypsa-24,20260102-more-pypsa,2026-01-03 00:01:25.935167,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-50-168h,scip-8.0.3,pypsa-de-sec-trex_copt -pypsa-de-sec-trex_copt,50-168h,gurobi,11.0.0,2023.0,TO,Timeout,3600.0,611.392,,,,3600.0,3600.0,benchmark-instance-more-pypsa-24,20260102-more-pypsa,2026-01-03 01:08:36.941570,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-50-168h,gurobi-11.0.0,pypsa-de-sec-trex_copt -pypsa-de-sec-trex_copt,50-168h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,896.456,,,,3600.0,3600.0,benchmark-instance-more-pypsa-24,20260102-more-pypsa,2026-01-03 02:12:19.355598,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-50-168h,highs-1.6.0.dev0,pypsa-de-sec-trex_copt -pypsa-de-sec-trex_copt,50-168h,scip,8.1.0,2023.0,TO,Timeout,3600.0,3039.232,,,,3600.0,3600.0,benchmark-instance-more-pypsa-24,20260102-more-pypsa,2026-01-03 03:15:59.747390,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-50-168h,scip-8.1.0,pypsa-de-sec-trex_copt -pypsa-de-sec-trex_copt,50-168h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,301.284,,,,3600.0,3600.0,benchmark-instance-more-pypsa-24,20260102-more-pypsa,2026-01-03 04:19:40.042672,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-50-168h,cbc-2.10.11,pypsa-de-sec-trex_copt -pypsa-de-sec-trex_copt,50-168h,gurobi,12.0.0,2024.0,TO,Timeout,3600.0,608.816,,,,3600.0,3600.0,benchmark-instance-more-pypsa-24,20260102-more-pypsa,2026-01-03 05:23:50.695685,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-50-168h,gurobi-12.0.0,pypsa-de-sec-trex_copt -pypsa-de-sec-trex_copt,50-168h,highs,1.9.0,2024.0,TO,Timeout,3600.0,873.932,,,,3600.0,3600.0,benchmark-instance-more-pypsa-24,20260102-more-pypsa,2026-01-03 06:27:31.822850,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-50-168h,highs-1.9.0,pypsa-de-sec-trex_copt -pypsa-de-sec-trex_copt,50-168h,scip,9.2.0,2024.0,TO,Timeout,3600.0,3033.96,,,,3600.0,3600.0,benchmark-instance-more-pypsa-24,20260102-more-pypsa,2026-01-03 07:31:11.461741,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-50-168h,scip-9.2.0,pypsa-de-sec-trex_copt -pypsa-de-sec-trex_copt,50-168h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,284.06,,,,3600.0,3600.0,benchmark-instance-more-pypsa-24,20260102-more-pypsa,2026-01-03 08:34:52.031826,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-50-168h,cbc-2.10.12,pypsa-de-sec-trex_copt -pypsa-de-sec-trex_copt,50-168h,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,641.3,,,,3600.0,3600.0,benchmark-instance-more-pypsa-24,20260102-more-pypsa,2026-01-03 09:39:03.126303,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-50-168h,gurobi-13.0.0,pypsa-de-sec-trex_copt -pypsa-de-sec-trex_copt,50-168h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,525.755529602,1383.964,76425738145.0,,,525.755529602,3600.0,benchmark-instance-more-pypsa-24,20260102-more-pypsa,2026-01-03 10:42:43.597632,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-50-168h,highs-hipo-1.12.0-hipo,pypsa-de-sec-trex_copt -pypsa-de-sec-trex_copt,50-168h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,469.1782461370021,590.164,76425738138.0,,,469.1782461370021,3600.0,benchmark-instance-more-pypsa-24,20260102-more-pypsa,2026-01-03 10:51:30.647442,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-50-168h,highs-ipx-1.12.0-hipo,pypsa-de-sec-trex_copt -pypsa-de-sec-trex_copt,50-168h,highs,1.12.0,2025.0,TO,Timeout,3600.0,840.656,,,,3600.0,3600.0,benchmark-instance-more-pypsa-24,20260102-more-pypsa,2026-01-03 10:59:20.596410,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-50-168h,highs-1.12.0,pypsa-de-sec-trex_copt -pypsa-de-sec-trex_copt,50-168h,scip,10.0.0,2025.0,TO,Timeout,3600.0,3067.296,,,,3600.0,3600.0,benchmark-instance-more-pypsa-24,20260102-more-pypsa,2026-01-03 12:03:02.092688,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-50-168h,scip-10.0.0,pypsa-de-sec-trex_copt -pypsa-de-elec-trex_copt,20-3h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,671.724,,,,86400.0,86400.0,benchmark-instance-more-pypsa-13,20260102-more-pypsa,2026-01-02 20:51:09.312810,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-20-3h,cbc-2.10.12,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,20-3h,gurobi,13.0.0,2025.0,ok,optimal,201.82831102400087,5112.072,7528360799.695868,,,190.85592103004456,86400.0,benchmark-instance-more-pypsa-13,20260102-more-pypsa,2026-01-03 20:55:12.807994,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-20-3h,gurobi-13.0.0,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,20-3h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,1436.14697033001,3715.884,7528360799.8,,,1436.14697033001,86400.0,benchmark-instance-more-pypsa-13,20260102-more-pypsa,2026-01-03 21:02:20.726969,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-20-3h,highs-hipo-1.12.0-hipo,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,20-3h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,14437.582729966,2130.684,7528360799.7,,,14437.582729966,86400.0,benchmark-instance-more-pypsa-13,20260102-more-pypsa,2026-01-03 21:26:17.621988,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-20-3h,highs-ipx-1.12.0-hipo,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,20-3h,highs,1.12.0,2025.0,TO,Timeout,86400.0,2628.14,,,,86400.0,86400.0,benchmark-instance-more-pypsa-13,20260102-more-pypsa,2026-01-04 01:30:14.227961,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-20-3h,highs-1.12.0,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,20-3h,scip,10.0.0,2025.0,TO,Timeout,86400.0,10878.048,,,,86400.0,86400.0,benchmark-instance-more-pypsa-13,20260102-more-pypsa,2026-01-05 01:33:39.813376,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-20-3h,scip-10.0.0,pypsa-de-elec-trex_copt -pypsa-eur-elec-trex_vopt,50-168h,glpk,5.0,2020.0,ok,optimal,256.200812341,239.988,35669977580.0,,,,3600.0,benchmark-instance-more-pypsa-29,20260102-more-pypsa,2026-01-02 20:49:26.599912,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-50-168h,glpk-5.0,pypsa-eur-elec-trex_vopt -pypsa-eur-elec-trex_vopt,50-168h,gurobi,10.0.0,2022.0,ok,optimal,233.19790070500005,347.188,35669977577.239235,,,232.23119282722476,3600.0,benchmark-instance-more-pypsa-29,20260102-more-pypsa,2026-01-02 20:57:56.007260,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-50-168h,gurobi-10.0.0,pypsa-eur-elec-trex_vopt -pypsa-eur-elec-trex_vopt,50-168h,highs,1.5.0.dev0,2022.0,ok,optimal,239.63526237199997,383.216,35669977577.23937,,,238.9771122932434,3600.0,benchmark-instance-more-pypsa-29,20260102-more-pypsa,2026-01-02 21:05:30.513122,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-50-168h,highs-1.5.0.dev0,pypsa-eur-elec-trex_vopt -pypsa-eur-elec-trex_vopt,50-168h,scip,8.0.3,2022.0,ok,optimal,1156.7834624190002,829.796,35669977577.23863,,,1156.115986,3600.0,benchmark-instance-more-pypsa-29,20260102-more-pypsa,2026-01-02 21:09:31.246757,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-50-168h,scip-8.0.3,pypsa-eur-elec-trex_vopt -pypsa-eur-elec-trex_vopt,50-168h,gurobi,11.0.0,2023.0,ok,optimal,201.9750775540001,349.636,35669977577.23916,,,201.191025018692,3600.0,benchmark-instance-more-pypsa-29,20260102-more-pypsa,2026-01-02 21:32:15.353827,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-50-168h,gurobi-11.0.0,pypsa-eur-elec-trex_vopt -pypsa-eur-elec-trex_vopt,50-168h,highs,1.6.0.dev0,2023.0,ok,optimal,234.84857923599972,388.024,35669977577.23937,,,234.36575317382807,3600.0,benchmark-instance-more-pypsa-29,20260102-more-pypsa,2026-01-02 21:39:30.338101,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-50-168h,highs-1.6.0.dev0,pypsa-eur-elec-trex_vopt -pypsa-eur-elec-trex_vopt,50-168h,scip,8.1.0,2023.0,ok,optimal,1155.429585024,834.912,35669977577.23863,,,1154.845201,3600.0,benchmark-instance-more-pypsa-29,20260102-more-pypsa,2026-01-02 21:43:26.270120,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-50-168h,scip-8.1.0,pypsa-eur-elec-trex_vopt -pypsa-eur-elec-trex_vopt,50-168h,cbc,2.10.11,2023.0,ok,optimal,378.1863681390005,214.4,35669977577.239265,,,,3600.0,benchmark-instance-more-pypsa-29,20260102-more-pypsa,2026-01-02 22:02:42.931186,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-50-168h,cbc-2.10.11,pypsa-eur-elec-trex_vopt -pypsa-eur-elec-trex_vopt,50-168h,gurobi,12.0.0,2024.0,ok,optimal,174.12410648200057,334.208,35669977577.23919,,,173.3073058128357,3600.0,benchmark-instance-more-pypsa-29,20260102-more-pypsa,2026-01-02 22:09:28.937893,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-50-168h,gurobi-12.0.0,pypsa-eur-elec-trex_vopt -pypsa-eur-elec-trex_vopt,50-168h,highs,1.9.0,2024.0,ok,optimal,225.878932054,384.948,35669977577.2394,,,225.12217330932617,3600.0,benchmark-instance-more-pypsa-29,20260102-more-pypsa,2026-01-02 22:16:05.367127,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-50-168h,highs-1.9.0,pypsa-eur-elec-trex_vopt -pypsa-eur-elec-trex_vopt,50-168h,scip,9.2.0,2024.0,ok,optimal,1152.000253954,819.032,35669977577.23863,,,1151.439918,3600.0,benchmark-instance-more-pypsa-29,20260102-more-pypsa,2026-01-02 22:19:52.596674,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-50-168h,scip-9.2.0,pypsa-eur-elec-trex_vopt -pypsa-eur-elec-trex_vopt,50-168h,cbc,2.10.12,2024.0,ok,optimal,372.9112869179999,227.996,35669977577.239265,,,,3600.0,benchmark-instance-more-pypsa-29,20260102-more-pypsa,2026-01-02 22:39:06.050083,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-50-168h,cbc-2.10.12,pypsa-eur-elec-trex_vopt -pypsa-eur-elec-trex_vopt,50-168h,gurobi,13.0.0,2025.0,ok,optimal,181.61456405399983,366.348,35669977577.239204,,,180.84040689468384,3600.0,benchmark-instance-more-pypsa-29,20260102-more-pypsa,2026-01-02 22:45:49.567052,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-50-168h,gurobi-13.0.0,pypsa-eur-elec-trex_vopt -pypsa-eur-elec-trex_vopt,50-168h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,23.89380702299968,198.964,35669977577.0,,,23.89380702299968,3600.0,benchmark-instance-more-pypsa-29,20260102-more-pypsa,2026-01-02 22:52:31.474191,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-50-168h,highs-hipo-1.12.0-hipo,pypsa-eur-elec-trex_vopt -pypsa-eur-elec-trex_vopt,50-168h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,29.568133349000163,163.984,35669977577.0,,,29.568133349000163,3600.0,benchmark-instance-more-pypsa-29,20260102-more-pypsa,2026-01-02 22:52:56.734028,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-50-168h,highs-ipx-1.12.0-hipo,pypsa-eur-elec-trex_vopt -pypsa-eur-elec-trex_vopt,50-168h,highs,1.12.0,2025.0,ok,optimal,219.76056145700025,397.748,35669977577.239174,,,219.23968529701236,3600.0,benchmark-instance-more-pypsa-29,20260102-more-pypsa,2026-01-02 22:53:27.054924,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-50-168h,highs-1.12.0,pypsa-eur-elec-trex_vopt -pypsa-eur-elec-trex_vopt,50-168h,scip,10.0.0,2025.0,ok,optimal,1153.003599478,846.08,35669977577.23863,,,1152.4219,3600.0,benchmark-instance-more-pypsa-29,20260102-more-pypsa,2026-01-02 22:57:07.915674,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-50-168h,scip-10.0.0,pypsa-eur-elec-trex_vopt -pypsa-eur-sec,50-24h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,1167.644,,,,86400.0,86400.0,benchmark-instance-more-pypsa-02,20260102-more-pypsa,2026-01-02 20:51:49.815207,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-sec-50-24h,cbc-2.10.12,pypsa-eur-sec -pypsa-eur-sec,50-24h,gurobi,13.0.0,2025.0,TO,Timeout,86400.0,11782.08,,,,86400.0,86400.0,benchmark-instance-more-pypsa-02,20260102-more-pypsa,2026-01-03 20:56:02.753340,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-sec-50-24h,gurobi-13.0.0,pypsa-eur-sec -pypsa-eur-sec,50-24h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,28017.693696939008,35287.708,393814433160.0,,,28017.693696939008,86400.0,benchmark-instance-more-pypsa-02,20260102-more-pypsa,2026-01-04 20:59:34.931490,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-sec-50-24h,highs-hipo-1.12.0-hipo,pypsa-eur-sec -pypsa-eur-sec,50-24h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,45575.351285682,3728.584,393814433050.0,,,45575.351285682,86400.0,benchmark-instance-more-pypsa-02,20260102-more-pypsa,2026-01-05 04:50:06.136604,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-sec-50-24h,highs-ipx-1.12.0-hipo,pypsa-eur-sec -pypsa-eur-sec,50-24h,highs,1.12.0,2025.0,TO,Timeout,86400.0,3879.348,,,,86400.0,86400.0,benchmark-instance-more-pypsa-02,20260102-more-pypsa,2026-01-05 17:33:17.440075,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-sec-50-24h,highs-1.12.0,pypsa-eur-sec -pypsa-eur-sec,50-24h,scip,10.0.0,2025.0,TO,Timeout,86400.0,18264.084,,,,86400.0,86400.0,benchmark-instance-more-pypsa-02,20260102-more-pypsa,2026-01-06 17:36:59.621662,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-sec-50-24h,scip-10.0.0,pypsa-eur-sec -pypsa-eur-elec-dfp,50-168h,glpk,5.0,2020.0,ok,optimal,153.261348779,240.752,36132367450.0,,,,3600.0,benchmark-instance-more-pypsa-32,20260102-more-pypsa,2026-01-02 20:49:50.584130,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-dfp-50-168h,glpk-5.0,pypsa-eur-elec-dfp -pypsa-eur-elec-dfp,50-168h,gurobi,10.0.0,2022.0,ok,optimal,28.32603158099994,345.388,36132367446.48273,,,27.311707973480225,3600.0,benchmark-instance-more-pypsa-32,20260102-more-pypsa,2026-01-02 20:56:58.979895,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-dfp-50-168h,gurobi-10.0.0,pypsa-eur-elec-dfp -pypsa-eur-elec-dfp,50-168h,highs,1.5.0.dev0,2022.0,ok,optimal,115.086105287,365.352,36132367446.48335,,,114.38655495643616,3600.0,benchmark-instance-more-pypsa-32,20260102-more-pypsa,2026-01-02 21:01:24.693108,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-dfp-50-168h,highs-1.5.0.dev0,pypsa-eur-elec-dfp -pypsa-eur-elec-dfp,50-168h,scip,8.0.3,2022.0,ok,optimal,389.055875062,768.388,36132367446.48417,,,388.336147,3600.0,benchmark-instance-more-pypsa-32,20260102-more-pypsa,2026-01-02 21:03:20.980189,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-dfp-50-168h,scip-8.0.3,pypsa-eur-elec-dfp -pypsa-eur-elec-dfp,50-168h,gurobi,11.0.0,2023.0,ok,optimal,23.620680742999863,344.532,36132367446.482666,,,22.81108808517456,3600.0,benchmark-instance-more-pypsa-32,20260102-more-pypsa,2026-01-02 21:13:21.082156,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-dfp-50-168h,gurobi-11.0.0,pypsa-eur-elec-dfp -pypsa-eur-elec-dfp,50-168h,highs,1.6.0.dev0,2023.0,ok,optimal,113.5746951000001,373.964,36132367446.48335,,,113.08545303344728,3600.0,benchmark-instance-more-pypsa-32,20260102-more-pypsa,2026-01-02 21:17:43.125386,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-dfp-50-168h,highs-1.6.0.dev0,pypsa-eur-elec-dfp -pypsa-eur-elec-dfp,50-168h,scip,8.1.0,2023.0,ok,optimal,387.09086810200006,773.564,36132367446.48417,,,386.490055,3600.0,benchmark-instance-more-pypsa-32,20260102-more-pypsa,2026-01-02 21:19:37.821173,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-dfp-50-168h,scip-8.1.0,pypsa-eur-elec-dfp -pypsa-eur-elec-dfp,50-168h,cbc,2.10.11,2023.0,ok,optimal,97.28011957099989,208.696,36132367446.48259,,,,3600.0,benchmark-instance-more-pypsa-32,20260102-more-pypsa,2026-01-02 21:26:06.181382,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-dfp-50-168h,cbc-2.10.11,pypsa-eur-elec-dfp -pypsa-eur-elec-dfp,50-168h,gurobi,12.0.0,2024.0,ok,optimal,29.237516342000163,331.624,36132367446.48262,,,28.43217897415161,3600.0,benchmark-instance-more-pypsa-32,20260102-more-pypsa,2026-01-02 21:28:11.621318,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-dfp-50-168h,gurobi-12.0.0,pypsa-eur-elec-dfp -pypsa-eur-elec-dfp,50-168h,highs,1.9.0,2024.0,ok,optimal,73.45484517099976,347.056,36132367446.483536,,,72.65511584281921,3600.0,benchmark-instance-more-pypsa-32,20260102-more-pypsa,2026-01-02 21:32:38.074413,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-dfp-50-168h,highs-1.9.0,pypsa-eur-elec-dfp -pypsa-eur-elec-dfp,50-168h,scip,9.2.0,2024.0,ok,optimal,388.6451142310002,757.692,36132367446.48417,,,388.03107,3600.0,benchmark-instance-more-pypsa-32,20260102-more-pypsa,2026-01-02 21:33:52.973984,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-dfp-50-168h,scip-9.2.0,pypsa-eur-elec-dfp -pypsa-eur-elec-dfp,50-168h,cbc,2.10.12,2024.0,ok,optimal,98.04160345199988,231.948,36132367446.48259,,,,3600.0,benchmark-instance-more-pypsa-32,20260102-more-pypsa,2026-01-02 21:40:23.172028,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-dfp-50-168h,cbc-2.10.12,pypsa-eur-elec-dfp -pypsa-eur-elec-dfp,50-168h,gurobi,13.0.0,2025.0,ok,optimal,27.34208927199961,354.808,36132367446.48271,,,26.515463829040527,3600.0,benchmark-instance-more-pypsa-32,20260102-more-pypsa,2026-01-02 21:42:33.624140,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-dfp-50-168h,gurobi-13.0.0,pypsa-eur-elec-dfp -pypsa-eur-elec-dfp,50-168h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,17.067341395000312,180.94,36132367448.0,,,17.067341395000312,3600.0,benchmark-instance-more-pypsa-32,20260102-more-pypsa,2026-01-02 21:46:59.789124,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-dfp-50-168h,highs-hipo-1.12.0-hipo,pypsa-eur-elec-dfp -pypsa-eur-elec-dfp,50-168h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,18.71816651900008,163.692,36132367447.0,,,18.71816651900008,3600.0,benchmark-instance-more-pypsa-32,20260102-more-pypsa,2026-01-02 21:47:17.801725,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-dfp-50-168h,highs-ipx-1.12.0-hipo,pypsa-eur-elec-dfp -pypsa-eur-elec-dfp,50-168h,highs,1.12.0,2025.0,ok,optimal,72.47564290400032,374.18,36132367446.4827,,,71.90499496459961,3600.0,benchmark-instance-more-pypsa-32,20260102-more-pypsa,2026-01-02 21:47:37.320331,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-dfp-50-168h,highs-1.12.0,pypsa-eur-elec-dfp -pypsa-eur-elec-dfp,50-168h,scip,10.0.0,2025.0,ok,optimal,387.0382265479998,784.808,36132367446.48417,,,386.407304,3600.0,benchmark-instance-more-pypsa-32,20260102-more-pypsa,2026-01-02 21:48:50.972785,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-dfp-50-168h,scip-10.0.0,pypsa-eur-elec-dfp -pypsa-de-elec-trex_copt,50-24h,glpk,5.0,2020.0,ok,optimal,3361.18702187,760.02,7061421194.0,,,,3600.0,benchmark-instance-more-pypsa-19,20260102-more-pypsa,2026-01-02 20:49:36.268698,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-50-24h,glpk-5.0,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,50-24h,gurobi,10.0.0,2022.0,ok,optimal,2448.093920921,1180.224,7061421194.266729,,,2443.8157119750977,3600.0,benchmark-instance-more-pypsa-19,20260102-more-pypsa,2026-01-02 21:50:14.638783,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-50-24h,gurobi-10.0.0,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,50-24h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1048.964,,,,3600.0,3600.0,benchmark-instance-more-pypsa-19,20260102-more-pypsa,2026-01-02 22:34:50.515698,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-50-24h,highs-1.5.0.dev0,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,50-24h,scip,8.0.3,2022.0,TO,Timeout,3600.0,3284.088,,,,3600.0,3600.0,benchmark-instance-more-pypsa-19,20260102-more-pypsa,2026-01-02 23:38:34.055747,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-50-24h,scip-8.0.3,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,50-24h,gurobi,11.0.0,2023.0,ok,optimal,1380.3224495119994,1161.392,7061421194.266718,,,1376.9408988952637,3600.0,benchmark-instance-more-pypsa-19,20260102-more-pypsa,2026-01-03 00:46:01.453695,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-50-24h,gurobi-11.0.0,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,50-24h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,971.352,,,,3600.0,3600.0,benchmark-instance-more-pypsa-19,20260102-more-pypsa,2026-01-03 01:12:47.821635,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-50-24h,highs-1.6.0.dev0,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,50-24h,scip,8.1.0,2023.0,TO,Timeout,3600.0,3349.136,,,,3600.0,3600.0,benchmark-instance-more-pypsa-19,20260102-more-pypsa,2026-01-03 02:16:30.759389,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-50-24h,scip-8.1.0,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,50-24h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,306.592,,,,3600.0,3600.0,benchmark-instance-more-pypsa-19,20260102-more-pypsa,2026-01-03 03:20:14.661038,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-50-24h,cbc-2.10.11,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,50-24h,gurobi,12.0.0,2024.0,TO,Timeout,3600.0,677.352,,,,3600.0,3600.0,benchmark-instance-more-pypsa-19,20260102-more-pypsa,2026-01-03 04:24:28.824168,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-50-24h,gurobi-12.0.0,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,50-24h,highs,1.9.0,2024.0,TO,Timeout,3600.0,982.712,,,,3600.0,3600.0,benchmark-instance-more-pypsa-19,20260102-more-pypsa,2026-01-03 05:28:14.236553,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-50-24h,highs-1.9.0,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,50-24h,scip,9.2.0,2024.0,TO,Timeout,3600.0,3336.984,,,,3600.0,3600.0,benchmark-instance-more-pypsa-19,20260102-more-pypsa,2026-01-03 06:31:57.872480,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-50-24h,scip-9.2.0,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,50-24h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,288.892,,,,3600.0,3600.0,benchmark-instance-more-pypsa-19,20260102-more-pypsa,2026-01-03 07:35:40.218044,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-50-24h,cbc-2.10.12,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,50-24h,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,748.932,,,,3600.0,3600.0,benchmark-instance-more-pypsa-19,20260102-more-pypsa,2026-01-03 08:40:01.639876,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-50-24h,gurobi-13.0.0,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,50-24h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,600.9243279350048,3192.512,7061421194.3,,,600.9243279350048,3600.0,benchmark-instance-more-pypsa-19,20260102-more-pypsa,2026-01-03 09:43:50.650623,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-50-24h,highs-hipo-1.12.0-hipo,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,50-24h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,784.354695697999,649.38,7061421194.3,,,784.354695697999,3600.0,benchmark-instance-more-pypsa-19,20260102-more-pypsa,2026-01-03 09:53:52.470582,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-50-24h,highs-ipx-1.12.0-hipo,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,50-24h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1004.944,,,,3600.0,3600.0,benchmark-instance-more-pypsa-19,20260102-more-pypsa,2026-01-03 10:06:58.036658,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-50-24h,highs-1.12.0,pypsa-de-elec-trex_copt -pypsa-de-elec-trex_copt,50-24h,scip,10.0.0,2025.0,TO,Timeout,3600.0,3362.044,,,,3600.0,3600.0,benchmark-instance-more-pypsa-19,20260102-more-pypsa,2026-01-03 11:10:51.484586,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-50-24h,scip-10.0.0,pypsa-de-elec-trex_copt -pypsa-eur-elec-trex_copt-dfp,100-12h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,835.436,,,,86400.0,86400.0,benchmark-instance-more-pypsa-08,20260102-more-pypsa,2026-01-02 20:51:30.302096,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-dfp-100-12h,cbc-2.10.12,pypsa-eur-elec-trex_copt-dfp -pypsa-eur-elec-trex_copt-dfp,100-12h,gurobi,13.0.0,2025.0,ok,optimal,2483.7678678509983,7919.684,36238241318.97456,,,2468.7060930728912,86400.0,benchmark-instance-more-pypsa-08,20260102-more-pypsa,2026-01-03 20:55:28.953624,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-dfp-100-12h,gurobi-13.0.0,pypsa-eur-elec-trex_copt-dfp -pypsa-eur-elec-trex_copt-dfp,100-12h,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,86400.0,162.98,,,,86400.0,86400.0,benchmark-instance-more-pypsa-08,20260102-more-pypsa,2026-01-03 21:40:47.280199,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-dfp-100-12h,highs-hipo-1.12.0-hipo,pypsa-eur-elec-trex_copt-dfp -pypsa-eur-elec-trex_copt-dfp,100-12h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,27996.563144254997,2869.936,36238241320.0,,,27996.563144254997,86400.0,benchmark-instance-more-pypsa-08,20260102-more-pypsa,2026-01-04 21:44:27.155053,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-dfp-100-12h,highs-ipx-1.12.0-hipo,pypsa-eur-elec-trex_copt-dfp -pypsa-eur-elec-trex_copt-dfp,100-12h,highs,1.12.0,2025.0,TO,Timeout,86400.0,3882.552,,,,86400.0,86400.0,benchmark-instance-more-pypsa-08,20260102-more-pypsa,2026-01-05 05:34:48.167707,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-dfp-100-12h,highs-1.12.0,pypsa-eur-elec-trex_copt-dfp -pypsa-eur-elec-trex_copt-dfp,100-12h,scip,10.0.0,2025.0,TO,Timeout,86400.0,13920.848,,,,86400.0,86400.0,benchmark-instance-more-pypsa-08,20260102-more-pypsa,2026-01-06 05:38:23.942096,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-dfp-100-12h,scip-10.0.0,pypsa-eur-elec-trex_copt-dfp -pypsa-de-sec-trex_vopt,50-168h,glpk,5.0,2020.0,TO,Timeout,3600.0,270.34,,,,3600.0,3600.0,benchmark-instance-more-pypsa-23,20260102-more-pypsa,2026-01-03 04:30:50.932053,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-50-168h,glpk-5.0,pypsa-de-sec-trex_vopt -pypsa-de-sec-trex_vopt,50-168h,gurobi,10.0.0,2022.0,TO,Timeout,3600.0,601.572,,,,3600.0,3600.0,benchmark-instance-more-pypsa-23,20260102-more-pypsa,2026-01-03 05:35:17.681786,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-50-168h,gurobi-10.0.0,pypsa-de-sec-trex_vopt -pypsa-de-sec-trex_vopt,50-168h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,803.116,,,,3600.0,3600.0,benchmark-instance-more-pypsa-23,20260102-more-pypsa,2026-01-03 06:39:05.517383,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-50-168h,highs-1.5.0.dev0,pypsa-de-sec-trex_vopt -pypsa-de-sec-trex_vopt,50-168h,scip,8.0.3,2022.0,TO,Timeout,3600.0,3005.54,,,,3600.0,3600.0,benchmark-instance-more-pypsa-23,20260102-more-pypsa,2026-01-03 07:43:01.834216,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-50-168h,scip-8.0.3,pypsa-de-sec-trex_vopt -pypsa-de-sec-trex_vopt,50-168h,gurobi,11.0.0,2023.0,TO,Timeout,3600.0,608.348,,,,3600.0,3600.0,benchmark-instance-more-pypsa-23,20260102-more-pypsa,2026-01-03 08:50:27.341875,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-50-168h,gurobi-11.0.0,pypsa-de-sec-trex_vopt -pypsa-de-sec-trex_vopt,50-168h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,853.688,,,,3600.0,3600.0,benchmark-instance-more-pypsa-23,20260102-more-pypsa,2026-01-03 09:54:13.085868,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-50-168h,highs-1.6.0.dev0,pypsa-de-sec-trex_vopt -pypsa-de-sec-trex_vopt,50-168h,scip,8.1.0,2023.0,TO,Timeout,3600.0,3036.68,,,,3600.0,3600.0,benchmark-instance-more-pypsa-23,20260102-more-pypsa,2026-01-03 10:58:00.145625,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-50-168h,scip-8.1.0,pypsa-de-sec-trex_vopt -pypsa-de-sec-trex_vopt,50-168h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,301.64,,,,3600.0,3600.0,benchmark-instance-more-pypsa-23,20260102-more-pypsa,2026-01-03 12:01:48.004764,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-50-168h,cbc-2.10.11,pypsa-de-sec-trex_vopt -pypsa-de-sec-trex_vopt,50-168h,gurobi,12.0.0,2024.0,TO,Timeout,3600.0,606.984,,,,3600.0,3600.0,benchmark-instance-more-pypsa-23,20260102-more-pypsa,2026-01-03 13:06:03.450857,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-50-168h,gurobi-12.0.0,pypsa-de-sec-trex_vopt -pypsa-de-sec-trex_vopt,50-168h,highs,1.9.0,2024.0,TO,Timeout,3600.0,860.252,,,,3600.0,3600.0,benchmark-instance-more-pypsa-23,20260102-more-pypsa,2026-01-03 14:09:45.650213,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-50-168h,highs-1.9.0,pypsa-de-sec-trex_vopt -pypsa-de-sec-trex_vopt,50-168h,scip,9.2.0,2024.0,TO,Timeout,3600.0,3026.544,,,,3600.0,3600.0,benchmark-instance-more-pypsa-23,20260102-more-pypsa,2026-01-03 15:13:25.944367,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-50-168h,scip-9.2.0,pypsa-de-sec-trex_vopt -pypsa-de-sec-trex_vopt,50-168h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,283.804,,,,3600.0,3600.0,benchmark-instance-more-pypsa-23,20260102-more-pypsa,2026-01-03 16:17:10.595508,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-50-168h,cbc-2.10.12,pypsa-de-sec-trex_vopt -pypsa-de-sec-trex_vopt,50-168h,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,641.472,,,,3600.0,3600.0,benchmark-instance-more-pypsa-23,20260102-more-pypsa,2026-01-03 17:21:28.934995,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-50-168h,gurobi-13.0.0,pypsa-de-sec-trex_vopt -pypsa-de-sec-trex_vopt,50-168h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,465.8531158500045,1335.02,76425760175.0,,,465.8531158500045,3600.0,benchmark-instance-more-pypsa-23,20260102-more-pypsa,2026-01-03 18:25:13.660457,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-50-168h,highs-hipo-1.12.0-hipo,pypsa-de-sec-trex_vopt -pypsa-de-sec-trex_vopt,50-168h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,482.73275342899433,580.436,76425760182.0,,,482.73275342899433,3600.0,benchmark-instance-more-pypsa-23,20260102-more-pypsa,2026-01-03 18:33:00.732491,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-50-168h,highs-ipx-1.12.0-hipo,pypsa-de-sec-trex_vopt -pypsa-de-sec-trex_vopt,50-168h,highs,1.12.0,2025.0,TO,Timeout,3600.0,871.12,,,,3600.0,3600.0,benchmark-instance-more-pypsa-23,20260102-more-pypsa,2026-01-03 18:41:04.229644,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-50-168h,highs-1.12.0,pypsa-de-sec-trex_vopt -pypsa-de-sec-trex_vopt,50-168h,scip,10.0.0,2025.0,TO,Timeout,3600.0,3023.024,,,,3600.0,3600.0,benchmark-instance-more-pypsa-23,20260102-more-pypsa,2026-01-03 19:45:03.963794,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-50-168h,scip-10.0.0,pypsa-de-sec-trex_vopt -pypsa-de-sec-trex_vopt,10-24h,glpk,5.0,2020.0,TO,Timeout,3600.0,334.86,,,,3600.0,3600.0,benchmark-instance-more-pypsa-14,20260102-more-pypsa,2026-01-02 20:49:13.198163,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-10-24h,glpk-5.0,pypsa-de-sec-trex_vopt -pypsa-de-sec-trex_vopt,10-24h,gurobi,10.0.0,2022.0,TO,Timeout,3600.0,801.932,,,,3600.0,3600.0,benchmark-instance-more-pypsa-14,20260102-more-pypsa,2026-01-02 21:53:29.149899,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-10-24h,gurobi-10.0.0,pypsa-de-sec-trex_vopt -pypsa-de-sec-trex_vopt,10-24h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1336.616,,,,3600.0,3600.0,benchmark-instance-more-pypsa-14,20260102-more-pypsa,2026-01-02 22:57:04.827345,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-10-24h,highs-1.5.0.dev0,pypsa-de-sec-trex_vopt -pypsa-de-sec-trex_vopt,10-24h,scip,8.0.3,2022.0,TO,Timeout,3600.0,4237.552,,,,3600.0,3600.0,benchmark-instance-more-pypsa-14,20260102-more-pypsa,2026-01-03 00:00:41.194716,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-10-24h,scip-8.0.3,pypsa-de-sec-trex_vopt -pypsa-de-sec-trex_vopt,10-24h,gurobi,11.0.0,2023.0,TO,Timeout,3600.0,807.176,,,,3600.0,3600.0,benchmark-instance-more-pypsa-14,20260102-more-pypsa,2026-01-03 01:07:36.332212,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-10-24h,gurobi-11.0.0,pypsa-de-sec-trex_vopt -pypsa-de-sec-trex_vopt,10-24h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,1272.236,,,,3600.0,3600.0,benchmark-instance-more-pypsa-14,20260102-more-pypsa,2026-01-03 02:11:11.993335,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-10-24h,highs-1.6.0.dev0,pypsa-de-sec-trex_vopt -pypsa-de-sec-trex_vopt,10-24h,scip,8.1.0,2023.0,TO,Timeout,3600.0,4280.248,,,,3600.0,3600.0,benchmark-instance-more-pypsa-14,20260102-more-pypsa,2026-01-03 03:14:56.473430,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-10-24h,scip-8.1.0,pypsa-de-sec-trex_vopt -pypsa-de-sec-trex_vopt,10-24h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,365.436,,,,3600.0,3600.0,benchmark-instance-more-pypsa-14,20260102-more-pypsa,2026-01-03 04:18:31.771182,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-10-24h,cbc-2.10.11,pypsa-de-sec-trex_vopt -pypsa-de-sec-trex_vopt,10-24h,gurobi,12.0.0,2024.0,TO,Timeout,3600.0,819.208,,,,3600.0,3600.0,benchmark-instance-more-pypsa-14,20260102-more-pypsa,2026-01-03 05:22:36.036080,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-10-24h,gurobi-12.0.0,pypsa-de-sec-trex_vopt -pypsa-de-sec-trex_vopt,10-24h,highs,1.9.0,2024.0,TO,Timeout,3600.0,1137.248,,,,3600.0,3600.0,benchmark-instance-more-pypsa-14,20260102-more-pypsa,2026-01-03 06:26:11.461826,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-10-24h,highs-1.9.0,pypsa-de-sec-trex_vopt -pypsa-de-sec-trex_vopt,10-24h,scip,9.2.0,2024.0,TO,Timeout,3600.0,4260.164,,,,3600.0,3600.0,benchmark-instance-more-pypsa-14,20260102-more-pypsa,2026-01-03 07:29:46.603438,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-10-24h,scip-9.2.0,pypsa-de-sec-trex_vopt -pypsa-de-sec-trex_vopt,10-24h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,348.116,,,,3600.0,3600.0,benchmark-instance-more-pypsa-14,20260102-more-pypsa,2026-01-03 08:33:25.197763,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-10-24h,cbc-2.10.12,pypsa-de-sec-trex_vopt -pypsa-de-sec-trex_vopt,10-24h,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,846.244,,,,3600.0,3600.0,benchmark-instance-more-pypsa-14,20260102-more-pypsa,2026-01-03 09:37:31.784590,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-10-24h,gurobi-13.0.0,pypsa-de-sec-trex_vopt -pypsa-de-sec-trex_vopt,10-24h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,575.9568120460026,3392.968,79059509545.0,,,575.9568120460026,3600.0,benchmark-instance-more-pypsa-14,20260102-more-pypsa,2026-01-03 10:41:08.749373,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-10-24h,highs-hipo-1.12.0-hipo,pypsa-de-sec-trex_vopt -pypsa-de-sec-trex_vopt,10-24h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,1828.070677771,789.916,79059509539.0,,,1828.070677771,3600.0,benchmark-instance-more-pypsa-14,20260102-more-pypsa,2026-01-03 10:50:45.477934,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-10-24h,highs-ipx-1.12.0-hipo,pypsa-de-sec-trex_vopt -pypsa-de-sec-trex_vopt,10-24h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1096.76,,,,3600.0,3600.0,benchmark-instance-more-pypsa-14,20260102-more-pypsa,2026-01-03 11:21:14.361645,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-10-24h,highs-1.12.0,pypsa-de-sec-trex_vopt -pypsa-de-sec-trex_vopt,10-24h,scip,10.0.0,2025.0,TO,Timeout,3600.0,4273.716,,,,3600.0,3600.0,benchmark-instance-more-pypsa-14,20260102-more-pypsa,2026-01-03 12:24:50.872785,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-10-24h,scip-10.0.0,pypsa-de-sec-trex_vopt -pypsa-de-elec-trex_vopt-dfp,20-3h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,671.56,,,,86400.0,86400.0,benchmark-instance-more-pypsa-11,20260102-more-pypsa,2026-01-02 20:50:24.676214,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-dfp-20-3h,cbc-2.10.12,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,20-3h,gurobi,13.0.0,2025.0,ok,optimal,115.81811271500192,4962.404,7528331867.077795,,,106.29105591773988,86400.0,benchmark-instance-more-pypsa-11,20260102-more-pypsa,2026-01-03 20:53:58.076379,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-dfp-20-3h,gurobi-13.0.0,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,20-3h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,1385.6175398240011,3685.216,7528331867.1,,,1385.6175398240011,86400.0,benchmark-instance-more-pypsa-11,20260102-more-pypsa,2026-01-03 20:59:03.462838,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-dfp-20-3h,highs-hipo-1.12.0-hipo,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,20-3h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,12545.108397517994,2142.644,7528331867.1,,,12545.108397517994,86400.0,benchmark-instance-more-pypsa-11,20260102-more-pypsa,2026-01-03 21:22:09.747334,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-dfp-20-3h,highs-ipx-1.12.0-hipo,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,20-3h,highs,1.12.0,2025.0,ok,optimal,73388.65796904099,3951.336,7528331867.077734,,,73377.96126055717,86400.0,benchmark-instance-more-pypsa-11,20260102-more-pypsa,2026-01-04 00:54:22.922358,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-dfp-20-3h,highs-1.12.0,pypsa-de-elec-trex_vopt-dfp -pypsa-de-elec-trex_vopt-dfp,20-3h,scip,10.0.0,2025.0,TO,Timeout,86400.0,10971.932,,,,86400.0,86400.0,benchmark-instance-more-pypsa-11,20260102-more-pypsa,2026-01-04 21:20:46.170280,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-dfp-20-3h,scip-10.0.0,pypsa-de-elec-trex_vopt-dfp -pypsa-de-sec,50-168h,glpk,5.0,2020.0,TO,Timeout,3600.0,270.504,,,,3600.0,3600.0,benchmark-instance-more-pypsa-26,20260102-more-pypsa,2026-01-02 20:50:26.521299,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-50-168h,glpk-5.0,pypsa-de-sec -pypsa-de-sec,50-168h,gurobi,10.0.0,2022.0,TO,Timeout,3600.0,601.86,,,,3600.0,3600.0,benchmark-instance-more-pypsa-26,20260102-more-pypsa,2026-01-02 21:54:51.939335,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-50-168h,gurobi-10.0.0,pypsa-de-sec -pypsa-de-sec,50-168h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,778.588,,,,3600.0,3600.0,benchmark-instance-more-pypsa-26,20260102-more-pypsa,2026-01-02 22:58:31.627111,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-50-168h,highs-1.5.0.dev0,pypsa-de-sec -pypsa-de-sec,50-168h,scip,8.0.3,2022.0,TO,Timeout,3600.0,2956.488,,,,3600.0,3600.0,benchmark-instance-more-pypsa-26,20260102-more-pypsa,2026-01-03 00:02:11.058545,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-50-168h,scip-8.0.3,pypsa-de-sec -pypsa-de-sec,50-168h,gurobi,11.0.0,2023.0,TO,Timeout,3600.0,610.336,,,,3600.0,3600.0,benchmark-instance-more-pypsa-26,20260102-more-pypsa,2026-01-03 01:08:59.107310,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-50-168h,gurobi-11.0.0,pypsa-de-sec -pypsa-de-sec,50-168h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,827.988,,,,3600.0,3600.0,benchmark-instance-more-pypsa-26,20260102-more-pypsa,2026-01-03 02:12:39.613132,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-50-168h,highs-1.6.0.dev0,pypsa-de-sec -pypsa-de-sec,50-168h,scip,8.1.0,2023.0,TO,Timeout,3600.0,2984.068,,,,3600.0,3600.0,benchmark-instance-more-pypsa-26,20260102-more-pypsa,2026-01-03 03:16:12.335274,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-50-168h,scip-8.1.0,pypsa-de-sec -pypsa-de-sec,50-168h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,301.508,,,,3600.0,3600.0,benchmark-instance-more-pypsa-26,20260102-more-pypsa,2026-01-03 04:19:43.953519,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-50-168h,cbc-2.10.11,pypsa-de-sec -pypsa-de-sec,50-168h,gurobi,12.0.0,2024.0,TO,Timeout,3600.0,549.824,,,,3600.0,3600.0,benchmark-instance-more-pypsa-26,20260102-more-pypsa,2026-01-03 05:23:44.072839,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-50-168h,gurobi-12.0.0,pypsa-de-sec -pypsa-de-sec,50-168h,highs,1.9.0,2024.0,TO,Timeout,3600.0,840.156,,,,3600.0,3600.0,benchmark-instance-more-pypsa-26,20260102-more-pypsa,2026-01-03 06:27:04.304770,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-50-168h,highs-1.9.0,pypsa-de-sec -pypsa-de-sec,50-168h,scip,9.2.0,2024.0,TO,Timeout,3600.0,2977.62,,,,3600.0,3600.0,benchmark-instance-more-pypsa-26,20260102-more-pypsa,2026-01-03 07:30:18.793037,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-50-168h,scip-9.2.0,pypsa-de-sec -pypsa-de-sec,50-168h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,284.144,,,,3600.0,3600.0,benchmark-instance-more-pypsa-26,20260102-more-pypsa,2026-01-03 08:33:52.213767,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-50-168h,cbc-2.10.12,pypsa-de-sec -pypsa-de-sec,50-168h,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,580.612,,,,3600.0,3600.0,benchmark-instance-more-pypsa-26,20260102-more-pypsa,2026-01-03 09:38:00.220717,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-50-168h,gurobi-13.0.0,pypsa-de-sec -pypsa-de-sec,50-168h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,422.0756080729989,1248.716,76995150942.0,,,422.0756080729989,3600.0,benchmark-instance-more-pypsa-26,20260102-more-pypsa,2026-01-03 10:41:42.017283,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-50-168h,highs-hipo-1.12.0-hipo,pypsa-de-sec -pypsa-de-sec,50-168h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,364.7384768460033,580.328,76995150944.0,,,364.7384768460033,3600.0,benchmark-instance-more-pypsa-26,20260102-more-pypsa,2026-01-03 10:48:45.281171,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-50-168h,highs-ipx-1.12.0-hipo,pypsa-de-sec -pypsa-de-sec,50-168h,highs,1.12.0,2025.0,TO,Timeout,3600.0,869.96,,,,3600.0,3600.0,benchmark-instance-more-pypsa-26,20260102-more-pypsa,2026-01-03 10:54:50.707286,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-50-168h,highs-1.12.0,pypsa-de-sec -pypsa-de-sec,50-168h,scip,10.0.0,2025.0,TO,Timeout,3600.0,2995.892,,,,3600.0,3600.0,benchmark-instance-more-pypsa-26,20260102-more-pypsa,2026-01-03 11:58:06.878880,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-50-168h,scip-10.0.0,pypsa-de-sec -pypsa-eur-sec-trex_vopt,50-24h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,1167.6,,,,86400.0,86400.0,benchmark-instance-more-pypsa-00,20260102-more-pypsa,2026-01-02 20:51:30.352218,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-sec-trex_vopt-50-24h,cbc-2.10.12,pypsa-eur-sec-trex_vopt -pypsa-eur-sec-trex_vopt,50-24h,gurobi,13.0.0,2025.0,TO,Timeout,86400.0,12509.524,,,,86400.0,86400.0,benchmark-instance-more-pypsa-00,20260102-more-pypsa,2026-01-03 20:55:41.058870,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-sec-trex_vopt-50-24h,gurobi-13.0.0,pypsa-eur-sec-trex_vopt -pypsa-eur-sec-trex_vopt,50-24h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,28702.95112564601,38260.336,385369358880.0,,,28702.95112564601,86400.0,benchmark-instance-more-pypsa-00,20260102-more-pypsa,2026-01-04 20:59:25.592084,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-sec-trex_vopt-50-24h,highs-hipo-1.12.0-hipo,pypsa-eur-sec-trex_vopt -pypsa-eur-sec-trex_vopt,50-24h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,49775.122470781,4012.896,385369358940.0,,,49775.122470781,86400.0,benchmark-instance-more-pypsa-00,20260102-more-pypsa,2026-01-05 05:01:40.916853,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-sec-trex_vopt-50-24h,highs-ipx-1.12.0-hipo,pypsa-eur-sec-trex_vopt -pypsa-eur-sec-trex_vopt,50-24h,highs,1.12.0,2025.0,TO,Timeout,86400.0,3888.232,,,,86400.0,86400.0,benchmark-instance-more-pypsa-00,20260102-more-pypsa,2026-01-05 18:54:58.148684,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-sec-trex_vopt-50-24h,highs-1.12.0,pypsa-eur-sec-trex_vopt -pypsa-eur-sec-trex_vopt,50-24h,scip,10.0.0,2025.0,TO,Timeout,86400.0,18574.792,,,,86400.0,86400.0,benchmark-instance-more-pypsa-00,20260102-more-pypsa,2026-01-06 18:58:32.583730,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-sec-trex_vopt-50-24h,scip-10.0.0,pypsa-eur-sec-trex_vopt -pypsa-de-elec-trex_vopt,20-3h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,671.8,,,,86400.0,86400.0,benchmark-instance-more-pypsa-12,20260102-more-pypsa,2026-01-02 20:50:14.013020,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-20-3h,cbc-2.10.12,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,20-3h,gurobi,13.0.0,2025.0,ok,optimal,126.3865236290003,4910.452,7528335115.560469,,,115.38533687591551,86400.0,benchmark-instance-more-pypsa-12,20260102-more-pypsa,2026-01-03 20:54:15.604407,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-20-3h,gurobi-13.0.0,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,20-3h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,1440.023066277994,3749.332,7528335115.6,,,1440.023066277994,86400.0,benchmark-instance-more-pypsa-12,20260102-more-pypsa,2026-01-03 21:00:02.829028,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-20-3h,highs-hipo-1.12.0-hipo,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,20-3h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,14309.817288521996,2128.016,7528335115.6,,,14309.817288521996,86400.0,benchmark-instance-more-pypsa-12,20260102-more-pypsa,2026-01-03 21:24:03.625045,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-20-3h,highs-ipx-1.12.0-hipo,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,20-3h,highs,1.12.0,2025.0,TO,Timeout,86400.0,2629.768,,,,86400.0,86400.0,benchmark-instance-more-pypsa-12,20260102-more-pypsa,2026-01-04 01:26:05.403711,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-20-3h,highs-1.12.0,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,20-3h,scip,10.0.0,2025.0,TO,Timeout,86400.0,11028.524,,,,86400.0,86400.0,benchmark-instance-more-pypsa-12,20260102-more-pypsa,2026-01-05 01:29:45.741057,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-20-3h,scip-10.0.0,pypsa-de-elec-trex_vopt -pypsa-eur-elec-trex_vopt-dfp,50-168h,glpk,5.0,2020.0,ok,optimal,259.307713394,240.088,35670084070.0,,,,3600.0,benchmark-instance-more-pypsa-28,20260102-more-pypsa,2026-01-02 20:49:18.471542,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-dfp-50-168h,glpk-5.0,pypsa-eur-elec-trex_vopt-dfp -pypsa-eur-elec-trex_vopt-dfp,50-168h,gurobi,10.0.0,2022.0,ok,optimal,227.291879969,347.916,35670084070.76351,,,226.33072209358212,3600.0,benchmark-instance-more-pypsa-28,20260102-more-pypsa,2026-01-02 20:58:03.685434,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-dfp-50-168h,gurobi-10.0.0,pypsa-eur-elec-trex_vopt-dfp -pypsa-eur-elec-trex_vopt-dfp,50-168h,highs,1.5.0.dev0,2022.0,ok,optimal,233.928868343,377.86,35670084070.76392,,,233.24233317375183,3600.0,benchmark-instance-more-pypsa-28,20260102-more-pypsa,2026-01-02 21:05:37.702174,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-dfp-50-168h,highs-1.5.0.dev0,pypsa-eur-elec-trex_vopt-dfp -pypsa-eur-elec-trex_vopt-dfp,50-168h,scip,8.0.3,2022.0,ok,optimal,1037.789125936,829.26,35670084070.764786,,,1037.135995,3600.0,benchmark-instance-more-pypsa-28,20260102-more-pypsa,2026-01-02 21:09:32.759017,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-dfp-50-168h,scip-8.0.3,pypsa-eur-elec-trex_vopt-dfp -pypsa-eur-elec-trex_vopt-dfp,50-168h,gurobi,11.0.0,2023.0,ok,optimal,227.8077648399999,350.972,35670084070.76354,,,226.98569703102112,3600.0,benchmark-instance-more-pypsa-28,20260102-more-pypsa,2026-01-02 21:30:13.656191,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-dfp-50-168h,gurobi-11.0.0,pypsa-eur-elec-trex_vopt-dfp -pypsa-eur-elec-trex_vopt-dfp,50-168h,highs,1.6.0.dev0,2023.0,ok,optimal,232.10518696100007,377.344,35670084070.76392,,,231.6320621967316,3600.0,benchmark-instance-more-pypsa-28,20260102-more-pypsa,2026-01-02 21:37:46.853575,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-dfp-50-168h,highs-1.6.0.dev0,pypsa-eur-elec-trex_vopt-dfp -pypsa-eur-elec-trex_vopt-dfp,50-168h,scip,8.1.0,2023.0,ok,optimal,1055.0858942480004,832.612,35670084070.764786,,,1054.516882,3600.0,benchmark-instance-more-pypsa-28,20260102-more-pypsa,2026-01-02 21:41:40.033334,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-dfp-50-168h,scip-8.1.0,pypsa-eur-elec-trex_vopt-dfp -pypsa-eur-elec-trex_vopt-dfp,50-168h,cbc,2.10.11,2023.0,ok,optimal,241.9408278410001,212.42,35670084070.76348,,,,3600.0,benchmark-instance-more-pypsa-28,20260102-more-pypsa,2026-01-02 21:59:16.337590,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-dfp-50-168h,cbc-2.10.11,pypsa-eur-elec-trex_vopt-dfp -pypsa-eur-elec-trex_vopt-dfp,50-168h,gurobi,12.0.0,2024.0,ok,optimal,204.7407649979996,337.512,35670084070.7635,,,203.925726890564,3600.0,benchmark-instance-more-pypsa-28,20260102-more-pypsa,2026-01-02 22:03:49.020750,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-dfp-50-168h,gurobi-12.0.0,pypsa-eur-elec-trex_vopt-dfp -pypsa-eur-elec-trex_vopt-dfp,50-168h,highs,1.9.0,2024.0,ok,optimal,243.0739131719993,364.772,35670084070.76377,,,242.30775809288025,3600.0,benchmark-instance-more-pypsa-28,20260102-more-pypsa,2026-01-02 22:10:55.750209,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-dfp-50-168h,highs-1.9.0,pypsa-eur-elec-trex_vopt-dfp -pypsa-eur-elec-trex_vopt-dfp,50-168h,scip,9.2.0,2024.0,ok,optimal,1050.4411744400004,817.724,35670084070.764786,,,1049.863301,3600.0,benchmark-instance-more-pypsa-28,20260102-more-pypsa,2026-01-02 22:15:00.149472,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-dfp-50-168h,scip-9.2.0,pypsa-eur-elec-trex_vopt-dfp -pypsa-eur-elec-trex_vopt-dfp,50-168h,cbc,2.10.12,2024.0,ok,optimal,243.45702185700063,228.652,35670084070.76348,,,,3600.0,benchmark-instance-more-pypsa-28,20260102-more-pypsa,2026-01-02 22:32:32.062536,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-dfp-50-168h,cbc-2.10.12,pypsa-eur-elec-trex_vopt-dfp -pypsa-eur-elec-trex_vopt-dfp,50-168h,gurobi,13.0.0,2025.0,ok,optimal,172.07380029099932,364.008,35670084070.76342,,,171.2646849155426,3600.0,benchmark-instance-more-pypsa-28,20260102-more-pypsa,2026-01-02 22:37:07.211862,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-dfp-50-168h,gurobi-13.0.0,pypsa-eur-elec-trex_vopt-dfp -pypsa-eur-elec-trex_vopt-dfp,50-168h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,25.045641773999705,199.392,35670084071.0,,,25.045641773999705,3600.0,benchmark-instance-more-pypsa-28,20260102-more-pypsa,2026-01-02 22:43:44.750363,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-dfp-50-168h,highs-hipo-1.12.0-hipo,pypsa-eur-elec-trex_vopt-dfp -pypsa-eur-elec-trex_vopt-dfp,50-168h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,30.630777308000688,163.888,35670084071.0,,,30.630777308000688,3600.0,benchmark-instance-more-pypsa-28,20260102-more-pypsa,2026-01-02 22:44:10.809262,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-dfp-50-168h,highs-ipx-1.12.0-hipo,pypsa-eur-elec-trex_vopt-dfp -pypsa-eur-elec-trex_vopt-dfp,50-168h,highs,1.12.0,2025.0,ok,optimal,242.8438192170006,393.304,35670084070.76342,,,242.2905523777008,3600.0,benchmark-instance-more-pypsa-28,20260102-more-pypsa,2026-01-02 22:44:42.206901,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-dfp-50-168h,highs-1.12.0,pypsa-eur-elec-trex_vopt-dfp -pypsa-eur-elec-trex_vopt-dfp,50-168h,scip,10.0.0,2025.0,ok,optimal,1047.0486048720004,845.1,35670084070.764786,,,1046.464534,3600.0,benchmark-instance-more-pypsa-28,20260102-more-pypsa,2026-01-02 22:48:46.177230,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-dfp-50-168h,scip-10.0.0,pypsa-eur-elec-trex_vopt-dfp -pypsa-de-sec-trex_vopt,20-12h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,966.832,,,,86400.0,86400.0,benchmark-instance-more-pypsa-03,20260102-more-pypsa,2026-01-02 20:51:22.221615,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-20-12h,cbc-2.10.12,pypsa-de-sec-trex_vopt -pypsa-de-sec-trex_vopt,20-12h,gurobi,13.0.0,2025.0,TO,Timeout,86400.0,8264.64,,,,86400.0,86400.0,benchmark-instance-more-pypsa-03,20260102-more-pypsa,2026-01-03 20:55:20.462289,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-20-12h,gurobi-13.0.0,pypsa-de-sec-trex_vopt -pypsa-de-sec-trex_vopt,20-12h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,10818.521380600983,23055.684,78752307576.0,,,10818.521380600983,86400.0,benchmark-instance-more-pypsa-03,20260102-more-pypsa,2026-01-04 20:59:02.265603,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-20-12h,highs-hipo-1.12.0-hipo,pypsa-de-sec-trex_vopt -pypsa-de-sec-trex_vopt,20-12h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,35540.83402136102,3069.572,78752307648.0,,,35540.83402136102,86400.0,benchmark-instance-more-pypsa-03,20260102-more-pypsa,2026-01-05 00:02:52.066395,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-20-12h,highs-ipx-1.12.0-hipo,pypsa-de-sec-trex_vopt -pypsa-de-sec-trex_vopt,20-12h,highs,1.12.0,2025.0,TO,Timeout,86400.0,3303.336,,,,86400.0,86400.0,benchmark-instance-more-pypsa-03,20260102-more-pypsa,2026-01-05 09:59:01.966168,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-20-12h,highs-1.12.0,pypsa-de-sec-trex_vopt -pypsa-de-sec-trex_vopt,20-12h,scip,10.0.0,2025.0,TO,Timeout,86400.0,15180.308,,,,86400.0,86400.0,benchmark-instance-more-pypsa-03,20260102-more-pypsa,2026-01-06 10:02:40.703894,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-20-12h,scip-10.0.0,pypsa-de-sec-trex_vopt -pypsa-eur-elec-trex_copt,50-168h,glpk,5.0,2020.0,ok,optimal,223.18042389700005,239.544,35669861600.0,,,,3600.0,benchmark-instance-more-pypsa-31,20260102-more-pypsa,2026-01-02 20:49:16.313461,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-50-168h,glpk-5.0,pypsa-eur-elec-trex_copt -pypsa-eur-elec-trex_copt,50-168h,gurobi,10.0.0,2022.0,ok,optimal,207.70265126900009,346.312,35669861602.83872,,,206.8320908546448,3600.0,benchmark-instance-more-pypsa-31,20260102-more-pypsa,2026-01-02 20:56:42.594196,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-50-168h,gurobi-10.0.0,pypsa-eur-elec-trex_copt -pypsa-eur-elec-trex_copt,50-168h,highs,1.5.0.dev0,2022.0,ok,optimal,200.93848306699988,387.968,35669861602.839134,,,200.37284755706787,3600.0,benchmark-instance-more-pypsa-31,20260102-more-pypsa,2026-01-02 21:03:20.204287,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-50-168h,highs-1.5.0.dev0,pypsa-eur-elec-trex_copt -pypsa-eur-elec-trex_copt,50-168h,scip,8.0.3,2022.0,ok,optimal,633.6691176019999,833.816,35669861602.83836,,,633.084229,3600.0,benchmark-instance-more-pypsa-31,20260102-more-pypsa,2026-01-02 21:06:42.136260,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-50-168h,scip-8.0.3,pypsa-eur-elec-trex_copt -pypsa-eur-elec-trex_copt,50-168h,gurobi,11.0.0,2023.0,ok,optimal,193.19456192400003,349.224,35669861602.83863,,,192.4614839553833,3600.0,benchmark-instance-more-pypsa-31,20260102-more-pypsa,2026-01-02 21:20:11.906300,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-50-168h,gurobi-11.0.0,pypsa-eur-elec-trex_copt -pypsa-eur-elec-trex_copt,50-168h,highs,1.6.0.dev0,2023.0,ok,optimal,198.581982358,388.336,35669861602.839134,,,198.1848337650299,3600.0,benchmark-instance-more-pypsa-31,20260102-more-pypsa,2026-01-02 21:26:35.361738,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-50-168h,highs-1.6.0.dev0,pypsa-eur-elec-trex_copt -pypsa-eur-elec-trex_copt,50-168h,scip,8.1.0,2023.0,ok,optimal,629.9507239490003,839.176,35669861602.83836,,,629.449815,3600.0,benchmark-instance-more-pypsa-31,20260102-more-pypsa,2026-01-02 21:29:54.852247,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-50-168h,scip-8.1.0,pypsa-eur-elec-trex_copt -pypsa-eur-elec-trex_copt,50-168h,cbc,2.10.11,2023.0,ok,optimal,177.74881458499976,211.68,35669861602.83872,,,,3600.0,benchmark-instance-more-pypsa-31,20260102-more-pypsa,2026-01-02 21:40:25.864462,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-50-168h,cbc-2.10.11,pypsa-eur-elec-trex_copt -pypsa-eur-elec-trex_copt,50-168h,gurobi,12.0.0,2024.0,ok,optimal,142.58490863800034,334.064,35669861602.83874,,,141.87733507156372,3600.0,benchmark-instance-more-pypsa-31,20260102-more-pypsa,2026-01-02 21:43:49.468255,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-50-168h,gurobi-12.0.0,pypsa-eur-elec-trex_copt -pypsa-eur-elec-trex_copt,50-168h,highs,1.9.0,2024.0,ok,optimal,192.31366958699985,367.416,35669861602.83939,,,191.61337113380432,3600.0,benchmark-instance-more-pypsa-31,20260102-more-pypsa,2026-01-02 21:49:30.508539,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-50-168h,highs-1.9.0,pypsa-eur-elec-trex_copt -pypsa-eur-elec-trex_copt,50-168h,scip,9.2.0,2024.0,ok,optimal,631.1221234140003,822.164,35669861602.83836,,,630.619883,3600.0,benchmark-instance-more-pypsa-31,20260102-more-pypsa,2026-01-02 21:52:44.013472,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-50-168h,scip-9.2.0,pypsa-eur-elec-trex_copt -pypsa-eur-elec-trex_copt,50-168h,cbc,2.10.12,2024.0,ok,optimal,179.13086913899951,231.524,35669861602.83872,,,,3600.0,benchmark-instance-more-pypsa-31,20260102-more-pypsa,2026-01-02 22:03:16.443450,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-50-168h,cbc-2.10.12,pypsa-eur-elec-trex_copt -pypsa-eur-elec-trex_copt,50-168h,gurobi,13.0.0,2025.0,ok,optimal,151.4885618420003,367.152,35669861602.83903,,,150.77744388580322,3600.0,benchmark-instance-more-pypsa-31,20260102-more-pypsa,2026-01-02 22:06:42.336379,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-50-168h,gurobi-13.0.0,pypsa-eur-elec-trex_copt -pypsa-eur-elec-trex_copt,50-168h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,20.922103823000725,202.364,35669861603.0,,,20.922103823000725,3600.0,benchmark-instance-more-pypsa-31,20260102-more-pypsa,2026-01-02 22:12:24.316883,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-50-168h,highs-hipo-1.12.0-hipo,pypsa-eur-elec-trex_copt -pypsa-eur-elec-trex_copt,50-168h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,25.56344634600009,163.536,35669861603.0,,,25.56344634600009,3600.0,benchmark-instance-more-pypsa-31,20260102-more-pypsa,2026-01-02 22:12:46.217843,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-50-168h,highs-ipx-1.12.0-hipo,pypsa-eur-elec-trex_copt -pypsa-eur-elec-trex_copt,50-168h,highs,1.12.0,2025.0,ok,optimal,187.8038783359998,390.108,35669861602.83901,,,187.31418871879575,3600.0,benchmark-instance-more-pypsa-31,20260102-more-pypsa,2026-01-02 22:13:12.424016,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-50-168h,highs-1.12.0,pypsa-eur-elec-trex_copt -pypsa-eur-elec-trex_copt,50-168h,scip,10.0.0,2025.0,ok,optimal,628.6247019009998,848.528,35669861602.83836,,,628.120543,3600.0,benchmark-instance-more-pypsa-31,20260102-more-pypsa,2026-01-02 22:16:21.175277,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-50-168h,scip-10.0.0,pypsa-eur-elec-trex_copt -pypsa-de-elec-trex_vopt,50-24h,glpk,5.0,2020.0,ok,optimal,3270.448269049,759.956,7061392450.0,,,,3600.0,benchmark-instance-more-pypsa-17,20260102-more-pypsa,2026-01-02 20:49:34.599791,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-50-24h,glpk-5.0,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,50-24h,gurobi,10.0.0,2022.0,ok,optimal,717.0627332429999,1192.168,7061392449.543745,,,712.9392540454865,3600.0,benchmark-instance-more-pypsa-17,20260102-more-pypsa,2026-01-02 21:48:36.033810,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-50-24h,gurobi-10.0.0,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,50-24h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1042.096,,,,3600.0,3600.0,benchmark-instance-more-pypsa-17,20260102-more-pypsa,2026-01-02 22:04:20.803256,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-50-24h,highs-1.5.0.dev0,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,50-24h,scip,8.0.3,2022.0,TO,Timeout,3600.0,3280.74,,,,3600.0,3600.0,benchmark-instance-more-pypsa-17,20260102-more-pypsa,2026-01-02 23:08:00.954720,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-50-24h,scip-8.0.3,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,50-24h,gurobi,11.0.0,2023.0,ok,optimal,643.615833797001,1157.58,7061392449.543734,,,640.2725429534912,3600.0,benchmark-instance-more-pypsa-17,20260102-more-pypsa,2026-01-03 00:15:14.320855,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-50-24h,gurobi-11.0.0,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,50-24h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,973.812,,,,3600.0,3600.0,benchmark-instance-more-pypsa-17,20260102-more-pypsa,2026-01-03 00:29:43.934799,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-50-24h,highs-1.6.0.dev0,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,50-24h,scip,8.1.0,2023.0,TO,Timeout,3600.0,3345.624,,,,3600.0,3600.0,benchmark-instance-more-pypsa-17,20260102-more-pypsa,2026-01-03 01:33:24.203716,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-50-24h,scip-8.1.0,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,50-24h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,306.52,,,,3600.0,3600.0,benchmark-instance-more-pypsa-17,20260102-more-pypsa,2026-01-03 02:37:10.889199,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-50-24h,cbc-2.10.11,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,50-24h,gurobi,12.0.0,2024.0,ok,optimal,3473.896798512,1139.696,7061392449.543623,,,3470.330692052841,3600.0,benchmark-instance-more-pypsa-17,20260102-more-pypsa,2026-01-03 03:41:22.842731,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-50-24h,gurobi-12.0.0,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,50-24h,highs,1.9.0,2024.0,TO,Timeout,3600.0,994.296,,,,3600.0,3600.0,benchmark-instance-more-pypsa-17,20260102-more-pypsa,2026-01-03 04:43:07.310266,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-50-24h,highs-1.9.0,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,50-24h,scip,9.2.0,2024.0,TO,Timeout,3600.0,3335.208,,,,3600.0,3600.0,benchmark-instance-more-pypsa-17,20260102-more-pypsa,2026-01-03 05:46:51.935222,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-50-24h,scip-9.2.0,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,50-24h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,289.268,,,,3600.0,3600.0,benchmark-instance-more-pypsa-17,20260102-more-pypsa,2026-01-03 06:50:35.188765,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-50-24h,cbc-2.10.12,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,50-24h,gurobi,13.0.0,2025.0,ok,optimal,3093.7610360370018,1161.452,7061392449.543631,,,3090.426092863083,3600.0,benchmark-instance-more-pypsa-17,20260102-more-pypsa,2026-01-03 07:54:49.279658,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-50-24h,gurobi-13.0.0,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,50-24h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,541.3329602550002,3249.544,7061392449.5,,,541.3329602550002,3600.0,benchmark-instance-more-pypsa-17,20260102-more-pypsa,2026-01-03 08:50:12.788866,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-50-24h,highs-hipo-1.12.0-hipo,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,50-24h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,769.4320282530025,647.74,7061392449.5,,,769.4320282530025,3600.0,benchmark-instance-more-pypsa-17,20260102-more-pypsa,2026-01-03 08:59:14.953479,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-50-24h,highs-ipx-1.12.0-hipo,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,50-24h,highs,1.12.0,2025.0,TO,Timeout,3600.0,961.28,,,,3600.0,3600.0,benchmark-instance-more-pypsa-17,20260102-more-pypsa,2026-01-03 09:12:05.508837,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-50-24h,highs-1.12.0,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,50-24h,scip,10.0.0,2025.0,TO,Timeout,3600.0,3307.348,,,,3600.0,3600.0,benchmark-instance-more-pypsa-17,20260102-more-pypsa,2026-01-03 10:15:45.896782,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-50-24h,scip-10.0.0,pypsa-de-elec-trex_vopt -pypsa-de-elec-dfp,50-24h,glpk,5.0,2020.0,TO,Timeout,3600.0,277.164,,,,3600.0,3600.0,benchmark-instance-more-pypsa-20,20260102-more-pypsa,2026-01-02 20:50:33.448062,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-dfp-50-24h,glpk-5.0,pypsa-de-elec-dfp -pypsa-de-elec-dfp,50-24h,gurobi,10.0.0,2022.0,ok,optimal,1055.1277436179998,1184.848,7119065938.325077,,,1050.8329939842224,3600.0,benchmark-instance-more-pypsa-20,20260102-more-pypsa,2026-01-02 21:54:48.257052,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-dfp-50-24h,gurobi-10.0.0,pypsa-de-elec-dfp -pypsa-de-elec-dfp,50-24h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,962.352,,,,3600.0,3600.0,benchmark-instance-more-pypsa-20,20260102-more-pypsa,2026-01-02 22:16:18.021250,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-dfp-50-24h,highs-1.5.0.dev0,pypsa-de-elec-dfp -pypsa-de-elec-dfp,50-24h,scip,8.0.3,2022.0,TO,Timeout,3600.0,3028.78,,,,3600.0,3600.0,benchmark-instance-more-pypsa-20,20260102-more-pypsa,2026-01-02 23:20:01.178757,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-dfp-50-24h,scip-8.0.3,pypsa-de-elec-dfp -pypsa-de-elec-dfp,50-24h,gurobi,11.0.0,2023.0,ok,optimal,1033.776595302999,1149.312,7119065938.325077,,,1030.3616108894348,3600.0,benchmark-instance-more-pypsa-20,20260102-more-pypsa,2026-01-03 00:27:20.499153,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-dfp-50-24h,gurobi-11.0.0,pypsa-de-elec-dfp -pypsa-de-elec-dfp,50-24h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,897.524,,,,3600.0,3600.0,benchmark-instance-more-pypsa-20,20260102-more-pypsa,2026-01-03 00:48:29.018552,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-dfp-50-24h,highs-1.6.0.dev0,pypsa-de-elec-dfp -pypsa-de-elec-dfp,50-24h,scip,8.1.0,2023.0,TO,Timeout,3600.0,3077.14,,,,3600.0,3600.0,benchmark-instance-more-pypsa-20,20260102-more-pypsa,2026-01-03 01:52:23.796100,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-dfp-50-24h,scip-8.1.0,pypsa-de-elec-dfp -pypsa-de-elec-dfp,50-24h,cbc,2.10.11,2023.0,ok,optimal,2451.3739448300003,704.5,7119065938.325058,,,,3600.0,benchmark-instance-more-pypsa-20,20260102-more-pypsa,2026-01-03 02:56:11.371793,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-dfp-50-24h,cbc-2.10.11,pypsa-de-elec-dfp -pypsa-de-elec-dfp,50-24h,gurobi,12.0.0,2024.0,ok,optimal,864.5261526819995,1141.716,7119065938.3250885,,,861.0945658683777,3600.0,benchmark-instance-more-pypsa-20,20260102-more-pypsa,2026-01-03 03:37:36.289154,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-dfp-50-24h,gurobi-12.0.0,pypsa-de-elec-dfp -pypsa-de-elec-dfp,50-24h,highs,1.9.0,2024.0,TO,Timeout,3600.0,918.812,,,,3600.0,3600.0,benchmark-instance-more-pypsa-20,20260102-more-pypsa,2026-01-03 03:55:49.982873,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-dfp-50-24h,highs-1.9.0,pypsa-de-elec-dfp -pypsa-de-elec-dfp,50-24h,scip,9.2.0,2024.0,TO,Timeout,3600.0,3061.188,,,,3600.0,3600.0,benchmark-instance-more-pypsa-20,20260102-more-pypsa,2026-01-03 04:59:39.619250,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-dfp-50-24h,scip-9.2.0,pypsa-de-elec-dfp -pypsa-de-elec-dfp,50-24h,cbc,2.10.12,2024.0,ok,optimal,2453.763665751001,707.716,7119065938.325058,,,,3600.0,benchmark-instance-more-pypsa-20,20260102-more-pypsa,2026-01-03 06:03:28.443173,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-dfp-50-24h,cbc-2.10.12,pypsa-de-elec-dfp -pypsa-de-elec-dfp,50-24h,gurobi,13.0.0,2025.0,ok,optimal,1244.5537479170016,1163.576,7119065938.325085,,,1241.098746061325,3600.0,benchmark-instance-more-pypsa-20,20260102-more-pypsa,2026-01-03 06:45:00.764246,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-dfp-50-24h,gurobi-13.0.0,pypsa-de-elec-dfp -pypsa-de-elec-dfp,50-24h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,1285.069594802997,3670.512,7119065938.3,,,1285.069594802997,3600.0,benchmark-instance-more-pypsa-20,20260102-more-pypsa,2026-01-03 07:09:35.893932,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-dfp-50-24h,highs-hipo-1.12.0-hipo,pypsa-de-elec-dfp -pypsa-de-elec-dfp,50-24h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,819.9649087229991,614.112,7119065938.3,,,819.9649087229991,3600.0,benchmark-instance-more-pypsa-20,20260102-more-pypsa,2026-01-03 07:31:02.293717,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-dfp-50-24h,highs-ipx-1.12.0-hipo,pypsa-de-elec-dfp -pypsa-de-elec-dfp,50-24h,highs,1.12.0,2025.0,TO,Timeout,3600.0,886.1,,,,3600.0,3600.0,benchmark-instance-more-pypsa-20,20260102-more-pypsa,2026-01-03 07:44:43.433018,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-dfp-50-24h,highs-1.12.0,pypsa-de-elec-dfp -pypsa-de-elec-dfp,50-24h,scip,10.0.0,2025.0,TO,Timeout,3600.0,3079.072,,,,3600.0,3600.0,benchmark-instance-more-pypsa-20,20260102-more-pypsa,2026-01-03 08:48:44.291578,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-dfp-50-24h,scip-10.0.0,pypsa-de-elec-dfp -pypsa-eur-elec-dfp,100-12h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,841.24,,,,86400.0,86400.0,benchmark-instance-more-pypsa-10,20260102-more-pypsa,2026-01-02 20:51:02.721556,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-elec-dfp-100-12h,cbc-2.10.12,pypsa-eur-elec-dfp -pypsa-eur-elec-dfp,100-12h,gurobi,13.0.0,2025.0,ok,optimal,790.442793921,5973.052,37400211515.94621,,,775.8823502063751,86400.0,benchmark-instance-more-pypsa-10,20260102-more-pypsa,2026-01-03 20:55:02.374123,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-elec-dfp-100-12h,gurobi-13.0.0,pypsa-eur-elec-dfp -pypsa-eur-elec-dfp,100-12h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,3939.728839737,14371.0,37400211516.0,,,3939.728839737,86400.0,benchmark-instance-more-pypsa-10,20260102-more-pypsa,2026-01-03 21:11:57.176865,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-elec-dfp-100-12h,highs-hipo-1.12.0-hipo,pypsa-eur-elec-dfp -pypsa-eur-elec-dfp,100-12h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,19871.676533331996,2731.908,37400211518.0,,,19871.676533331996,86400.0,benchmark-instance-more-pypsa-10,20260102-more-pypsa,2026-01-03 22:21:05.992773,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-elec-dfp-100-12h,highs-ipx-1.12.0-hipo,pypsa-eur-elec-dfp -pypsa-eur-elec-dfp,100-12h,highs,1.12.0,2025.0,TO,Timeout,86400.0,3185.356,,,,86400.0,86400.0,benchmark-instance-more-pypsa-10,20260102-more-pypsa,2026-01-04 03:55:52.576787,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-elec-dfp-100-12h,highs-1.12.0,pypsa-eur-elec-dfp -pypsa-eur-elec-dfp,100-12h,scip,10.0.0,2025.0,ER,,,17084.152,,,,,86400.0,benchmark-instance-more-pypsa-10,20260102-more-pypsa,2026-01-05 03:59:31.232317,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-elec-dfp-100-12h,scip-10.0.0,pypsa-eur-elec-dfp -pypsa-de-sec,10-168h,glpk,5.0,2020.0,ok,optimal,2166.204519363,244.208,76628645060.0,,,,3600.0,benchmark-instance-more-pypsa-27,20260102-more-pypsa,2026-01-02 20:49:13.748343,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-10-168h,glpk-5.0,pypsa-de-sec -pypsa-de-sec,10-168h,gurobi,10.0.0,2022.0,ok,optimal,190.7106732280004,370.744,76628645061.99557,,,189.69126915931705,3600.0,benchmark-instance-more-pypsa-27,20260102-more-pypsa,2026-01-02 21:29:36.897301,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-10-168h,gurobi-10.0.0,pypsa-de-sec -pypsa-de-sec,10-168h,highs,1.5.0.dev0,2022.0,ok,optimal,779.3700415510002,386.924,76628645061.99486,,,778.6477394104004,3600.0,benchmark-instance-more-pypsa-27,20260102-more-pypsa,2026-01-02 21:36:25.162255,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-10-168h,highs-1.5.0.dev0,pypsa-de-sec -pypsa-de-sec,10-168h,scip,8.0.3,2022.0,ok,optimal,306.59071449500016,908.416,76628645061.99442,,,305.900863,3600.0,benchmark-instance-more-pypsa-27,20260102-more-pypsa,2026-01-02 21:49:25.690743,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-10-168h,scip-8.0.3,pypsa-de-sec -pypsa-de-sec,10-168h,gurobi,11.0.0,2023.0,ok,optimal,205.85455060000004,374.184,76628645061.99562,,,205.0143280029297,3600.0,benchmark-instance-more-pypsa-27,20260102-more-pypsa,2026-01-02 21:57:53.100719,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-10-168h,gurobi-11.0.0,pypsa-de-sec -pypsa-de-sec,10-168h,highs,1.6.0.dev0,2023.0,ok,optimal,779.0917812400003,395.932,76628645061.99486,,,778.5873599052429,3600.0,benchmark-instance-more-pypsa-27,20260102-more-pypsa,2026-01-02 22:04:57.760647,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-10-168h,highs-1.6.0.dev0,pypsa-de-sec -pypsa-de-sec,10-168h,scip,8.1.0,2023.0,ok,optimal,307.46930514700034,906.472,76628645061.99442,,,306.880047,3600.0,benchmark-instance-more-pypsa-27,20260102-more-pypsa,2026-01-02 22:17:57.911837,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-10-168h,scip-8.1.0,pypsa-de-sec -pypsa-de-sec,10-168h,cbc,2.10.11,2023.0,ok,optimal,387.7350101869997,218.464,76628645061.3232,,,,3600.0,benchmark-instance-more-pypsa-27,20260102-more-pypsa,2026-01-02 22:23:06.646371,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-10-168h,cbc-2.10.11,pypsa-de-sec -pypsa-de-sec,10-168h,gurobi,12.0.0,2024.0,ok,optimal,143.53945383999962,351.984,76628645061.99557,,,142.70763301849365,3600.0,benchmark-instance-more-pypsa-27,20260102-more-pypsa,2026-01-02 22:30:01.967423,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-10-168h,gurobi-12.0.0,pypsa-de-sec -pypsa-de-sec,10-168h,highs,1.9.0,2024.0,ok,optimal,372.2798345629999,380.604,76628645061.99387,,,371.4587128162384,3600.0,benchmark-instance-more-pypsa-27,20260102-more-pypsa,2026-01-02 22:36:03.706612,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-10-168h,highs-1.9.0,pypsa-de-sec -pypsa-de-sec,10-168h,scip,9.2.0,2024.0,ok,optimal,305.8552111219997,884.336,76628645061.99442,,,305.269656,3600.0,benchmark-instance-more-pypsa-27,20260102-more-pypsa,2026-01-02 22:42:17.359954,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-10-168h,scip-9.2.0,pypsa-de-sec -pypsa-de-sec,10-168h,cbc,2.10.12,2024.0,ok,optimal,389.5514328119998,237.604,76628645061.3232,,,,3600.0,benchmark-instance-more-pypsa-27,20260102-more-pypsa,2026-01-02 22:47:24.776562,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-10-168h,cbc-2.10.12,pypsa-de-sec -pypsa-de-sec,10-168h,gurobi,13.0.0,2025.0,ok,optimal,196.56547093599968,383.428,76628645061.99567,,,195.75509190559387,3600.0,benchmark-instance-more-pypsa-27,20260102-more-pypsa,2026-01-02 22:54:24.909773,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-10-168h,gurobi-13.0.0,pypsa-de-sec -pypsa-de-sec,10-168h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,33.29041944299934,239.228,76628645064.0,,,33.29041944299934,3600.0,benchmark-instance-more-pypsa-27,20260102-more-pypsa,2026-01-02 23:01:20.499747,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-10-168h,highs-hipo-1.12.0-hipo,pypsa-de-sec -pypsa-de-sec,10-168h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,25.267915889000506,163.7,76628645063.0,,,25.267915889000506,3600.0,benchmark-instance-more-pypsa-27,20260102-more-pypsa,2026-01-02 23:01:54.730203,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-10-168h,highs-ipx-1.12.0-hipo,pypsa-de-sec -pypsa-de-sec,10-168h,highs,1.12.0,2025.0,ok,optimal,454.9955877880002,412.548,76628645061.99553,,,454.4285228252411,3600.0,benchmark-instance-more-pypsa-27,20260102-more-pypsa,2026-01-02 23:02:20.758471,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-10-168h,highs-1.12.0,pypsa-de-sec -pypsa-de-sec,10-168h,scip,10.0.0,2025.0,ok,optimal,303.3921209430009,915.996,76628645061.99442,,,302.791316,3600.0,benchmark-instance-more-pypsa-27,20260102-more-pypsa,2026-01-02 23:09:56.890282,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-10-168h,scip-10.0.0,pypsa-de-sec -pypsa-eur-sec-trex_copt,50-24h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,1167.116,,,,86400.0,86400.0,benchmark-instance-more-pypsa-01,20260102-more-pypsa,2026-01-02 20:50:15.062772,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-sec-trex_copt-50-24h,cbc-2.10.12,pypsa-eur-sec-trex_copt -pypsa-eur-sec-trex_copt,50-24h,gurobi,13.0.0,2025.0,TO,Timeout,86400.0,12139.036,,,,86400.0,86400.0,benchmark-instance-more-pypsa-01,20260102-more-pypsa,2026-01-03 20:54:24.954510,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-sec-trex_copt-50-24h,gurobi-13.0.0,pypsa-eur-sec-trex_copt -pypsa-eur-sec-trex_copt,50-24h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,28852.36174731801,38004.248,385371939240.0,,,28852.36174731801,86400.0,benchmark-instance-more-pypsa-01,20260102-more-pypsa,2026-01-04 20:58:02.687213,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-sec-trex_copt-50-24h,highs-hipo-1.12.0-hipo,pypsa-eur-sec-trex_copt -pypsa-eur-sec-trex_copt,50-24h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,53878.73437031798,4001.792,385371939200.0,,,53878.73437031798,86400.0,benchmark-instance-more-pypsa-01,20260102-more-pypsa,2026-01-05 05:02:39.380981,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-sec-trex_copt-50-24h,highs-ipx-1.12.0-hipo,pypsa-eur-sec-trex_copt -pypsa-eur-sec-trex_copt,50-24h,highs,1.12.0,2025.0,TO,Timeout,86400.0,3890.696,,,,86400.0,86400.0,benchmark-instance-more-pypsa-01,20260102-more-pypsa,2026-01-05 20:04:25.794450,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-sec-trex_copt-50-24h,highs-1.12.0,pypsa-eur-sec-trex_copt -pypsa-eur-sec-trex_copt,50-24h,scip,10.0.0,2025.0,TO,Timeout,86400.0,18605.708,,,,86400.0,86400.0,benchmark-instance-more-pypsa-01,20260102-more-pypsa,2026-01-06 20:08:08.170749,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-sec-trex_copt-50-24h,scip-10.0.0,pypsa-eur-sec-trex_copt -pypsa-de-sec-trex_copt,20-12h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,966.624,,,,86400.0,86400.0,benchmark-instance-more-pypsa-04,20260102-more-pypsa,2026-01-02 20:51:44.996481,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-20-12h,cbc-2.10.12,pypsa-de-sec-trex_copt -pypsa-de-sec-trex_copt,20-12h,gurobi,13.0.0,2025.0,TO,Timeout,86400.0,7799.34,,,,86400.0,86400.0,benchmark-instance-more-pypsa-04,20260102-more-pypsa,2026-01-03 20:55:44.169412,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-20-12h,gurobi-13.0.0,pypsa-de-sec-trex_copt -pypsa-de-sec-trex_copt,20-12h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,8751.678408861015,23113.324,78751720366.0,,,8751.678408861015,86400.0,benchmark-instance-more-pypsa-04,20260102-more-pypsa,2026-01-04 20:59:16.351839,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-20-12h,highs-hipo-1.12.0-hipo,pypsa-de-sec-trex_copt -pypsa-de-sec-trex_copt,20-12h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,33082.465158473,3056.736,78751720327.0,,,33082.465158473,86400.0,benchmark-instance-more-pypsa-04,20260102-more-pypsa,2026-01-04 23:28:50.550949,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-20-12h,highs-ipx-1.12.0-hipo,pypsa-de-sec-trex_copt -pypsa-de-sec-trex_copt,20-12h,highs,1.12.0,2025.0,TO,Timeout,86400.0,3307.02,,,,86400.0,86400.0,benchmark-instance-more-pypsa-04,20260102-more-pypsa,2026-01-05 08:43:43.106749,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-20-12h,highs-1.12.0,pypsa-de-sec-trex_copt -pypsa-de-sec-trex_copt,20-12h,scip,10.0.0,2025.0,TO,Timeout,86400.0,15195.94,,,,86400.0,86400.0,benchmark-instance-more-pypsa-04,20260102-more-pypsa,2026-01-06 08:47:32.344894,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-20-12h,scip-10.0.0,pypsa-de-sec-trex_copt -pypsa-eur-elec,50-168h,glpk,5.0,2020.0,ok,optimal,130.1077972,240.552,31872370700.0,,,,3600.0,benchmark-instance-more-pypsa-33,20260102-more-pypsa,2026-01-02 20:50:02.724009,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-50-168h,glpk-5.0,pypsa-eur-elec -pypsa-eur-elec,50-168h,gurobi,10.0.0,2022.0,ok,optimal,23.35347138999998,345.54,31872370698.000763,,,22.42394709587097,3600.0,benchmark-instance-more-pypsa-33,20260102-more-pypsa,2026-01-02 20:56:32.549789,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-50-168h,gurobi-10.0.0,pypsa-eur-elec -pypsa-eur-elec,50-168h,highs,1.5.0.dev0,2022.0,ok,optimal,95.98128063700004,362.812,31872370697.999954,,,95.31469798088074,3600.0,benchmark-instance-more-pypsa-33,20260102-more-pypsa,2026-01-02 21:00:40.620432,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-50-168h,highs-1.5.0.dev0,pypsa-eur-elec -pypsa-eur-elec,50-168h,scip,8.0.3,2022.0,ok,optimal,255.644560385,764.268,31872370698.00026,,,254.964447,3600.0,benchmark-instance-more-pypsa-33,20260102-more-pypsa,2026-01-02 21:02:17.736518,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-50-168h,scip-8.0.3,pypsa-eur-elec -pypsa-eur-elec,50-168h,gurobi,11.0.0,2023.0,ok,optimal,21.37643709200006,342.756,31872370698.00064,,,20.63877296447754,3600.0,benchmark-instance-more-pypsa-33,20260102-more-pypsa,2026-01-02 21:09:55.019654,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-50-168h,gurobi-11.0.0,pypsa-eur-elec -pypsa-eur-elec,50-168h,highs,1.6.0.dev0,2023.0,ok,optimal,94.19174095500011,375.928,31872370697.999954,,,93.7347812652588,3600.0,benchmark-instance-more-pypsa-33,20260102-more-pypsa,2026-01-02 21:13:56.705246,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-50-168h,highs-1.6.0.dev0,pypsa-eur-elec -pypsa-eur-elec,50-168h,scip,8.1.0,2023.0,ok,optimal,255.43117410900027,767.568,31872370698.00026,,,254.869041,3600.0,benchmark-instance-more-pypsa-33,20260102-more-pypsa,2026-01-02 21:15:31.951401,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-50-168h,scip-8.1.0,pypsa-eur-elec -pypsa-eur-elec,50-168h,cbc,2.10.11,2023.0,ok,optimal,98.48789445500006,210.1,31872370698.00067,,,,3600.0,benchmark-instance-more-pypsa-33,20260102-more-pypsa,2026-01-02 21:19:48.561670,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-50-168h,cbc-2.10.11,pypsa-eur-elec -pypsa-eur-elec,50-168h,gurobi,12.0.0,2024.0,ok,optimal,19.73661236599992,331.256,31872370698.0007,,,18.888659954071045,3600.0,benchmark-instance-more-pypsa-33,20260102-more-pypsa,2026-01-02 21:21:56.603205,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-50-168h,gurobi-12.0.0,pypsa-eur-elec -pypsa-eur-elec,50-168h,highs,1.9.0,2024.0,ok,optimal,111.41364434200024,352.164,31872370697.999985,,,110.6180019378662,3600.0,benchmark-instance-more-pypsa-33,20260102-more-pypsa,2026-01-02 21:25:58.849015,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-50-168h,highs-1.9.0,pypsa-eur-elec -pypsa-eur-elec,50-168h,scip,9.2.0,2024.0,ok,optimal,256.68525696800043,753.536,31872370698.00026,,,256.117003,3600.0,benchmark-instance-more-pypsa-33,20260102-more-pypsa,2026-01-02 21:27:51.637570,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-50-168h,scip-9.2.0,pypsa-eur-elec -pypsa-eur-elec,50-168h,cbc,2.10.12,2024.0,ok,optimal,98.98388308800033,232.7,31872370698.00067,,,,3600.0,benchmark-instance-more-pypsa-33,20260102-more-pypsa,2026-01-02 21:32:09.768883,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-50-168h,cbc-2.10.12,pypsa-eur-elec -pypsa-eur-elec,50-168h,gurobi,13.0.0,2025.0,ok,optimal,26.137574144000155,354.328,31872370698.000824,,,25.31915807723999,3600.0,benchmark-instance-more-pypsa-33,20260102-more-pypsa,2026-01-02 21:34:17.534933,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-50-168h,gurobi-13.0.0,pypsa-eur-elec -pypsa-eur-elec,50-168h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,15.607173065000095,182.772,31872370698.0,,,15.607173065000095,3600.0,benchmark-instance-more-pypsa-33,20260102-more-pypsa,2026-01-02 21:38:22.841107,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-50-168h,highs-hipo-1.12.0-hipo,pypsa-eur-elec -pypsa-eur-elec,50-168h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,17.289696582000033,163.892,31872370698.0,,,17.289696582000033,3600.0,benchmark-instance-more-pypsa-33,20260102-more-pypsa,2026-01-02 21:38:39.399758,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-50-168h,highs-ipx-1.12.0-hipo,pypsa-eur-elec -pypsa-eur-elec,50-168h,highs,1.12.0,2025.0,ok,optimal,108.891043826,377.36,31872370698.00073,,,108.3643283843994,3600.0,benchmark-instance-more-pypsa-33,20260102-more-pypsa,2026-01-02 21:38:57.441120,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-50-168h,highs-1.12.0,pypsa-eur-elec -pypsa-eur-elec,50-168h,scip,10.0.0,2025.0,ok,optimal,254.566006043,775.98,31872370698.00026,,,253.991574,3600.0,benchmark-instance-more-pypsa-33,20260102-more-pypsa,2026-01-02 21:40:47.425353,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-50-168h,scip-10.0.0,pypsa-eur-elec -pypsa-de-elec-trex_copt-dfp,50-24h,glpk,5.0,2020.0,ok,optimal,3142.215111296,761.996,7061421194.0,,,,3600.0,benchmark-instance-more-pypsa-18,20260102-more-pypsa,2026-01-03 04:31:33.531331,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-dfp-50-24h,glpk-5.0,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,50-24h,gurobi,10.0.0,2022.0,ok,optimal,635.7962689639999,1185.004,7061421194.26668,,,631.7668149471283,3600.0,benchmark-instance-more-pypsa-18,20260102-more-pypsa,2026-01-03 05:28:05.051829,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-dfp-50-24h,gurobi-10.0.0,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,50-24h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1039.068,,,,3600.0,3600.0,benchmark-instance-more-pypsa-18,20260102-more-pypsa,2026-01-03 05:42:16.140148,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-dfp-50-24h,highs-1.5.0.dev0,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,50-24h,scip,8.0.3,2022.0,TO,Timeout,3600.0,3291.668,,,,3600.0,3600.0,benchmark-instance-more-pypsa-18,20260102-more-pypsa,2026-01-03 06:45:49.034505,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-dfp-50-24h,scip-8.0.3,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,50-24h,gurobi,11.0.0,2023.0,ok,optimal,626.9890653910006,1150.68,7061421194.26668,,,623.7708849906921,3600.0,benchmark-instance-more-pypsa-18,20260102-more-pypsa,2026-01-03 07:52:42.900705,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-dfp-50-24h,gurobi-11.0.0,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,50-24h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,970.284,,,,3600.0,3600.0,benchmark-instance-more-pypsa-18,20260102-more-pypsa,2026-01-03 08:06:45.438909,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-dfp-50-24h,highs-1.6.0.dev0,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,50-24h,scip,8.1.0,2023.0,TO,Timeout,3600.0,3308.776,,,,3600.0,3600.0,benchmark-instance-more-pypsa-18,20260102-more-pypsa,2026-01-03 09:10:18.416262,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-dfp-50-24h,scip-8.1.0,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,50-24h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,306.404,,,,3600.0,3600.0,benchmark-instance-more-pypsa-18,20260102-more-pypsa,2026-01-03 10:13:50.333245,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-dfp-50-24h,cbc-2.10.11,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,50-24h,gurobi,12.0.0,2024.0,ok,optimal,869.4376753889992,1143.26,7061421194.266657,,,866.1698360443115,3600.0,benchmark-instance-more-pypsa-18,20260102-more-pypsa,2026-01-03 11:17:51.298451,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-dfp-50-24h,gurobi-12.0.0,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,50-24h,highs,1.9.0,2024.0,TO,Timeout,3600.0,980.072,,,,3600.0,3600.0,benchmark-instance-more-pypsa-18,20260102-more-pypsa,2026-01-03 11:35:58.170703,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-dfp-50-24h,highs-1.9.0,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,50-24h,scip,9.2.0,2024.0,TO,Timeout,3600.0,3336.496,,,,3600.0,3600.0,benchmark-instance-more-pypsa-18,20260102-more-pypsa,2026-01-03 12:39:31.455793,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-dfp-50-24h,scip-9.2.0,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,50-24h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,289.056,,,,3600.0,3600.0,benchmark-instance-more-pypsa-18,20260102-more-pypsa,2026-01-03 13:43:03.633938,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-dfp-50-24h,cbc-2.10.12,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,50-24h,gurobi,13.0.0,2025.0,ok,optimal,891.1214545199982,1179.204,7061421194.266668,,,887.8484671115875,3600.0,benchmark-instance-more-pypsa-18,20260102-more-pypsa,2026-01-03 14:47:05.176221,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-dfp-50-24h,gurobi-13.0.0,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,50-24h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,625.2736192500015,3165.984,7061421194.3,,,625.2736192500015,3600.0,benchmark-instance-more-pypsa-18,20260102-more-pypsa,2026-01-03 15:05:31.780000,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-dfp-50-24h,highs-hipo-1.12.0-hipo,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,50-24h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,720.8274025470018,654.7,7061421194.3,,,720.8274025470018,3600.0,benchmark-instance-more-pypsa-18,20260102-more-pypsa,2026-01-03 15:15:58.154399,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-dfp-50-24h,highs-ipx-1.12.0-hipo,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,50-24h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1009.76,,,,3600.0,3600.0,benchmark-instance-more-pypsa-18,20260102-more-pypsa,2026-01-03 15:27:59.942320,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-dfp-50-24h,highs-1.12.0,pypsa-de-elec-trex_copt-dfp -pypsa-de-elec-trex_copt-dfp,50-24h,scip,10.0.0,2025.0,TO,Timeout,3600.0,3356.876,,,,3600.0,3600.0,benchmark-instance-more-pypsa-18,20260102-more-pypsa,2026-01-03 16:31:31.378397,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-dfp-50-24h,scip-10.0.0,pypsa-de-elec-trex_copt-dfp -pypsa-eur-elec-trex_copt,100-12h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,835.388,,,,86400.0,86400.0,benchmark-instance-more-pypsa-09,20260102-more-pypsa,2026-01-02 20:51:54.572913,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-100-12h,cbc-2.10.12,pypsa-eur-elec-trex_copt -pypsa-eur-elec-trex_copt,100-12h,gurobi,13.0.0,2025.0,ok,optimal,2389.886300237995,8151.184,36238261805.94529,,,2375.288858890533,86400.0,benchmark-instance-more-pypsa-09,20260102-more-pypsa,2026-01-03 20:55:56.421184,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-100-12h,gurobi-13.0.0,pypsa-eur-elec-trex_copt -pypsa-eur-elec-trex_copt,100-12h,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,86400.0,162.768,,,,86400.0,86400.0,benchmark-instance-more-pypsa-09,20260102-more-pypsa,2026-01-03 21:39:39.087002,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-100-12h,highs-hipo-1.12.0-hipo,pypsa-eur-elec-trex_copt -pypsa-eur-elec-trex_copt,100-12h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,29163.048779276,2857.028,36238261809.0,,,29163.048779276,86400.0,benchmark-instance-more-pypsa-09,20260102-more-pypsa,2026-01-04 21:43:22.645411,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-100-12h,highs-ipx-1.12.0-hipo,pypsa-eur-elec-trex_copt -pypsa-eur-elec-trex_copt,100-12h,highs,1.12.0,2025.0,TO,Timeout,86400.0,3894.12,,,,86400.0,86400.0,benchmark-instance-more-pypsa-09,20260102-more-pypsa,2026-01-05 05:53:14.301686,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-100-12h,highs-1.12.0,pypsa-eur-elec-trex_copt -pypsa-eur-elec-trex_copt,100-12h,scip,10.0.0,2025.0,TO,Timeout,86400.0,13858.436,,,,86400.0,86400.0,benchmark-instance-more-pypsa-09,20260102-more-pypsa,2026-01-06 05:56:48.483153,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-100-12h,scip-10.0.0,pypsa-eur-elec-trex_copt -pypsa-eur-sec-trex_copt,50-168h,glpk,5.0,2020.0,TO,Timeout,3600.0,272.276,,,,3600.0,3600.0,benchmark-instance-more-pypsa-22,20260102-more-pypsa,2026-01-02 20:50:03.622607,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_copt-50-168h,glpk-5.0,pypsa-eur-sec-trex_copt -pypsa-eur-sec-trex_copt,50-168h,gurobi,10.0.0,2022.0,TO,Timeout,3600.0,608.104,,,,3600.0,3600.0,benchmark-instance-more-pypsa-22,20260102-more-pypsa,2026-01-02 21:54:29.661565,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_copt-50-168h,gurobi-10.0.0,pypsa-eur-sec-trex_copt -pypsa-eur-sec-trex_copt,50-168h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,799.968,,,,3600.0,3600.0,benchmark-instance-more-pypsa-22,20260102-more-pypsa,2026-01-02 22:58:19.857348,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_copt-50-168h,highs-1.5.0.dev0,pypsa-eur-sec-trex_copt -pypsa-eur-sec-trex_copt,50-168h,scip,8.0.3,2022.0,TO,Timeout,3600.0,3061.128,,,,3600.0,3600.0,benchmark-instance-more-pypsa-22,20260102-more-pypsa,2026-01-03 00:02:17.235555,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_copt-50-168h,scip-8.0.3,pypsa-eur-sec-trex_copt -pypsa-eur-sec-trex_copt,50-168h,gurobi,11.0.0,2023.0,TO,Timeout,3600.0,613.528,,,,3600.0,3600.0,benchmark-instance-more-pypsa-22,20260102-more-pypsa,2026-01-03 01:09:38.198633,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_copt-50-168h,gurobi-11.0.0,pypsa-eur-sec-trex_copt -pypsa-eur-sec-trex_copt,50-168h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,843.724,,,,3600.0,3600.0,benchmark-instance-more-pypsa-22,20260102-more-pypsa,2026-01-03 02:13:32.853745,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_copt-50-168h,highs-1.6.0.dev0,pypsa-eur-sec-trex_copt -pypsa-eur-sec-trex_copt,50-168h,scip,8.1.0,2023.0,TO,Timeout,3600.0,3096.78,,,,3600.0,3600.0,benchmark-instance-more-pypsa-22,20260102-more-pypsa,2026-01-03 03:17:21.619033,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_copt-50-168h,scip-8.1.0,pypsa-eur-sec-trex_copt -pypsa-eur-sec-trex_copt,50-168h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,302.568,,,,3600.0,3600.0,benchmark-instance-more-pypsa-22,20260102-more-pypsa,2026-01-03 04:21:09.989046,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_copt-50-168h,cbc-2.10.11,pypsa-eur-sec-trex_copt -pypsa-eur-sec-trex_copt,50-168h,gurobi,12.0.0,2024.0,TO,Timeout,3600.0,617.504,,,,3600.0,3600.0,benchmark-instance-more-pypsa-22,20260102-more-pypsa,2026-01-03 05:25:44.825026,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_copt-50-168h,gurobi-12.0.0,pypsa-eur-sec-trex_copt -pypsa-eur-sec-trex_copt,50-168h,highs,1.9.0,2024.0,TO,Timeout,3600.0,917.716,,,,3600.0,3600.0,benchmark-instance-more-pypsa-22,20260102-more-pypsa,2026-01-03 06:29:31.925378,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_copt-50-168h,highs-1.9.0,pypsa-eur-sec-trex_copt -pypsa-eur-sec-trex_copt,50-168h,scip,9.2.0,2024.0,TO,Timeout,3600.0,3091.352,,,,3600.0,3600.0,benchmark-instance-more-pypsa-22,20260102-more-pypsa,2026-01-03 07:33:32.394390,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_copt-50-168h,scip-9.2.0,pypsa-eur-sec-trex_copt -pypsa-eur-sec-trex_copt,50-168h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,284.92,,,,3600.0,3600.0,benchmark-instance-more-pypsa-22,20260102-more-pypsa,2026-01-03 08:37:30.440035,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_copt-50-168h,cbc-2.10.12,pypsa-eur-sec-trex_copt -pypsa-eur-sec-trex_copt,50-168h,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,650.796,,,,3600.0,3600.0,benchmark-instance-more-pypsa-22,20260102-more-pypsa,2026-01-03 09:42:08.571151,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_copt-50-168h,gurobi-13.0.0,pypsa-eur-sec-trex_copt -pypsa-eur-sec-trex_copt,50-168h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,485.1149023599937,1248.324,377059072380.0,,,485.1149023599937,3600.0,benchmark-instance-more-pypsa-22,20260102-more-pypsa,2026-01-03 10:45:55.934747,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_copt-50-168h,highs-hipo-1.12.0-hipo,pypsa-eur-sec-trex_copt -pypsa-eur-sec-trex_copt,50-168h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,567.7075485659952,570.66,377059072390.0,,,567.7075485659952,3600.0,benchmark-instance-more-pypsa-22,20260102-more-pypsa,2026-01-03 10:54:02.339700,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_copt-50-168h,highs-ipx-1.12.0-hipo,pypsa-eur-sec-trex_copt -pypsa-eur-sec-trex_copt,50-168h,highs,1.12.0,2025.0,TO,Timeout,3600.0,852.476,,,,3600.0,3600.0,benchmark-instance-more-pypsa-22,20260102-more-pypsa,2026-01-03 11:03:30.825133,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_copt-50-168h,highs-1.12.0,pypsa-eur-sec-trex_copt -pypsa-eur-sec-trex_copt,50-168h,scip,10.0.0,2025.0,TO,Timeout,3600.0,3118.8,,,,3600.0,3600.0,benchmark-instance-more-pypsa-22,20260102-more-pypsa,2026-01-03 12:07:11.139332,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_copt-50-168h,scip-10.0.0,pypsa-eur-sec-trex_copt -pypsa-de-sec-trex_copt,10-24h,glpk,5.0,2020.0,TO,Timeout,3600.0,334.908,,,,3600.0,3600.0,benchmark-instance-more-pypsa-15,20260102-more-pypsa,2026-01-02 20:49:26.739324,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-10-24h,glpk-5.0,pypsa-de-sec-trex_copt -pypsa-de-sec-trex_copt,10-24h,gurobi,10.0.0,2022.0,TO,Timeout,3600.0,801.588,,,,3600.0,3600.0,benchmark-instance-more-pypsa-15,20260102-more-pypsa,2026-01-02 21:53:56.496108,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-10-24h,gurobi-10.0.0,pypsa-de-sec-trex_copt -pypsa-de-sec-trex_copt,10-24h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1180.888,,,,3600.0,3600.0,benchmark-instance-more-pypsa-15,20260102-more-pypsa,2026-01-02 22:57:46.344944,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-10-24h,highs-1.5.0.dev0,pypsa-de-sec-trex_copt -pypsa-de-sec-trex_copt,10-24h,scip,8.0.3,2022.0,TO,Timeout,3600.0,4252.452,,,,3600.0,3600.0,benchmark-instance-more-pypsa-15,20260102-more-pypsa,2026-01-03 00:01:32.057648,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-10-24h,scip-8.0.3,pypsa-de-sec-trex_copt -pypsa-de-sec-trex_copt,10-24h,gurobi,11.0.0,2023.0,TO,Timeout,3600.0,808.476,,,,3600.0,3600.0,benchmark-instance-more-pypsa-15,20260102-more-pypsa,2026-01-03 01:08:43.262732,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-10-24h,gurobi-11.0.0,pypsa-de-sec-trex_copt -pypsa-de-sec-trex_copt,10-24h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,1116.068,,,,3600.0,3600.0,benchmark-instance-more-pypsa-15,20260102-more-pypsa,2026-01-03 02:12:21.775922,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-10-24h,highs-1.6.0.dev0,pypsa-de-sec-trex_copt -pypsa-de-sec-trex_copt,10-24h,scip,8.1.0,2023.0,TO,Timeout,3600.0,4263.156,,,,3600.0,3600.0,benchmark-instance-more-pypsa-15,20260102-more-pypsa,2026-01-03 03:16:01.778041,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-10-24h,scip-8.1.0,pypsa-de-sec-trex_copt -pypsa-de-sec-trex_copt,10-24h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,365.308,,,,3600.0,3600.0,benchmark-instance-more-pypsa-15,20260102-more-pypsa,2026-01-03 04:19:44.115283,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-10-24h,cbc-2.10.11,pypsa-de-sec-trex_copt -pypsa-de-sec-trex_copt,10-24h,gurobi,12.0.0,2024.0,TO,Timeout,3600.0,814.24,,,,3600.0,3600.0,benchmark-instance-more-pypsa-15,20260102-more-pypsa,2026-01-03 05:23:56.966514,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-10-24h,gurobi-12.0.0,pypsa-de-sec-trex_copt -pypsa-de-sec-trex_copt,10-24h,highs,1.9.0,2024.0,TO,Timeout,3600.0,1135.064,,,,3600.0,3600.0,benchmark-instance-more-pypsa-15,20260102-more-pypsa,2026-01-03 06:27:38.931290,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-10-24h,highs-1.9.0,pypsa-de-sec-trex_copt -pypsa-de-sec-trex_copt,10-24h,scip,9.2.0,2024.0,TO,Timeout,3600.0,4247.992,,,,3600.0,3600.0,benchmark-instance-more-pypsa-15,20260102-more-pypsa,2026-01-03 07:31:22.604436,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-10-24h,scip-9.2.0,pypsa-de-sec-trex_copt -pypsa-de-sec-trex_copt,10-24h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,347.904,,,,3600.0,3600.0,benchmark-instance-more-pypsa-15,20260102-more-pypsa,2026-01-03 08:35:02.397203,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-10-24h,cbc-2.10.12,pypsa-de-sec-trex_copt -pypsa-de-sec-trex_copt,10-24h,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,849.456,,,,3600.0,3600.0,benchmark-instance-more-pypsa-15,20260102-more-pypsa,2026-01-03 09:39:12.738204,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-10-24h,gurobi-13.0.0,pypsa-de-sec-trex_copt -pypsa-de-sec-trex_copt,10-24h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,642.9903853479991,3286.708,79058822018.0,,,642.9903853479991,3600.0,benchmark-instance-more-pypsa-15,20260102-more-pypsa,2026-01-03 10:43:17.566453,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-10-24h,highs-hipo-1.12.0-hipo,pypsa-de-sec-trex_copt -pypsa-de-sec-trex_copt,10-24h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,1896.018656213004,788.648,79058822013.0,,,1896.018656213004,3600.0,benchmark-instance-more-pypsa-15,20260102-more-pypsa,2026-01-03 10:54:01.357963,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-10-24h,highs-ipx-1.12.0-hipo,pypsa-de-sec-trex_copt -pypsa-de-sec-trex_copt,10-24h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1103.02,,,,3600.0,3600.0,benchmark-instance-more-pypsa-15,20260102-more-pypsa,2026-01-03 11:25:38.224988,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-10-24h,highs-1.12.0,pypsa-de-sec-trex_copt -pypsa-de-sec-trex_copt,10-24h,scip,10.0.0,2025.0,TO,Timeout,3600.0,4266.292,,,,3600.0,3600.0,benchmark-instance-more-pypsa-15,20260102-more-pypsa,2026-01-03 12:29:18.335107,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-10-24h,scip-10.0.0,pypsa-de-sec-trex_copt -pypsa-de-sec,20-12h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,966.744,,,,86400.0,86400.0,benchmark-instance-rerun-4-01,20260217-rerun-4,2026-02-17 09:31:24.750051,c4-highmem-16,us-central1-a,0a76d2f,pypsa-de-sec-20-12h,cbc-2.10.12,pypsa-de-sec -pypsa-de-sec,20-12h,gurobi,13.0.0,2025.0,ok,optimal,26899.084190724,6914.988,79259899314.68932,,,26883.01337504387,86400.0,benchmark-instance-rerun-4-01,20260217-rerun-4,2026-02-18 09:35:38.363044,c4-highmem-16,us-central1-a,0a76d2f,pypsa-de-sec-20-12h,gurobi-13.0.0,pypsa-de-sec -pypsa-de-sec,20-12h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,7162.592065244011,20432.84,79259899417.0,,,7162.592065244011,86400.0,benchmark-instance-rerun-4-01,20260217-rerun-4,2026-02-18 17:07:51.709388,c4-highmem-16,us-central1-a,0a76d2f,pypsa-de-sec-20-12h,highs-hipo-1.12.0-hipo,pypsa-de-sec -pypsa-de-sec,20-12h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,30958.888641636997,3023.324,79259899479.0,,,30958.888641636997,86400.0,benchmark-instance-rerun-4-01,20260217-rerun-4,2026-02-18 19:10:49.909891,c4-highmem-16,us-central1-a,0a76d2f,pypsa-de-sec-20-12h,highs-ipx-1.12.0-hipo,pypsa-de-sec -pypsa-de-sec,20-12h,highs,1.12.0,2025.0,TO,Timeout,86400.0,3276.596,,,,86400.0,86400.0,benchmark-instance-rerun-4-01,20260217-rerun-4,2026-02-19 03:50:26.015446,c4-highmem-16,us-central1-a,0a76d2f,pypsa-de-sec-20-12h,highs-1.12.0,pypsa-de-sec -pypsa-de-sec,20-12h,scip,10.0.0,2025.0,TO,Timeout,86400.0,14886.8,,,,86400.0,86400.0,benchmark-instance-rerun-4-01,20260217-rerun-4,2026-02-20 03:54:13.235856,c4-highmem-16,us-central1-a,0a76d2f,pypsa-de-sec-20-12h,scip-10.0.0,pypsa-de-sec -pypsa-eur-sec,50-168h,glpk,5.0,2020.0,TO,Timeout,3600.0,270.176,,,,3600.0,3600.0,benchmark-instance-rerun-4-04,20260217-rerun-4,2026-02-17 09:31:38.711550,c4-standard-2,us-central1-a,0a76d2f,pypsa-eur-sec-50-168h,glpk-5.0,pypsa-eur-sec -pypsa-eur-sec,50-168h,gurobi,10.0.0,2022.0,TO,Timeout,3600.0,607.544,,,,3600.0,3600.0,benchmark-instance-rerun-4-04,20260217-rerun-4,2026-02-17 10:36:16.168877,c4-standard-2,us-central1-a,0a76d2f,pypsa-eur-sec-50-168h,gurobi-10.0.0,pypsa-eur-sec -pypsa-eur-sec,50-168h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,789.592,,,,3600.0,3600.0,benchmark-instance-rerun-4-04,20260217-rerun-4,2026-02-17 11:39:55.302640,c4-standard-2,us-central1-a,0a76d2f,pypsa-eur-sec-50-168h,highs-1.5.0.dev0,pypsa-eur-sec -pypsa-eur-sec,50-168h,scip,8.0.3,2022.0,TO,Timeout,3600.0,2959.476,,,,3600.0,3600.0,benchmark-instance-rerun-4-04,20260217-rerun-4,2026-02-17 12:43:28.644716,c4-standard-2,us-central1-a,0a76d2f,pypsa-eur-sec-50-168h,scip-8.0.3,pypsa-eur-sec -pypsa-eur-sec,50-168h,gurobi,11.0.0,2023.0,TO,Timeout,3600.0,621.38,,,,3600.0,3600.0,benchmark-instance-rerun-4-04,20260217-rerun-4,2026-02-17 13:50:51.669888,c4-standard-2,us-central1-a,0a76d2f,pypsa-eur-sec-50-168h,gurobi-11.0.0,pypsa-eur-sec -pypsa-eur-sec,50-168h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,832.32,,,,3600.0,3600.0,benchmark-instance-rerun-4-04,20260217-rerun-4,2026-02-17 14:54:39.296646,c4-standard-2,us-central1-a,0a76d2f,pypsa-eur-sec-50-168h,highs-1.6.0.dev0,pypsa-eur-sec -pypsa-eur-sec,50-168h,scip,8.1.0,2023.0,TO,Timeout,3600.0,2991.648,,,,3600.0,3600.0,benchmark-instance-rerun-4-04,20260217-rerun-4,2026-02-17 15:58:26.484767,c4-standard-2,us-central1-a,0a76d2f,pypsa-eur-sec-50-168h,scip-8.1.0,pypsa-eur-sec -pypsa-eur-sec,50-168h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,309.448,,,,3600.0,3600.0,benchmark-instance-rerun-4-04,20260217-rerun-4,2026-02-17 17:02:01.680028,c4-standard-2,us-central1-a,0a76d2f,pypsa-eur-sec-50-168h,cbc-2.10.11,pypsa-eur-sec -pypsa-eur-sec,50-168h,gurobi,12.0.0,2024.0,TO,Timeout,3600.0,550.468,,,,3600.0,3600.0,benchmark-instance-rerun-4-04,20260217-rerun-4,2026-02-17 18:06:15.299299,c4-standard-2,us-central1-a,0a76d2f,pypsa-eur-sec-50-168h,gurobi-12.0.0,pypsa-eur-sec -pypsa-eur-sec,50-168h,highs,1.9.0,2024.0,TO,Timeout,3600.0,871.568,,,,3600.0,3600.0,benchmark-instance-rerun-4-04,20260217-rerun-4,2026-02-17 19:09:57.559857,c4-standard-2,us-central1-a,0a76d2f,pypsa-eur-sec-50-168h,highs-1.9.0,pypsa-eur-sec -pypsa-eur-sec,50-168h,scip,9.2.0,2024.0,TO,Timeout,3600.0,2962.192,,,,3600.0,3600.0,benchmark-instance-rerun-4-04,20260217-rerun-4,2026-02-17 20:13:38.231509,c4-standard-2,us-central1-a,0a76d2f,pypsa-eur-sec-50-168h,scip-9.2.0,pypsa-eur-sec -pypsa-eur-sec,50-168h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,284.048,,,,3600.0,3600.0,benchmark-instance-rerun-4-04,20260217-rerun-4,2026-02-17 21:17:21.824647,c4-standard-2,us-central1-a,0a76d2f,pypsa-eur-sec-50-168h,cbc-2.10.12,pypsa-eur-sec -pypsa-eur-sec,50-168h,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,586.984,,,,3600.0,3600.0,benchmark-instance-rerun-4-04,20260217-rerun-4,2026-02-17 22:21:35.875207,c4-standard-2,us-central1-a,0a76d2f,pypsa-eur-sec-50-168h,gurobi-13.0.0,pypsa-eur-sec -pypsa-eur-sec,50-168h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,533.4948569059998,1255.76,76995154584.0,,,533.4948569059998,3600.0,benchmark-instance-rerun-4-04,20260217-rerun-4,2026-02-17 23:25:20.064031,c4-standard-2,us-central1-a,0a76d2f,pypsa-eur-sec-50-168h,highs-hipo-1.12.0-hipo,pypsa-eur-sec -pypsa-eur-sec,50-168h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,429.65001727300114,639.028,76995154572.0,,,429.65001727300114,3600.0,benchmark-instance-rerun-4-04,20260217-rerun-4,2026-02-17 23:34:14.823660,c4-standard-2,us-central1-a,0a76d2f,pypsa-eur-sec-50-168h,highs-ipx-1.12.0-hipo,pypsa-eur-sec -pypsa-eur-sec,50-168h,highs,1.12.0,2025.0,TO,Timeout,3600.0,850.34,,,,3600.0,3600.0,benchmark-instance-rerun-4-04,20260217-rerun-4,2026-02-17 23:41:25.242999,c4-standard-2,us-central1-a,0a76d2f,pypsa-eur-sec-50-168h,highs-1.12.0,pypsa-eur-sec -pypsa-eur-sec,50-168h,scip,10.0.0,2025.0,TO,Timeout,3600.0,2969.012,,,,3600.0,3600.0,benchmark-instance-rerun-4-04,20260217-rerun-4,2026-02-18 00:45:08.268908,c4-standard-2,us-central1-a,0a76d2f,pypsa-eur-sec-50-168h,scip-10.0.0,pypsa-eur-sec -times-etimeseu-europe-elec+heat-co2-single_stage,29-64ts,glpk,5.0,2020.0,warning,unknown,0.0952260260000343,280.92,,,,,3600.0,benchmark-instance-rerun-4-03,20260217-rerun-4,2026-02-17 09:32:03.135912,c4-standard-2,us-central1-a,0a76d2f,times-etimeseu-europe-elec+heat-co2-single_stage-29-64ts,glpk-5.0,times-etimeseu-europe-elec+heat-co2-single_stage -times-etimeseu-europe-elec+heat-co2-single_stage,29-64ts,gurobi,10.0.0,2022.0,ok,optimal,13.135404734999952,933.824,432045.63024713815,,,9.67857813835144,3600.0,benchmark-instance-rerun-4-03,20260217-rerun-4,2026-02-17 09:36:16.117499,c4-standard-2,us-central1-a,0a76d2f,times-etimeseu-europe-elec+heat-co2-single_stage-29-64ts,gurobi-10.0.0,times-etimeseu-europe-elec+heat-co2-single_stage -times-etimeseu-europe-elec+heat-co2-single_stage,29-64ts,highs,1.5.0.dev0,2022.0,ok,optimal,253.03929365999988,1019.968,432045.63024713815,,,249.80711150169373,3600.0,benchmark-instance-rerun-4-03,20260217-rerun-4,2026-02-17 09:40:08.178096,c4-standard-2,us-central1-a,0a76d2f,times-etimeseu-europe-elec+heat-co2-single_stage-29-64ts,highs-1.5.0.dev0,times-etimeseu-europe-elec+heat-co2-single_stage -times-etimeseu-europe-elec+heat-co2-single_stage,29-64ts,scip,8.0.3,2022.0,ok,optimal,330.6621768099999,2891.448,432045.6302471382,,,326.801609,3600.0,benchmark-instance-rerun-4-03,20260217-rerun-4,2026-02-17 09:44:24.278566,c4-standard-2,us-central1-a,0a76d2f,times-etimeseu-europe-elec+heat-co2-single_stage-29-64ts,scip-8.0.3,times-etimeseu-europe-elec+heat-co2-single_stage -times-etimeseu-europe-elec+heat-co2-single_stage,29-64ts,gurobi,11.0.0,2023.0,ok,optimal,13.149866688999964,906.724,432045.6302471381,,,10.59473204612732,3600.0,benchmark-instance-rerun-4-03,20260217-rerun-4,2026-02-17 09:53:05.384721,c4-standard-2,us-central1-a,0a76d2f,times-etimeseu-europe-elec+heat-co2-single_stage-29-64ts,gurobi-11.0.0,times-etimeseu-europe-elec+heat-co2-single_stage -times-etimeseu-europe-elec+heat-co2-single_stage,29-64ts,highs,1.6.0.dev0,2023.0,ok,optimal,229.45925586400017,1022.512,432045.63024713815,,,227.5293254852295,3600.0,benchmark-instance-rerun-4-03,20260217-rerun-4,2026-02-17 09:56:34.665978,c4-standard-2,us-central1-a,0a76d2f,times-etimeseu-europe-elec+heat-co2-single_stage-29-64ts,highs-1.6.0.dev0,times-etimeseu-europe-elec+heat-co2-single_stage -times-etimeseu-europe-elec+heat-co2-single_stage,29-64ts,scip,8.1.0,2023.0,ok,optimal,309.44082058399977,2878.412,432045.6302471382,,,306.388568,3600.0,benchmark-instance-rerun-4-03,20260217-rerun-4,2026-02-17 10:00:26.110647,c4-standard-2,us-central1-a,0a76d2f,times-etimeseu-europe-elec+heat-co2-single_stage-29-64ts,scip-8.1.0,times-etimeseu-europe-elec+heat-co2-single_stage -times-etimeseu-europe-elec+heat-co2-single_stage,29-64ts,cbc,2.10.11,2023.0,ER,,,321.112,,,,,3600.0,benchmark-instance-rerun-4-03,20260217-rerun-4,2026-02-17 10:05:38.763724,c4-standard-2,us-central1-a,0a76d2f,times-etimeseu-europe-elec+heat-co2-single_stage-29-64ts,cbc-2.10.11,times-etimeseu-europe-elec+heat-co2-single_stage -times-etimeseu-europe-elec+heat-co2-single_stage,29-64ts,gurobi,12.0.0,2024.0,ok,optimal,13.17828353099958,879.504,432045.6302471382,,,10.47844696044922,3600.0,benchmark-instance-rerun-4-03,20260217-rerun-4,2026-02-17 10:06:06.788861,c4-standard-2,us-central1-a,0a76d2f,times-etimeseu-europe-elec+heat-co2-single_stage-29-64ts,gurobi-12.0.0,times-etimeseu-europe-elec+heat-co2-single_stage -times-etimeseu-europe-elec+heat-co2-single_stage,29-64ts,highs,1.9.0,2024.0,ok,optimal,237.37311677100024,1003.344,432045.6302471381,,,234.0207979679108,3600.0,benchmark-instance-rerun-4-03,20260217-rerun-4,2026-02-17 10:09:57.025033,c4-standard-2,us-central1-a,0a76d2f,times-etimeseu-europe-elec+heat-co2-single_stage-29-64ts,highs-1.9.0,times-etimeseu-europe-elec+heat-co2-single_stage -times-etimeseu-europe-elec+heat-co2-single_stage,29-64ts,scip,9.2.0,2024.0,ok,optimal,328.350779635,2859.096,432045.6302471382,,,325.214644,3600.0,benchmark-instance-rerun-4-03,20260217-rerun-4,2026-02-17 10:13:59.444773,c4-standard-2,us-central1-a,0a76d2f,times-etimeseu-europe-elec+heat-co2-single_stage-29-64ts,scip-9.2.0,times-etimeseu-europe-elec+heat-co2-single_stage -times-etimeseu-europe-elec+heat-co2-single_stage,29-64ts,cbc,2.10.12,2024.0,ER,,,295.032,,,,,3600.0,benchmark-instance-rerun-4-03,20260217-rerun-4,2026-02-17 10:19:33.607972,c4-standard-2,us-central1-a,0a76d2f,times-etimeseu-europe-elec+heat-co2-single_stage-29-64ts,cbc-2.10.12,times-etimeseu-europe-elec+heat-co2-single_stage -times-etimeseu-europe-elec+heat-co2-single_stage,29-64ts,gurobi,13.0.0,2025.0,ok,optimal,12.802957338999931,909.644,432045.6302471381,,,10.16300916671753,3600.0,benchmark-instance-rerun-4-03,20260217-rerun-4,2026-02-17 10:20:00.938512,c4-standard-2,us-central1-a,0a76d2f,times-etimeseu-europe-elec+heat-co2-single_stage-29-64ts,gurobi-13.0.0,times-etimeseu-europe-elec+heat-co2-single_stage -times-etimeseu-europe-elec+heat-co2-single_stage,29-64ts,highs-hipo,1.12.0-hipo,2025.0,warning,Unknown,73.41750360300011,584.5,432045.63025,,,73.41750360300011,3600.0,benchmark-instance-rerun-4-03,20260217-rerun-4,2026-02-17 10:23:53.963088,c4-standard-2,us-central1-a,0a76d2f,times-etimeseu-europe-elec+heat-co2-single_stage-29-64ts,highs-hipo-1.12.0-hipo,times-etimeseu-europe-elec+heat-co2-single_stage -times-etimeseu-europe-elec+heat-co2-single_stage,29-64ts,highs-ipx,1.12.0-hipo,2025.0,warning,Unknown,42.36294078499986,506.276,432045.63025,,,42.36294078499986,3600.0,benchmark-instance-rerun-4-03,20260217-rerun-4,2026-02-17 10:25:08.712421,c4-standard-2,us-central1-a,0a76d2f,times-etimeseu-europe-elec+heat-co2-single_stage-29-64ts,highs-ipx-1.12.0-hipo,times-etimeseu-europe-elec+heat-co2-single_stage -times-etimeseu-europe-elec+heat-co2-single_stage,29-64ts,highs,1.12.0,2025.0,ok,optimal,239.8772797890001,1040.68,432045.6302471383,,,237.27555131912231,3600.0,benchmark-instance-rerun-4-03,20260217-rerun-4,2026-02-17 10:25:51.819016,c4-standard-2,us-central1-a,0a76d2f,times-etimeseu-europe-elec+heat-co2-single_stage-29-64ts,highs-1.12.0,times-etimeseu-europe-elec+heat-co2-single_stage -times-etimeseu-europe-elec+heat-co2-single_stage,29-64ts,scip,10.0.0,2025.0,ok,optimal,331.264291645,2879.116,432045.6302471382,,,327.877383,3600.0,benchmark-instance-rerun-4-03,20260217-rerun-4,2026-02-17 10:29:54.420434,c4-standard-2,us-central1-a,0a76d2f,times-etimeseu-europe-elec+heat-co2-single_stage-29-64ts,scip-10.0.0,times-etimeseu-europe-elec+heat-co2-single_stage -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,192.9,,,,3600.0,3600.0,benchmark-instance-rerun-4-05,20260217-rerun-4,2026-02-17 09:32:12.554931,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314,73-1h,gurobi,10.0.0,2022.0,TO,Timeout,3600.0,630.948,,,,3600.0,3600.0,benchmark-instance-rerun-4-05,20260217-rerun-4,2026-02-17 10:36:30.101151,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314,73-1h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1091.876,,,,3600.0,3600.0,benchmark-instance-rerun-4-05,20260217-rerun-4,2026-02-17 11:40:14.822466,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314,73-1h,scip,8.0.3,2022.0,TO,Timeout,3600.0,1886.244,,,,3600.0,3600.0,benchmark-instance-rerun-4-05,20260217-rerun-4,2026-02-17 12:43:57.646093,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314,73-1h,gurobi,11.0.0,2023.0,ok,optimal,2721.873911006001,638.252,1845883.3370768356,,,2721.3244910240173,3600.0,benchmark-instance-rerun-4-05,20260217-rerun-4,2026-02-17 13:51:05.230060,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314,73-1h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,1132.336,,,,3600.0,3600.0,benchmark-instance-rerun-4-05,20260217-rerun-4,2026-02-17 14:40:12.972224,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314,73-1h,scip,8.1.0,2023.0,TO,Timeout,3600.0,1894.944,,,,3600.0,3600.0,benchmark-instance-rerun-4-05,20260217-rerun-4,2026-02-17 15:44:03.617433,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314,73-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,232.288,,,,3600.0,3600.0,benchmark-instance-rerun-4-05,20260217-rerun-4,2026-02-17 16:47:39.734595,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314,73-1h,gurobi,12.0.0,2024.0,ok,optimal,2536.2538488870014,623.448,1845883.336105911,0.0,9.9739212804859e-05,2535.6922149658203,3600.0,benchmark-instance-rerun-4-05,20260217-rerun-4,2026-02-17 17:51:51.496886,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314,73-1h,highs,1.9.0,2024.0,TO,Timeout,3600.0,1256.652,,,,3600.0,3600.0,benchmark-instance-rerun-4-05,20260217-rerun-4,2026-02-17 18:37:44.939482,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314,73-1h,scip,9.2.0,2024.0,TO,Timeout,3600.0,1864.848,,,,3600.0,3600.0,benchmark-instance-rerun-4-05,20260217-rerun-4,2026-02-17 19:41:47.635784,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314,73-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,206.948,,,,3600.0,3600.0,benchmark-instance-rerun-4-05,20260217-rerun-4,2026-02-17 20:45:38.042481,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314,73-1h,gurobi,13.0.0,2025.0,ok,optimal,1736.3511853669988,483.964,1845883.3374041212,0.0,9.914086089587668e-05,1735.83363199234,3600.0,benchmark-instance-rerun-4-05,20260217-rerun-4,2026-02-17 21:49:46.150091,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314,73-1h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1144.076,,,,3600.0,3600.0,benchmark-instance-rerun-4-05,20260217-rerun-4,2026-02-17 22:22:18.479435,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314,73-1h,scip,10.0.0,2025.0,TO,Timeout,3600.0,1895.536,,,,3600.0,3600.0,benchmark-instance-rerun-4-05,20260217-rerun-4,2026-02-17 23:26:00.965021,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314 -pypsa-de-elec-trex_vopt,20-1h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,1742.504,,,,86400.0,86400.0,benchmark-instance-rerun-4-00,20260217-rerun-4,2026-02-17 09:31:31.691716,c4-highmem-16,us-central1-a,0a76d2f,pypsa-de-elec-trex_vopt-20-1h,cbc-2.10.12,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,20-1h,gurobi,13.0.0,2025.0,ok,optimal,1206.3985659369937,14232.312,7559785260.716539,,,1177.4545731544497,86400.0,benchmark-instance-rerun-4-00,20260217-rerun-4,2026-02-18 09:35:01.080942,c4-highmem-16,us-central1-a,0a76d2f,pypsa-de-elec-trex_vopt-20-1h,gurobi-13.0.0,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,20-1h,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,86400.0,163.56,,,,86400.0,86400.0,benchmark-instance-rerun-4-00,20260217-rerun-4,2026-02-18 09:58:44.605328,c4-highmem-16,us-central1-a,0a76d2f,pypsa-de-elec-trex_vopt-20-1h,highs-hipo-1.12.0-hipo,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,20-1h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,86400.0,163.076,,,,86400.0,86400.0,benchmark-instance-rerun-4-00,20260217-rerun-4,2026-02-19 10:01:49.318412,c4-highmem-16,us-central1-a,0a76d2f,pypsa-de-elec-trex_vopt-20-1h,highs-ipx-1.12.0-hipo,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,20-1h,highs,1.12.0,2025.0,TO,Timeout,86400.0,6437.596,,,,86400.0,86400.0,benchmark-instance-rerun-4-00,20260217-rerun-4,2026-02-20 10:05:03.448104,c4-highmem-16,us-central1-a,0a76d2f,pypsa-de-elec-trex_vopt-20-1h,highs-1.12.0,pypsa-de-elec-trex_vopt -pypsa-de-elec-trex_vopt,20-1h,scip,10.0.0,2025.0,TO,Timeout,86400.0,30607.184,,,,86400.0,86400.0,benchmark-instance-rerun-4-00,20260217-rerun-4,2026-02-21 10:08:08.256475,c4-highmem-16,us-central1-a,0a76d2f,pypsa-de-elec-trex_vopt-20-1h,scip-10.0.0,pypsa-de-elec-trex_vopt -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,126.864,,,,3600.0,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 09:32:05.711632,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29,73-1h,glpk,5.0,2020.0,ok,unknown,588.3067809329996,174.928,506400.4424,,,,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 10:35:42.345508,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314,73-1h,gurobi,10.0.0,2022.0,ok,optimal,25.3851113289993,215.98,250234.60094888505,,,25.014601945877075,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 10:46:11.620580,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314,73-1h,highs,1.5.0.dev0,2022.0,ok,optimal,160.8427376869995,413.752,250234.60094052847,,,160.776344537735,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 10:50:17.211725,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314,73-1h,scip,8.0.3,2022.0,ok,optimal,253.8196188049997,568.52,250234.6006067611,,,253.735418,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 10:52:58.764691,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29,73-1h,gurobi,10.0.0,2022.0,ok,optimal,4.154624127999341,213.284,506400.44236236345,,,3.815894842147827,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 10:57:13.303905,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29,73-1h,highs,1.5.0.dev0,2022.0,ok,optimal,26.61129902799985,338.788,506400.4423618824,,,26.420466423034668,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 10:57:18.259785,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29,73-1h,scip,8.0.3,2022.0,ok,optimal,21.72804216000077,424.616,506400.4423618824,,,21.600038,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 10:57:45.684412,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314,73-1h,gurobi,11.0.0,2023.0,ok,optimal,27.233667380000043,228.512,250234.60094888505,,,26.96521306037903,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 11:01:28.547180,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314,73-1h,highs,1.6.0.dev0,2023.0,ok,optimal,157.32209098100066,433.9,250234.60094052847,,,157.2776656150818,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 11:05:34.063733,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314,73-1h,scip,8.1.0,2023.0,ok,optimal,257.61794312499933,580.756,250234.6006067611,,,257.558433,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 11:08:12.226800,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314,73-1h,cbc,2.10.11,2023.0,ok,optimal,1794.311640158,174.072,250234.60094888,,,1794.24,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 11:12:30.700090,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29,73-1h,gurobi,11.0.0,2023.0,ok,optimal,4.459518031999323,224.212,506400.4423626776,,,4.124136924743652,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 11:42:25.822966,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29,73-1h,highs,1.6.0.dev0,2023.0,ok,optimal,26.60261971900036,351.136,506400.4423618824,,,26.48586678504944,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 11:42:31.178335,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29,73-1h,scip,8.1.0,2023.0,ok,optimal,22.260811153999384,432.656,506400.4423618824,,,22.153548,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 11:42:58.689188,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29,73-1h,cbc,2.10.11,2023.0,ok,optimal,90.23266693199912,179.14,506400.44236207,,,90.13,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 11:43:21.884272,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314,73-1h,gurobi,12.0.0,2024.0,ok,optimal,18.86375710900029,202.364,250234.59678195184,4.999999986443997e-07,9.974466470781864e-05,18.62058806419373,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 11:45:22.717166,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314,73-1h,highs,1.9.0,2024.0,ok,optimal,97.11990487000004,426.784,250234.6009488848,3.7081449022480235e-14,8.65884898652509e-05,97.04414916038512,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 11:49:28.725893,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314,73-1h,scip,9.2.0,2024.0,ok,optimal,259.05565140699946,555.412,250234.6006067611,2.410960332488443e-07,0.0,258.992701,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 11:51:06.468488,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314,73-1h,cbc,2.10.12,2024.0,ok,optimal,1818.765079867,154.032,250234.60094888,0.0,0.0,1818.61,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 11:55:26.168306,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29,73-1h,gurobi,12.0.0,2024.0,ok,optimal,3.481347349999851,199.544,506400.4423618826,0.0,5.747196886517646e-16,3.155233860015869,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 12:25:45.537593,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29,73-1h,highs,1.9.0,2024.0,ok,optimal,25.82270203400003,313.572,506400.4423618822,1.5210055437364645e-14,0.0,25.62803554534912,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 12:25:49.736402,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29,73-1h,scip,9.2.0,2024.0,ok,optimal,21.69167874899904,409.652,506400.4423618824,0.0,0.0,21.587872,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 12:26:16.265338,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29,73-1h,cbc,2.10.12,2024.0,ok,optimal,88.16478279900002,156.024,506400.44236207,0.0,,87.88,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 12:26:38.699270,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314,73-1h,gurobi,13.0.0,2025.0,ok,optimal,23.41063560899965,232.656,250234.60094888505,0.0,9.703811540042038e-05,23.154402017593384,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 12:28:37.698837,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314,73-1h,highs,1.12.0,2025.0,ok,optimal,247.6778244090001,542.244,250234.6009488837,7.896358184611633e-14,8.376310973075116e-05,247.62565422058103,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 12:32:39.293646,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314,73-1h,scip,10.0.0,2025.0,ok,optimal,255.7868017740002,574.264,250234.6006067611,2.410960332488443e-07,0.0,255.722153,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 12:36:47.980846,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29,73-1h,gurobi,13.0.0,2025.0,ok,optimal,3.6848113189989817,227.104,506400.4423435307,0.0,3.448318132035554e-16,3.371789932250977,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 12:41:04.607620,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29,73-1h,highs,1.12.0,2025.0,ok,optimal,17.41318079099983,374.18,506400.44236187794,2.035482893347762e-12,0.0,17.287233352661133,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 12:41:09.198853,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29 -Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29,73-1h,scip,10.0.0,2025.0,ok,optimal,22.027785780999693,435.612,506400.4423618824,0.0,0.0,21.917794,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 12:41:27.502159,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29 -pypsa-eur-elec-trex_vopt-dfp,100-12h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,835.44,,,,86400.0,86400.0,benchmark-instance-rerun-4-02,20260217-rerun-4,2026-02-17 09:31:26.241142,c4-highmem-16,us-central1-a,0a76d2f,pypsa-eur-elec-trex_vopt-dfp-100-12h,cbc-2.10.12,pypsa-eur-elec-trex_vopt-dfp -pypsa-eur-elec-trex_vopt-dfp,100-12h,gurobi,13.0.0,2025.0,ok,optimal,2382.7073838740034,7933.332,36238113183.38044,,,2370.391368865967,86400.0,benchmark-instance-rerun-4-02,20260217-rerun-4,2026-02-18 09:35:00.442004,c4-highmem-16,us-central1-a,0a76d2f,pypsa-eur-elec-trex_vopt-dfp-100-12h,gurobi-13.0.0,pypsa-eur-elec-trex_vopt-dfp -pypsa-eur-elec-trex_vopt-dfp,100-12h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,5392.997271984001,26525.652,36238113184.0,,,5392.997271984001,86400.0,benchmark-instance-rerun-4-02,20260217-rerun-4,2026-02-18 10:18:03.568688,c4-highmem-16,us-central1-a,0a76d2f,pypsa-eur-elec-trex_vopt-dfp-100-12h,highs-hipo-1.12.0-hipo,pypsa-eur-elec-trex_vopt-dfp -pypsa-eur-elec-trex_vopt-dfp,100-12h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,22470.214054203,2861.944,36238113186.0,,,22470.214054203,86400.0,benchmark-instance-rerun-4-02,20260217-rerun-4,2026-02-18 11:51:05.731252,c4-highmem-16,us-central1-a,0a76d2f,pypsa-eur-elec-trex_vopt-dfp-100-12h,highs-ipx-1.12.0-hipo,pypsa-eur-elec-trex_vopt-dfp -pypsa-eur-elec-trex_vopt-dfp,100-12h,highs,1.12.0,2025.0,TO,Timeout,86400.0,3759.744,,,,86400.0,86400.0,benchmark-instance-rerun-4-02,20260217-rerun-4,2026-02-18 18:08:40.696504,c4-highmem-16,us-central1-a,0a76d2f,pypsa-eur-elec-trex_vopt-dfp-100-12h,highs-1.12.0,pypsa-eur-elec-trex_vopt-dfp -pypsa-eur-elec-trex_vopt-dfp,100-12h,scip,10.0.0,2025.0,TO,Timeout,86400.0,13913.748,,,,86400.0,86400.0,benchmark-instance-rerun-4-02,20260217-rerun-4,2026-02-19 18:11:46.114079,c4-highmem-16,us-central1-a,0a76d2f,pypsa-eur-elec-trex_vopt-dfp-100-12h,scip-10.0.0,pypsa-eur-elec-trex_vopt-dfp -SWITCH-3-zone-tiny,3-6ts,glpk,5.0,2020.0,ER,,,125.076,,,,,3600.0,benchmark-instance-rerun-4-06,20260219-rerun-4,2026-02-19 09:15:53.410030,c4-standard-2,us-central1-a,27db948,SWITCH-3-zone-tiny-3-6ts,glpk-5.0,SWITCH-3-zone-tiny -SWITCH-3-zone-tiny,3-6ts,gurobi,10.0.0,2022.0,ok,optimal,0.3063182319999669,167.448,126750492.10678376,,,0.0035121440887451,3600.0,benchmark-instance-rerun-4-06,20260219-rerun-4,2026-02-19 09:20:12.032544,c4-standard-2,us-central1-a,27db948,SWITCH-3-zone-tiny-3-6ts,gurobi-10.0.0,SWITCH-3-zone-tiny -SWITCH-3-zone-tiny,3-6ts,highs,1.5.0.dev0,2022.0,ok,optimal,0.0085696129999632,155.836,126750492.10678376,,,0.0023517608642578,3600.0,benchmark-instance-rerun-4-06,20260219-rerun-4,2026-02-19 09:23:52.595328,c4-standard-2,us-central1-a,27db948,SWITCH-3-zone-tiny-3-6ts,highs-1.5.0.dev0,SWITCH-3-zone-tiny -SWITCH-3-zone-tiny,3-6ts,scip,8.0.3,2022.0,ok,optimal,0.0151576609999892,169.396,126750492.10678376,,,0.007045,3600.0,benchmark-instance-rerun-4-06,20260219-rerun-4,2026-02-19 09:23:53.259104,c4-standard-2,us-central1-a,27db948,SWITCH-3-zone-tiny-3-6ts,scip-8.0.3,SWITCH-3-zone-tiny -SWITCH-3-zone-tiny,3-6ts,gurobi,11.0.0,2023.0,ok,optimal,0.2408323109999628,177.284,126750492.10678376,,,0.0037028789520263,3600.0,benchmark-instance-rerun-4-06,20260219-rerun-4,2026-02-19 09:27:17.418254,c4-standard-2,us-central1-a,27db948,SWITCH-3-zone-tiny-3-6ts,gurobi-11.0.0,SWITCH-3-zone-tiny -SWITCH-3-zone-tiny,3-6ts,highs,1.6.0.dev0,2023.0,ok,optimal,0.0092376879999847,166.508,126750492.10678376,,,0.0024154186248779,3600.0,benchmark-instance-rerun-4-06,20260219-rerun-4,2026-02-19 09:31:00.266683,c4-standard-2,us-central1-a,27db948,SWITCH-3-zone-tiny-3-6ts,highs-1.6.0.dev0,SWITCH-3-zone-tiny -SWITCH-3-zone-tiny,3-6ts,scip,8.1.0,2023.0,ok,optimal,0.0141004910001356,178.728,126750492.10678376,,,0.006872,3600.0,benchmark-instance-rerun-4-06,20260219-rerun-4,2026-02-19 09:31:01.139971,c4-standard-2,us-central1-a,27db948,SWITCH-3-zone-tiny-3-6ts,scip-8.1.0,SWITCH-3-zone-tiny -SWITCH-3-zone-tiny,3-6ts,cbc,2.10.11,2023.0,ok,optimal,0.0525574630000846,164.368,126750492.1067838,,,0.02,3600.0,benchmark-instance-rerun-4-06,20260219-rerun-4,2026-02-19 09:31:01.922500,c4-standard-2,us-central1-a,27db948,SWITCH-3-zone-tiny-3-6ts,cbc-2.10.11,SWITCH-3-zone-tiny -SWITCH-3-zone-tiny,3-6ts,gurobi,12.0.0,2024.0,ok,optimal,0.241886083000054,153.688,126750492.10678376,0.0,0.0,0.0034959316253662,3600.0,benchmark-instance-rerun-4-06,20260219-rerun-4,2026-02-19 09:31:29.982176,c4-standard-2,us-central1-a,27db948,SWITCH-3-zone-tiny-3-6ts,gurobi-12.0.0,SWITCH-3-zone-tiny -SWITCH-3-zone-tiny,3-6ts,highs,1.9.0,2024.0,ok,optimal,0.0127031570000326,141.956,126750492.10678376,0.0,0.0,0.0024952888488769,3600.0,benchmark-instance-rerun-4-06,20260219-rerun-4,2026-02-19 09:35:12.213061,c4-standard-2,us-central1-a,27db948,SWITCH-3-zone-tiny-3-6ts,highs-1.9.0,SWITCH-3-zone-tiny -SWITCH-3-zone-tiny,3-6ts,scip,9.2.0,2024.0,ok,optimal,0.0146908229999098,155.484,126750492.10678376,0.0,0.0,0.007088,3600.0,benchmark-instance-rerun-4-06,20260219-rerun-4,2026-02-19 09:35:12.739623,c4-standard-2,us-central1-a,27db948,SWITCH-3-zone-tiny-3-6ts,scip-9.2.0,SWITCH-3-zone-tiny -SWITCH-3-zone-tiny,3-6ts,cbc,2.10.12,2024.0,ok,optimal,0.1141406710000865,141.896,126750492.1067838,0.0,,0.03,3600.0,benchmark-instance-rerun-4-06,20260219-rerun-4,2026-02-19 09:35:13.275204,c4-standard-2,us-central1-a,27db948,SWITCH-3-zone-tiny-3-6ts,cbc-2.10.12,SWITCH-3-zone-tiny -SWITCH-3-zone-tiny,3-6ts,gurobi,13.0.0,2025.0,ok,optimal,0.2413608019999173,182.068,126750492.10678376,0.0,0.0,0.0033648014068603,3600.0,benchmark-instance-rerun-4-06,20260219-rerun-4,2026-02-19 09:35:41.442494,c4-standard-2,us-central1-a,27db948,SWITCH-3-zone-tiny-3-6ts,gurobi-13.0.0,SWITCH-3-zone-tiny -SWITCH-3-zone-tiny,3-6ts,highs,1.12.0,2025.0,ok,optimal,0.018953404000058,169.088,126750492.10678376,0.0,0.0,0.006908893585205,3600.0,benchmark-instance-rerun-4-06,20260219-rerun-4,2026-02-19 09:39:23.682483,c4-standard-2,us-central1-a,27db948,SWITCH-3-zone-tiny-3-6ts,highs-1.12.0,SWITCH-3-zone-tiny -SWITCH-3-zone-tiny,3-6ts,scip,10.0.0,2025.0,ok,optimal,0.0157963960000415,182.08,126750492.10678376,0.0,0.0,0.007254,3600.0,benchmark-instance-rerun-4-06,20260219-rerun-4,2026-02-19 09:39:24.663203,c4-standard-2,us-central1-a,27db948,SWITCH-3-zone-tiny-3-6ts,scip-10.0.0,SWITCH-3-zone-tiny -pglib_opf_case2848,2848-NA,glpk,5.0,2020.0,TO,Timeout,3600.0,132.816,,,,3600.0,3600.0,benchmark-instance-rerun-4-00,20260223-rerun-4,2026-02-23 19:45:19.996633,c4-standard-2,us-central1-a,3ab4324,pglib_opf_case2848-2848-NA,glpk-5.0,pglib_opf_case2848 -pglib_opf_case2848,2848-NA,gurobi,10.0.0,2022.0,ok,optimal,26.596633492000365,233.108,1267741.9032914697,,,26.214659929275516,3600.0,benchmark-instance-rerun-4-00,20260223-rerun-4,2026-02-23 20:49:48.205731,c4-standard-2,us-central1-a,3ab4324,pglib_opf_case2848-2848-NA,gurobi-10.0.0,pglib_opf_case2848 -pglib_opf_case2848,2848-NA,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,804.784,,,,3600.0,3600.0,benchmark-instance-rerun-4-00,20260223-rerun-4,2026-02-23 20:53:59.964235,c4-standard-2,us-central1-a,3ab4324,pglib_opf_case2848-2848-NA,highs-1.5.0.dev0,pglib_opf_case2848 -pglib_opf_case2848,2848-NA,scip,8.0.3,2022.0,ok,optimal,548.8801074050007,418.972,1267731.6690013115,,,548.722466,3600.0,benchmark-instance-rerun-4-00,20260223-rerun-4,2026-02-23 21:57:43.332875,c4-standard-2,us-central1-a,3ab4324,pglib_opf_case2848-2848-NA,scip-8.0.3,pglib_opf_case2848 -pglib_opf_case2848,2848-NA,gurobi,11.0.0,2023.0,ok,optimal,13.36543296400123,256.156,1267731.6690446571,,,13.046716928482056,3600.0,benchmark-instance-rerun-4-00,20260223-rerun-4,2026-02-23 22:10:21.015030,c4-standard-2,us-central1-a,3ab4324,pglib_opf_case2848-2848-NA,gurobi-11.0.0,pglib_opf_case2848 -pglib_opf_case2848,2848-NA,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,831.06,,,,3600.0,3600.0,benchmark-instance-rerun-4-00,20260223-rerun-4,2026-02-23 22:14:17.877562,c4-standard-2,us-central1-a,3ab4324,pglib_opf_case2848-2848-NA,highs-1.6.0.dev0,pglib_opf_case2848 -pglib_opf_case2848,2848-NA,scip,8.1.0,2023.0,ok,optimal,545.3551113569993,430.108,1267731.6690013115,,,545.220859,3600.0,benchmark-instance-rerun-4-00,20260223-rerun-4,2026-02-23 23:18:00.612572,c4-standard-2,us-central1-a,3ab4324,pglib_opf_case2848-2848-NA,scip-8.1.0,pglib_opf_case2848 -pglib_opf_case2848,2848-NA,cbc,2.10.11,2023.0,TO,Timeout,3600.0,171.512,,,,3600.0,3600.0,benchmark-instance-rerun-4-00,20260223-rerun-4,2026-02-23 23:27:06.863734,c4-standard-2,us-central1-a,3ab4324,pglib_opf_case2848-2848-NA,cbc-2.10.11,pglib_opf_case2848 -pglib_opf_case2848,2848-NA,gurobi,12.0.0,2024.0,ok,optimal,45.68231531100173,228.18,1267841.2331756158,0.0,8.641786316852894e-05,45.37519311904907,3600.0,benchmark-instance-rerun-4-00,20260223-rerun-4,2026-02-24 00:31:19.692711,c4-standard-2,us-central1-a,3ab4324,pglib_opf_case2848-2848-NA,gurobi-12.0.0,pglib_opf_case2848 -pglib_opf_case2848,2848-NA,highs,1.9.0,2024.0,TO,Timeout,3600.0,592.132,,,,3600.0,3600.0,benchmark-instance-rerun-4-00,20260223-rerun-4,2026-02-24 00:35:48.553978,c4-standard-2,us-central1-a,3ab4324,pglib_opf_case2848-2848-NA,highs-1.9.0,pglib_opf_case2848 -pglib_opf_case2848,2848-NA,scip,9.2.0,2024.0,ok,optimal,546.0156597979985,405.292,1267731.6690013115,1.4876988529977098e-14,0.0,545.87748,3600.0,benchmark-instance-rerun-4-00,20260223-rerun-4,2026-02-24 01:39:31.415452,c4-standard-2,us-central1-a,3ab4324,pglib_opf_case2848-2848-NA,scip-9.2.0,pglib_opf_case2848 -pglib_opf_case2848,2848-NA,cbc,2.10.12,2024.0,TO,Timeout,3600.0,146.976,,,,3600.0,3600.0,benchmark-instance-rerun-4-00,20260223-rerun-4,2026-02-24 01:48:38.141155,c4-standard-2,us-central1-a,3ab4324,pglib_opf_case2848-2848-NA,cbc-2.10.12,pglib_opf_case2848 -pglib_opf_case2848,2848-NA,gurobi,13.0.0,2025.0,ok,optimal,4.808573903999786,223.508,1267731.6692602143,0.0,1.6867669286092602e-10,4.496469974517822,3600.0,benchmark-instance-rerun-4-00,20260223-rerun-4,2026-02-24 02:52:52.975406,c4-standard-2,us-central1-a,3ab4324,pglib_opf_case2848-2848-NA,gurobi-13.0.0,pglib_opf_case2848 -pglib_opf_case2848,2848-NA,highs,1.12.0,2025.0,TO,Timeout,3600.0,715.5,,,,3600.0,3600.0,benchmark-instance-rerun-4-00,20260223-rerun-4,2026-02-24 02:56:40.947884,c4-standard-2,us-central1-a,3ab4324,pglib_opf_case2848-2848-NA,highs-1.12.0,pglib_opf_case2848 -pglib_opf_case2848,2848-NA,scip,10.0.0,2025.0,ok,optimal,547.9627689350018,431.74,1267731.6690013115,1.4876988529977098e-14,0.0,547.81637,3600.0,benchmark-instance-rerun-4-00,20260223-rerun-4,2026-02-24 04:00:23.194147,c4-standard-2,us-central1-a,3ab4324,pglib_opf_case2848-2848-NA,scip-10.0.0,pglib_opf_case2848 +Benchmark,Size,Solver,Solver Version,Solver Release Year,Status,Termination Condition,Runtime (s),Memory Usage (MB),Objective Value,Max Integrality Violation,Duality Gap,Reported Runtime (s),Timeout,Hostname,Run ID,Timestamp,VM Instance Type,VM Zone,Solver benchmark version diff --git a/results/benchmark_results_mean_stddev.csv b/results/benchmark_results_mean_stddev.csv new file mode 100644 index 00000000..79a116b5 --- /dev/null +++ b/results/benchmark_results_mean_stddev.csv @@ -0,0 +1 @@ +Benchmark,Size,Solver,Solver Version,Solver Release Year,Status,Termination Condition,Runtime Mean (s),Runtime StdDev (s),Memory Mean (MB),Memory StdDev (MB),Objective Value,Run ID,Timestamp diff --git a/runner/run_benchmarks.py b/runner/run_benchmarks.py index 5a849221..e7361ed8 100644 --- a/runner/run_benchmarks.py +++ b/runner/run_benchmarks.py @@ -469,7 +469,7 @@ def build_solver_command( "{}s".format(timeout), "python", str(Path(__file__).parent / "run_solver.py"), - "--solver_name {}".format(solver_name), + "--solver_name {}".format(base_solver), "--input_file {}".format(input_file.as_posix()), "--solver_version {}".format(solver_version), ] From 2b5dc3fe25f1ac8a91f541689b7b372455fc9a91 Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Wed, 4 Mar 2026 21:33:17 +0100 Subject: [PATCH 39/57] code: re-introduce print --- runner/run_benchmarks.py | 56 +++++++++++++++++++--------------------- 1 file changed, 27 insertions(+), 29 deletions(-) diff --git a/runner/run_benchmarks.py b/runner/run_benchmarks.py index e7361ed8..5f3c0243 100644 --- a/runner/run_benchmarks.py +++ b/runner/run_benchmarks.py @@ -51,7 +51,6 @@ import datetime import gzip import json -import logging import os import re import shutil @@ -67,8 +66,6 @@ import requests import yaml -logger = logging.getLogger(__name__) - def get_conda_package_versions(solvers: list[str], env_name=None) -> dict[str, str]: """ @@ -152,7 +149,7 @@ def _download_via_requests(url: str, dest: Path, chunk_size: int = 8192) -> None if chunk: f.write(chunk) os.replace(tmp, dest) - logger.info(f"Downloaded {url} to {dest} via requests") + print(f"Downloaded {url} to {dest} via requests") def _download_via_gsutil(url: str, dest: Path) -> None: @@ -174,7 +171,7 @@ def _download_via_gsutil(url: str, dest: Path) -> None: subprocess.run( ["gsutil", "cp", url, str(dest)], check=True, capture_output=True, text=True ) - logger.info(f"Downloaded {url} to {dest} via gsutil") + print(f"Downloaded {url} to {dest} via gsutil") def _unzip_gz(path: Path) -> Path: @@ -184,7 +181,7 @@ def _unzip_gz(path: Path) -> Path: with gzip.open(path, "rb") as gz_f, open(uncompressed, "wb") as out_f: shutil.copyfileobj(gz_f, out_f) os.remove(path) - logger.info(f"Unzipped {path} -> {uncompressed}") + print(f"Unzipped {path} -> {uncompressed}") return uncompressed @@ -214,7 +211,7 @@ def download_benchmark_file(url: str, dest_path: Path) -> None: dest_path.with_suffix("") if dest_path.suffix == ".gz" else dest_path ) if final_uncompressed.exists(): - logger.info(f"File already exists at {final_uncompressed}. Skipping download.") + print(f"File already exists at {final_uncompressed}. Skipping download.") return # download to dest_path (compressed or not) @@ -556,7 +553,7 @@ def parse_solver_result(result: subprocess.CompletedProcess, timeout: int) -> di exceptions if ``result.stdout`` does not contain valid JSON on the final line. """ if result.returncode == 124: - logger.info("TIMEOUT") + print("TIMEOUT") return return_failure_metrics("TO", "Timeout", timeout) # systemd-run uses sigkill (9) or sigterm (15) to terminate @@ -564,11 +561,11 @@ def parse_solver_result(result: subprocess.CompletedProcess, timeout: int) -> di # subprocess returns - for signals # these things don't seem very portable if result.returncode in (137, 143, -9, -15): - logger.info("OUT OF MEMORY") + print("OUT OF MEMORY") return return_failure_metrics("OOM", "Out of Memory", "N/A") if result.returncode != 0: - logger.info( + print( f"ERROR running solver. Return code: {result.returncode}\n" f"Stdout:\n{result.stdout}\n" f"Stderr:\n{result.stderr}\n" @@ -627,7 +624,7 @@ def benchmark_solver( available_memory_bytes = psutil.virtual_memory().available memory_limit_bytes = int(available_memory_bytes * 0.95) memory_limit_mb = memory_limit_bytes / (1024 * 1024) - logger.info( + print( f"Setting memory limit to {memory_limit_mb:.2f} MB (95% of available memory)." ) @@ -660,18 +657,18 @@ def benchmark_solver( f.write("\nSTDERR:\n") f.write(result.stderr) else: - logger.info(f"ERROR: couldn't find log file {log_file}") + print(f"ERROR: couldn't find log file {log_file}") memory = None try: memory = parse_memory(result.stderr) except ValueError: - logger.error("Failed to parse memory usage from stderr") + print("Failed to parse memory usage from stderr") metrics = parse_solver_result(result, timeout) if metrics["status"] not in {"ok", "TO", "ER", "OOM"}: - logger.info(f"WARNING: unknown solver status: {metrics['status']}") + print(f"WARNING: unknown solver status: {metrics['status']}") metrics["memory"] = memory metrics["timeout"] = timeout @@ -702,7 +699,7 @@ def main( -1 ] # the api will return a response like projects/319823961160/machineTypes/c4-highmem-8 except Exception as e: - logger.error(f"Error getting VM instance type: {e}") + print(f"Error getting VM instance type: {e}") environment_metadata["vm_instance_type"] = "unknown" try: @@ -712,7 +709,7 @@ def main( text=True, ).stdout.strip() except Exception as e: - logger.error(f"Error getting git commit hash: {e}") + print(f"Error getting git commit hash: {e}") environment_metadata["solver_benchmark_version"] = "unknown" try: @@ -722,14 +719,14 @@ def main( headers={"Metadata-Flavor": "Google"}, ).text.split("/")[-1] except Exception as e: - logger.error(f"Error getting VM zone: {e}") + print(f"Error getting VM zone: {e}") environment_metadata["vm_zone"] = "unknown" if run_id is None: run_id = f"{time.strftime('%Y%m%d_%H%M%S')}_{hostname}" - logger.info(f"Generated run_id: {run_id}") + print(f"Generated run_id: {run_id}") else: - logger.info(f"Using provided run_id: {run_id}") + print(f"Using provided run_id: {run_id}") size_categories = None # TODO add this to CLI args results = {} @@ -809,7 +806,7 @@ def main( } ) - logger.info( + print( f"Found {len(processed_benchmarks)} benchmark instances" + ("" if size_categories is None else f" matching {size_categories}") ) @@ -829,7 +826,7 @@ def main( year == "2024" and solver == "cbc" ) # Latest CBC release is in 2024 ): - logger.info( + print( f"WARNING: skipping {solver} in {year} because this benchmark instance is size L." ) continue @@ -838,7 +835,7 @@ def main( if solver == "highs-hipo" and ( # For py3.10 compatibility year != "2025" or benchmark["class"] != "LP" ): - logger.info( + print( f"Solver {solver} is only available for LP benchmarks and year 2025." f" Current year: {year}, problem class: {benchmark['class']}. Skipping." ) @@ -846,7 +843,7 @@ def main( solver_version = solvers_versions.get(solver) if not solver_version: - logger.info(f"Solver {solver} is not available. Skipping.") + print(f"Solver {solver} is not available. Skipping.") continue metrics = {} @@ -854,8 +851,8 @@ def main( memory_usages = [] for i in range(iterations): - logger.info( - f"Running solver {solver} (version {solver_version}) on {benchmark['path']} ({i})..." + print( + f"Running solver {solver} (version {solver_version}) on {benchmark['path']} ({i})...,", flush=True ) # Record timestamp before running the solver @@ -917,7 +914,7 @@ def main( if last_reference_run == 0 or time_since_last_run >= int( reference_interval ): - logger.info( + print( f"Running reference benchmark with HiGHS HiPO (interval: {reference_interval}s)..." ) reference_metrics = benchmark_solver( @@ -944,8 +941,9 @@ def main( # Update the last reference run time last_reference_run = current_time else: - logger.info( - f"Skipping reference benchmark (last run {time_since_last_run:.1f}s ago, interval: {reference_interval}s)" + print( + f"Skipping reference benchmark (last run {time_since_last_run:.1f}s ago, interval: {reference_interval}s)", + flush=True, ) return results @@ -998,4 +996,4 @@ def main( run_id=args.run_id, ) # Print a message indicating completion - logger.info("Benchmarking complete.") + print("Benchmarking complete.") From 2beb8f78669738b65e7440a48014b6f4fc265428 Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Wed, 4 Mar 2026 21:33:39 +0100 Subject: [PATCH 40/57] code: pre-commit --- runner/run_benchmarks.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/runner/run_benchmarks.py b/runner/run_benchmarks.py index 5f3c0243..754e1dec 100644 --- a/runner/run_benchmarks.py +++ b/runner/run_benchmarks.py @@ -852,7 +852,8 @@ def main( for i in range(iterations): print( - f"Running solver {solver} (version {solver_version}) on {benchmark['path']} ({i})...,", flush=True + f"Running solver {solver} (version {solver_version}) on {benchmark['path']} ({i})...,", + flush=True, ) # Record timestamp before running the solver From d4b5daaa3d3e1d17b3c345c9c4f2f327f16df229 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Wed, 4 Mar 2026 20:33:41 +0000 Subject: [PATCH 41/57] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- runner/run_benchmarks.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/runner/run_benchmarks.py b/runner/run_benchmarks.py index 5f3c0243..754e1dec 100644 --- a/runner/run_benchmarks.py +++ b/runner/run_benchmarks.py @@ -852,7 +852,8 @@ def main( for i in range(iterations): print( - f"Running solver {solver} (version {solver_version}) on {benchmark['path']} ({i})...,", flush=True + f"Running solver {solver} (version {solver_version}) on {benchmark['path']} ({i})...,", + flush=True, ) # Record timestamp before running the solver From 7ab9793f6da4c52b30c7d3afc8fdc5c5ce2ff2ae Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Wed, 4 Mar 2026 21:47:05 +0100 Subject: [PATCH 42/57] code: remove .format --- runner/run_benchmarks.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/runner/run_benchmarks.py b/runner/run_benchmarks.py index 754e1dec..5dd19007 100644 --- a/runner/run_benchmarks.py +++ b/runner/run_benchmarks.py @@ -457,18 +457,18 @@ def build_solver_command( command.extend( [ "--scope", - "--property=MemoryMax={}".format(memory_limit_bytes), + f"--property=MemoryMax={memory_limit_bytes}", "--property=MemorySwapMax=0", "/usr/bin/time", "--format", "MaxResidentSetSizeKB=%M", "timeout", - "{}s".format(timeout), + f"{timeout}s", "python", str(Path(__file__).parent / "run_solver.py"), - "--solver_name {}".format(base_solver), - "--input_file {}".format(input_file.as_posix()), - "--solver_version {}".format(solver_version), + f"--solver_name {base_solver}", + f"--input_file {input_file.as_posix()}", + f"--solver_version {solver_version}", ] ) From 05b8c06cf3afbbe442626223f40fbbee05bf9b07 Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Wed, 4 Mar 2026 22:08:21 +0100 Subject: [PATCH 43/57] code: modified command --- runner/run_benchmarks.py | 13 ++++++++----- tests/test_run_benchmarks.py | 22 ++++++++++++++-------- 2 files changed, 22 insertions(+), 13 deletions(-) diff --git a/runner/run_benchmarks.py b/runner/run_benchmarks.py index 5dd19007..b7514fe5 100644 --- a/runner/run_benchmarks.py +++ b/runner/run_benchmarks.py @@ -466,16 +466,19 @@ def build_solver_command( f"{timeout}s", "python", str(Path(__file__).parent / "run_solver.py"), - f"--solver_name {base_solver}", - f"--input_file {input_file.as_posix()}", - f"--solver_version {solver_version}", + "--solver_name", + base_solver, + "--input_file", + input_file.as_posix(), + "--solver_version", + solver_version, ] ) if variant: - command.append(f"--highs_solver_variant {variant}") + command.extend(["--highs_solver_variant", variant]) elif reference_benchmark and base_solver.lower() == "highs": - command.append("--highs_solver_variant hipo") + command.extend(["--highs_solver_variant", "hipo"]) return command diff --git a/tests/test_run_benchmarks.py b/tests/test_run_benchmarks.py index 2a1f1480..9f98a0e3 100644 --- a/tests/test_run_benchmarks.py +++ b/tests/test_run_benchmarks.py @@ -74,10 +74,14 @@ def test_build_command_non_root_includes_user_and_reference_flag( assert f"{timeout}s" in cmd expected_wrapper = str(Path(run_benchmarks.__file__).parent / "run_solver.py") assert expected_wrapper in cmd - assert f"--solver_name {solver_name}" in cmd - assert f"--input_file {input_file.as_posix()}" in cmd - assert f"--solver_version {solver_version}" in cmd - assert "--highs_solver_variant hipo" in cmd + assert "--solver_name" in cmd + assert cmd[cmd.index("--solver_name") + 1] == solver_name + assert "--input_file" in cmd + assert cmd[cmd.index("--input_file") + 1] == input_file.as_posix() + assert "--solver_version" in cmd + assert cmd[cmd.index("--solver_version") + 1] == solver_version + assert "--highs_solver_variant" in cmd + assert cmd[cmd.index("--highs_solver_variant") + 1] == "hipo" def test_build_command_as_root_no_user_and_no_reference( self, monkeypatch: MagicMock @@ -93,13 +97,15 @@ def test_build_command_as_root_no_user_and_no_reference( cmd = build_solver_command( input_file, solver_name, timeout, solver_version, memory_limit_bytes, False ) - assert "--user" not in cmd assert f"--property=MemoryMax={memory_limit_bytes}" in cmd assert f"{timeout}s" in cmd - assert f"--solver_name {solver_name}" in cmd - assert f"--input_file {input_file.as_posix()}" in cmd - assert f"--solver_version {solver_version}" in cmd + assert "--solver_name" in cmd + assert cmd[cmd.index("--solver_name") + 1] == solver_name + assert "--input_file" in cmd + assert cmd[cmd.index("--input_file") + 1] == input_file.as_posix() + assert "--solver_version" in cmd + assert cmd[cmd.index("--solver_version") + 1] == solver_version assert not any(el == "--highs_solver_variant hipo" for el in cmd) def test_download_regular_file_http(self, tmp_path: Path) -> None: From 0ede762ae9cb65f1a3da8092201cbed2072cb724 Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Thu, 5 Mar 2026 10:06:15 +0100 Subject: [PATCH 44/57] code: modify parse_solver_results --- runner/run_benchmarks.py | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/runner/run_benchmarks.py b/runner/run_benchmarks.py index b7514fe5..0ee162f9 100644 --- a/runner/run_benchmarks.py +++ b/runner/run_benchmarks.py @@ -555,19 +555,22 @@ def parse_solver_result(result: subprocess.CompletedProcess, timeout: int) -> di Not raised by this function directly, but callers should be aware that JSON parsing may raise exceptions if ``result.stdout`` does not contain valid JSON on the final line. """ - if result.returncode == 124: + + if result.returncode == 0: + # Successful run; parse the JSON metrics from the last line of stdout + return json.loads(result.stdout.splitlines()[-1]) + elif result.returncode == 124: + # 124 is the exit code used by the `timeout` command to indicate a timeout print("TIMEOUT") return return_failure_metrics("TO", "Timeout", timeout) - - # systemd-run uses sigkill (9) or sigterm (15) to terminate - # the process and returns 128 + signal exit code - # subprocess returns - for signals - # these things don't seem very portable - if result.returncode in (137, 143, -9, -15): + elif result.returncode in (137, 143, -9, -15): + # systemd-run uses sigkill (9) or sigterm (15) to terminate + # the process and returns 128 + signal exit code + # subprocess returns - for signals + # these things don't seem very portable print("OUT OF MEMORY") return return_failure_metrics("OOM", "Out of Memory", "N/A") - - if result.returncode != 0: + else: print( f"ERROR running solver. Return code: {result.returncode}\n" f"Stdout:\n{result.stdout}\n" @@ -575,8 +578,6 @@ def parse_solver_result(result: subprocess.CompletedProcess, timeout: int) -> di ) return return_failure_metrics("ER", "Error", timeout) - return json.loads(result.stdout.splitlines()[-1]) - def benchmark_solver( input_file: Path, From 48d4dcdb9c6357190a341156a17974f55555c5fc Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Thu, 5 Mar 2026 10:50:24 +0100 Subject: [PATCH 45/57] code: modify benchmark_solver --- runner/run_benchmarks.py | 115 +++++++++++++++++++++++++++------------ 1 file changed, 80 insertions(+), 35 deletions(-) diff --git a/runner/run_benchmarks.py b/runner/run_benchmarks.py index 0ee162f9..13fbb132 100644 --- a/runner/run_benchmarks.py +++ b/runner/run_benchmarks.py @@ -56,6 +56,7 @@ import shutil import statistics import subprocess +import sys import time import typing from collections import OrderedDict @@ -248,9 +249,8 @@ def parse_memory(output: str) -> float: ----- - Assumes the memory usage is reported in kilobytes (KB) and converts it to megabytes (MB). """ - line = output.splitlines()[-1] - if "MaxResidentSetSizeKB=" in line: - parts = line.strip().split("=") + if "MaxResidentSetSizeKB=" in output: + parts = output.strip().split("=") max_resident_set_size = parts[-1] return float(max_resident_set_size) / 1000 # Convert to MB raise ValueError(f"Could not find memory usage in subprocess output:\n{output}") @@ -450,36 +450,81 @@ def build_solver_command( """ base_solver, variant = get_solver_name_and_version(solver_name) - command = ["systemd-run"] - if os.geteuid() != 0: - command.append("--user") - - command.extend( - [ - "--scope", - f"--property=MemoryMax={memory_limit_bytes}", - "--property=MemorySwapMax=0", - "/usr/bin/time", - "--format", - "MaxResidentSetSizeKB=%M", - "timeout", - f"{timeout}s", - "python", - str(Path(__file__).parent / "run_solver.py"), - "--solver_name", - base_solver, - "--input_file", - input_file.as_posix(), - "--solver_version", - solver_version, - ] + # Detect available helper binaries + sysd = shutil.which("systemd-run") + prlimit = shutil.which("prlimit") + timeout_cmd = shutil.which("timeout") + # Use GNU /usr/bin/time only on Linux where format is supported + time_cmd = ( + "/usr/bin/time" + if (sys.platform.startswith("linux") and shutil.which("/usr/bin/time")) + else None ) + # Common solver invocation + solver_invocation = [ + "python", + str(Path(__file__).parent / "run_solver.py"), + "--solver_name", + base_solver, + "--input_file", + input_file.as_posix(), + "--solver_version", + solver_version, + ] + if variant: - command.extend(["--highs_solver_variant", variant]) + solver_invocation.extend(["--highs_solver_variant", variant]) elif reference_benchmark and base_solver.lower() == "highs": - command.extend(["--highs_solver_variant", "hipo"]) - + solver_invocation.extend(["--highs_solver_variant", "hipo"]) + + # If systemd-run is available prefer it (provides MemoryMax) + if sysd: + print("systemd-run detected") + command = [sysd] + if os.geteuid() != 0: + command.append("--user") + command.extend( + [ + "--scope", + f"--property=MemoryMax={memory_limit_bytes}", + "--property=MemorySwapMax=0", + ] + ) + # prepend /usr/bin/time if available on the platform + if time_cmd: + command.extend([time_cmd, "--format", "MaxResidentSetSizeKB=%M"]) + # prepend timeout if available + if timeout_cmd: + command.extend([timeout_cmd, f"{timeout}s"]) + command.extend(solver_invocation) + return command + + # If prlimit exists, use it to set resource limits (Linux) + if prlimit: + print("prlimit detected") + command = [ + prlimit, + f"--as={memory_limit_bytes}", + f"--rss={memory_limit_bytes}", + "--", + ] # "--" marks end of prlimit args + # add time and timeout if available + if time_cmd: + command.extend([time_cmd, "--format", "MaxResidentSetSizeKB=%M"]) + if timeout_cmd: + command.extend([timeout_cmd, f"{timeout}s"]) + command.extend(solver_invocation) + return command + + # Fallback: no system-level memory enforcement available. Run directly, + # optionally wrapped with time/timeout if present. + command = [] + if time_cmd: + command.extend([time_cmd, "--format", "MaxResidentSetSizeKB=%M"]) + if timeout_cmd: + command.extend([timeout_cmd, f"{timeout}s"]) + command.extend(solver_invocation) return command @@ -656,12 +701,12 @@ def benchmark_solver( / "logs" / f"{Path(input_file).stem}-{solver_name}-{solver_version}.log" ) - if log_file.exists(): - with open(log_file, "a") as f: - f.write("\nSTDERR:\n") - f.write(result.stderr) - else: - print(f"ERROR: couldn't find log file {log_file}") + if not log_file.exists(): + print(f"Creating missing log file {log_file}") + log_file.touch() + with open(log_file, "a") as f: + f.write("\nSTDERR:\n") + f.write(result.stderr) memory = None try: From 64a010ffccea180947166bf550f1b2fa8c48b300 Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Thu, 5 Mar 2026 11:24:27 +0100 Subject: [PATCH 46/57] code: modify benchmark_solver --- runner/run_benchmarks.py | 111 +++++++++++++-------------------------- 1 file changed, 36 insertions(+), 75 deletions(-) diff --git a/runner/run_benchmarks.py b/runner/run_benchmarks.py index 13fbb132..632e6652 100644 --- a/runner/run_benchmarks.py +++ b/runner/run_benchmarks.py @@ -56,7 +56,6 @@ import shutil import statistics import subprocess -import sys import time import typing from collections import OrderedDict @@ -450,81 +449,36 @@ def build_solver_command( """ base_solver, variant = get_solver_name_and_version(solver_name) - # Detect available helper binaries - sysd = shutil.which("systemd-run") - prlimit = shutil.which("prlimit") - timeout_cmd = shutil.which("timeout") - # Use GNU /usr/bin/time only on Linux where format is supported - time_cmd = ( - "/usr/bin/time" - if (sys.platform.startswith("linux") and shutil.which("/usr/bin/time")) - else None - ) + command = ["systemd-run"] + if os.geteuid() != 0: + command.append("--user") - # Common solver invocation - solver_invocation = [ - "python", - str(Path(__file__).parent / "run_solver.py"), - "--solver_name", - base_solver, - "--input_file", - input_file.as_posix(), - "--solver_version", - solver_version, - ] + command.extend( + [ + "--scope", + f"--property=MemoryMax={memory_limit_bytes}", + "--property=MemorySwapMax=0", + "/usr/bin/time", + "--format", + "MaxResidentSetSizeKB=%M", + "timeout", + f"{timeout}s", + "python", + str(Path(__file__).parent / "run_solver.py"), + "--solver_name", + base_solver, + "--input_file", + input_file.as_posix(), + "--solver_version", + solver_version, + ] + ) if variant: - solver_invocation.extend(["--highs_solver_variant", variant]) + command.extend(["--highs_solver_variant", variant]) elif reference_benchmark and base_solver.lower() == "highs": - solver_invocation.extend(["--highs_solver_variant", "hipo"]) - - # If systemd-run is available prefer it (provides MemoryMax) - if sysd: - print("systemd-run detected") - command = [sysd] - if os.geteuid() != 0: - command.append("--user") - command.extend( - [ - "--scope", - f"--property=MemoryMax={memory_limit_bytes}", - "--property=MemorySwapMax=0", - ] - ) - # prepend /usr/bin/time if available on the platform - if time_cmd: - command.extend([time_cmd, "--format", "MaxResidentSetSizeKB=%M"]) - # prepend timeout if available - if timeout_cmd: - command.extend([timeout_cmd, f"{timeout}s"]) - command.extend(solver_invocation) - return command - - # If prlimit exists, use it to set resource limits (Linux) - if prlimit: - print("prlimit detected") - command = [ - prlimit, - f"--as={memory_limit_bytes}", - f"--rss={memory_limit_bytes}", - "--", - ] # "--" marks end of prlimit args - # add time and timeout if available - if time_cmd: - command.extend([time_cmd, "--format", "MaxResidentSetSizeKB=%M"]) - if timeout_cmd: - command.extend([timeout_cmd, f"{timeout}s"]) - command.extend(solver_invocation) - return command - - # Fallback: no system-level memory enforcement available. Run directly, - # optionally wrapped with time/timeout if present. - command = [] - if time_cmd: - command.extend([time_cmd, "--format", "MaxResidentSetSizeKB=%M"]) - if timeout_cmd: - command.extend([timeout_cmd, f"{timeout}s"]) - command.extend(solver_invocation) + command.extend(["--highs_solver_variant", "hipo"]) + return command @@ -601,25 +555,32 @@ def parse_solver_result(result: subprocess.CompletedProcess, timeout: int) -> di exceptions if ``result.stdout`` does not contain valid JSON on the final line. """ + print( + "Enter parse_solver_result with returncode:", + result.returncode, + flush=True, + ) + if result.returncode == 0: # Successful run; parse the JSON metrics from the last line of stdout return json.loads(result.stdout.splitlines()[-1]) elif result.returncode == 124: # 124 is the exit code used by the `timeout` command to indicate a timeout - print("TIMEOUT") + print("TIMEOUT", flush=True) return return_failure_metrics("TO", "Timeout", timeout) elif result.returncode in (137, 143, -9, -15): # systemd-run uses sigkill (9) or sigterm (15) to terminate # the process and returns 128 + signal exit code # subprocess returns - for signals # these things don't seem very portable - print("OUT OF MEMORY") + print("OUT OF MEMORY", flush=True) return return_failure_metrics("OOM", "Out of Memory", "N/A") else: print( f"ERROR running solver. Return code: {result.returncode}\n" f"Stdout:\n{result.stdout}\n" - f"Stderr:\n{result.stderr}\n" + f"Stderr:\n{result.stderr}\n", + flush=True, ) return return_failure_metrics("ER", "Error", timeout) From a76861b7816ebcb6d709bf13f54d069c5c02052e Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Thu, 5 Mar 2026 11:32:04 +0100 Subject: [PATCH 47/57] code: new attempt --- runner/run_benchmarks.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/runner/run_benchmarks.py b/runner/run_benchmarks.py index 632e6652..0dc47039 100644 --- a/runner/run_benchmarks.py +++ b/runner/run_benchmarks.py @@ -563,18 +563,18 @@ def parse_solver_result(result: subprocess.CompletedProcess, timeout: int) -> di if result.returncode == 0: # Successful run; parse the JSON metrics from the last line of stdout - return json.loads(result.stdout.splitlines()[-1]) + metrics = json.loads(result.stdout.splitlines()[-1]) elif result.returncode == 124: # 124 is the exit code used by the `timeout` command to indicate a timeout print("TIMEOUT", flush=True) - return return_failure_metrics("TO", "Timeout", timeout) + metrics = return_failure_metrics("TO", "Timeout", timeout) elif result.returncode in (137, 143, -9, -15): # systemd-run uses sigkill (9) or sigterm (15) to terminate # the process and returns 128 + signal exit code # subprocess returns - for signals # these things don't seem very portable print("OUT OF MEMORY", flush=True) - return return_failure_metrics("OOM", "Out of Memory", "N/A") + metrics = return_failure_metrics("OOM", "Out of Memory", "N/A") else: print( f"ERROR running solver. Return code: {result.returncode}\n" @@ -582,7 +582,9 @@ def parse_solver_result(result: subprocess.CompletedProcess, timeout: int) -> di f"Stderr:\n{result.stderr}\n", flush=True, ) - return return_failure_metrics("ER", "Error", timeout) + metrics = return_failure_metrics("ER", "Error", timeout) + print(metrics, flush=True) + return metrics def benchmark_solver( @@ -683,6 +685,8 @@ def benchmark_solver( metrics["memory"] = memory metrics["timeout"] = timeout + print("Finished benchmark_solver with metrics:", metrics, flush=True) + return metrics From 4d0e913cb3f7992c3ba904ab10bc22729030cde0 Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Thu, 5 Mar 2026 11:50:39 +0100 Subject: [PATCH 48/57] code: new attempt --- runner/run_benchmarks.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/runner/run_benchmarks.py b/runner/run_benchmarks.py index 0dc47039..080b67d7 100644 --- a/runner/run_benchmarks.py +++ b/runner/run_benchmarks.py @@ -558,6 +558,7 @@ def parse_solver_result(result: subprocess.CompletedProcess, timeout: int) -> di print( "Enter parse_solver_result with returncode:", result.returncode, + type(result.returncode), flush=True, ) @@ -583,7 +584,8 @@ def parse_solver_result(result: subprocess.CompletedProcess, timeout: int) -> di flush=True, ) metrics = return_failure_metrics("ER", "Error", timeout) - print(metrics, flush=True) + print("---> metrics",metrics, flush=True) + print("---> result.stdout", result.stdout, flush=True) return metrics From b045bf9b19dfd0b6112cf720fc4abca9495e8ae5 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Thu, 5 Mar 2026 10:50:56 +0000 Subject: [PATCH 49/57] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- runner/run_benchmarks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runner/run_benchmarks.py b/runner/run_benchmarks.py index 080b67d7..5890d457 100644 --- a/runner/run_benchmarks.py +++ b/runner/run_benchmarks.py @@ -584,7 +584,7 @@ def parse_solver_result(result: subprocess.CompletedProcess, timeout: int) -> di flush=True, ) metrics = return_failure_metrics("ER", "Error", timeout) - print("---> metrics",metrics, flush=True) + print("---> metrics", metrics, flush=True) print("---> result.stdout", result.stdout, flush=True) return metrics From 9126e4e43b7549d2114a79cf3fa3ffc310a6be38 Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Thu, 5 Mar 2026 12:00:12 +0100 Subject: [PATCH 50/57] code: update run_solver.py --- runner/run_benchmarks.py | 2 +- runner/run_solver.py | 43 +++++++++++++++++++--------------------- 2 files changed, 21 insertions(+), 24 deletions(-) diff --git a/runner/run_benchmarks.py b/runner/run_benchmarks.py index 080b67d7..5890d457 100644 --- a/runner/run_benchmarks.py +++ b/runner/run_benchmarks.py @@ -584,7 +584,7 @@ def parse_solver_result(result: subprocess.CompletedProcess, timeout: int) -> di flush=True, ) metrics = return_failure_metrics("ER", "Error", timeout) - print("---> metrics",metrics, flush=True) + print("---> metrics", metrics, flush=True) print("---> result.stdout", result.stdout, flush=True) return metrics diff --git a/runner/run_solver.py b/runner/run_solver.py index b8e49221..0a9cc100 100644 --- a/runner/run_solver.py +++ b/runner/run_solver.py @@ -458,16 +458,6 @@ def main( solution_fn = solution_dir / f"{output_filename}.sol" log_fn = logs_dir / f"{output_filename}.log" - results = { - "runtime": None, - "reported_runtime": None, - "status": "ER", - "condition": None, - "objective": None, - "duality_gap": None, - "max_integrality_violation": None, - } - # We measure runtime here and not of this entire script because lines like # `import linopy` take a long (and varying) amount of time try: @@ -479,21 +469,28 @@ def main( duality_gap, max_integrality_violation = get_milp_metrics( problem_file, solver_name, solver_result ) - results.update( - { - "runtime": runtime, - "reported_runtime": get_reported_runtime( - solver_name, solver_result.solver_model - ), - "status": solver_result.status.status.value, - "condition": solver_result.status.termination_condition.value, - "objective": solver_result.solution.objective, - "duality_gap": duality_gap, - "max_integrality_violation": max_integrality_violation, - } - ) + results = { + "runtime": runtime, + "reported_runtime": get_reported_runtime( + solver_name, solver_result.solver_model + ), + "status": solver_result.status.status.value, + "condition": solver_result.status.termination_condition.value, + "objective": solver_result.solution.objective, + "duality_gap": duality_gap, + "max_integrality_violation": max_integrality_violation, + } except Exception as e: logger.error(f"Error running solver: {e}") + results = { + "runtime": None, + "reported_runtime": None, + "status": "ER", + "condition": None, + "objective": None, + "duality_gap": None, + "max_integrality_violation": None, + } print(json.dumps(results)) From 30f56aaa039aafd35ced2c5c6238cce8c9b6fdee Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Thu, 5 Mar 2026 12:09:28 +0100 Subject: [PATCH 51/57] code: remove cbc from solvers to run --- runner/benchmark_all.sh | 2 +- runner/run_benchmarks.py | 9 --------- 2 files changed, 1 insertion(+), 10 deletions(-) diff --git a/runner/benchmark_all.sh b/runner/benchmark_all.sh index f996657c..135eba98 100755 --- a/runner/benchmark_all.sh +++ b/runner/benchmark_all.sh @@ -75,7 +75,7 @@ for year in "${years[@]}"; do solver_args="--solvers ${solvers_override}" echo "Using solver override: ${solvers_override}" else - solver_args="--solvers gurobi highs-hipo highs-ipm highs scip cbc glpk" + solver_args="--solvers gurobi highs-hipo highs-ipm highs scip glpk" fi # Overwrite results for the first year, append thereafter diff --git a/runner/run_benchmarks.py b/runner/run_benchmarks.py index 5890d457..849e8726 100644 --- a/runner/run_benchmarks.py +++ b/runner/run_benchmarks.py @@ -555,13 +555,6 @@ def parse_solver_result(result: subprocess.CompletedProcess, timeout: int) -> di exceptions if ``result.stdout`` does not contain valid JSON on the final line. """ - print( - "Enter parse_solver_result with returncode:", - result.returncode, - type(result.returncode), - flush=True, - ) - if result.returncode == 0: # Successful run; parse the JSON metrics from the last line of stdout metrics = json.loads(result.stdout.splitlines()[-1]) @@ -584,8 +577,6 @@ def parse_solver_result(result: subprocess.CompletedProcess, timeout: int) -> di flush=True, ) metrics = return_failure_metrics("ER", "Error", timeout) - print("---> metrics", metrics, flush=True) - print("---> result.stdout", result.stdout, flush=True) return metrics From 93f17afcd785e30e46f49b33651d39a74671ed98 Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Thu, 5 Mar 2026 12:15:10 +0100 Subject: [PATCH 52/57] code: remove unnecessary TODO --- runner/run_solver.py | 1 - 1 file changed, 1 deletion(-) diff --git a/runner/run_solver.py b/runner/run_solver.py index 0a9cc100..fc30c451 100644 --- a/runner/run_solver.py +++ b/runner/run_solver.py @@ -119,7 +119,6 @@ def set_seed_options(solver_name: str) -> dict[str, int | float]: Returns an empty dictionary if the solver name is not recognized. """ mip_gap = 1e-4 # Tolerance for the relative duality gap for MILPs - # TODO: remove extra configs that came from the K PR. seed_options = { "highs": {"random_seed": 0, "mip_rel_gap": mip_gap}, "glpk": {"seed": 0, "mipgap": mip_gap}, From e5286b736915ded790432c7ead595c7370f94a09 Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Thu, 5 Mar 2026 12:22:14 +0100 Subject: [PATCH 53/57] code: restore benchmark_results.csv --- results/benchmark_results.csv | 2763 ++++++++++++++++++++- results/benchmark_results_mean_stddev.csv | 1 - 2 files changed, 2762 insertions(+), 2 deletions(-) delete mode 100644 results/benchmark_results_mean_stddev.csv diff --git a/results/benchmark_results.csv b/results/benchmark_results.csv index c134b60e..29ada244 100644 --- a/results/benchmark_results.csv +++ b/results/benchmark_results.csv @@ -1 +1,2762 @@ -Benchmark,Size,Solver,Solver Version,Solver Release Year,Status,Termination Condition,Runtime (s),Memory Usage (MB),Objective Value,Max Integrality Violation,Duality Gap,Reported Runtime (s),Timeout,Hostname,Run ID,Timestamp,VM Instance Type,VM Zone,Solver benchmark version +Benchmark,Size,Solver,Solver Version,Solver Release Year,Status,Termination Condition,Runtime (s),Memory Usage (MB),Objective Value,Max Integrality Violation,Duality Gap,Reported Runtime (s),Timeout,Hostname,Run ID,Timestamp,VM Instance Type,VM Zone,Solver benchmark version,bench-size,solver-version,Benchmark1 +TIMES-GEO-global-netzero,31-20ts,gurobi,13.0.0,2025.0,ok,optimal,30621.769837542,17795.476,217368601.07479045,,,30590.7080180645,86400.0,benchmark-instance-l-19,20251212-run-Ls,2025-12-12 19:27:23.962157,c4-highmem-16,europe-north2-b,90fca5f,TIMES-GEO-global-netzero-31-20ts,gurobi-13.0.0,TIMES-GEO-global-netzero +TIMES-GEO-global-netzero,31-20ts,highs-hipo,1.12.0-hipo,2025.0,warning,Not Set,64715.836038680005,14280.74,,,,64715.836038680005,86400.0,benchmark-instance-l-19,20251212-run-Ls,2025-12-13 04:01:38.198589,c4-highmem-16,europe-north2-b,90fca5f,TIMES-GEO-global-netzero-31-20ts,highs-hipo-1.12.0-hipo,TIMES-GEO-global-netzero +TIMES-GEO-global-netzero,31-20ts,highs-ipx,1.12.0-hipo,2025.0,warning,Not Set,70080.397364883,9782.604,,,,70080.397364883,86400.0,benchmark-instance-l-19,20251212-run-Ls,2025-12-13 22:03:17.152733,c4-highmem-16,europe-north2-b,90fca5f,TIMES-GEO-global-netzero-31-20ts,highs-ipx-1.12.0-hipo,TIMES-GEO-global-netzero +TIMES-GEO-global-netzero,31-20ts,highs,1.12.0,2025.0,ER,unknown,62869.74497941398,17229.104,0.0,,,62820.87901353836,86400.0,benchmark-instance-l-19,20251212-run-Ls,2025-12-14 17:34:17.922231,c4-highmem-16,europe-north2-b,90fca5f,TIMES-GEO-global-netzero-31-20ts,highs-1.12.0,TIMES-GEO-global-netzero +TIMES-GEO-global-netzero,31-20ts,scip,10.0.0,2025.0,TO,Timeout,86400.0,39357.552,,,,86400.0,86400.0,benchmark-instance-l-19,20251212-run-Ls,2025-12-15 11:05:58.727551,c4-highmem-16,europe-north2-b,90fca5f,TIMES-GEO-global-netzero-31-20ts,scip-10.0.0,TIMES-GEO-global-netzero +TIMES-GEO-global-netzero,31-20ts,cbc,2.10.12,2024.0,TO,Timeout,86400.0,2498.936,,,,86400.0,86400.0,benchmark-instance-l-19,20251212-run-Ls,2025-12-16 11:09:29.153829,c4-highmem-16,europe-north2-b,90fca5f,TIMES-GEO-global-netzero-31-20ts,cbc-2.10.12,TIMES-GEO-global-netzero +pypsa-de-elec,50-1h,gurobi,13.0.0,2025.0,ok,optimal,2989.140083293,27867.236,5649367821.866575,,,2923.996409893036,86400.0,benchmark-instance-l-05,20251212-run-Ls,2025-12-12 19:27:59.353482,c4-highmem-16,us-east5-a,90fca5f,pypsa-de-elec-50-1h,gurobi-13.0.0,pypsa-de-elec +pypsa-de-elec,50-1h,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,86400.0,163.868,,,,86400.0,86400.0,benchmark-instance-l-05,20251212-run-Ls,2025-12-12 20:21:57.350807,c4-highmem-16,us-east5-a,90fca5f,pypsa-de-elec-50-1h,highs-hipo-1.12.0-hipo,pypsa-de-elec +pypsa-de-elec,50-1h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,86400.0,162.992,,,,86400.0,86400.0,benchmark-instance-l-05,20251212-run-Ls,2025-12-13 20:25:00.701617,c4-highmem-16,us-east5-a,90fca5f,pypsa-de-elec-50-1h,highs-ipx-1.12.0-hipo,pypsa-de-elec +pypsa-de-elec,50-1h,highs,1.12.0,2025.0,TO,Timeout,86400.0,14057.508,,,,86400.0,86400.0,benchmark-instance-l-05,20251212-run-Ls,2025-12-14 20:28:00.142755,c4-highmem-16,us-east5-a,90fca5f,pypsa-de-elec-50-1h,highs-1.12.0,pypsa-de-elec +pypsa-de-elec,50-1h,scip,10.0.0,2025.0,TO,Timeout,86400.0,61414.264,,,,86400.0,86400.0,benchmark-instance-l-05,20251212-run-Ls,2025-12-15 20:31:03.119216,c4-highmem-16,us-east5-a,90fca5f,pypsa-de-elec-50-1h,scip-10.0.0,pypsa-de-elec +pypsa-de-elec,50-1h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,3892.792,,,,86400.0,86400.0,benchmark-instance-l-05,20251212-run-Ls,2025-12-16 20:34:36.175650,c4-highmem-16,us-east5-a,90fca5f,pypsa-de-elec-50-1h,cbc-2.10.12,pypsa-de-elec +temoa-US_9R_TS,9-12ts,gurobi,13.0.0,2025.0,ok,optimal,190.656273,6973.552,38368452.39006148,,,172.03110599517822,86400.0,benchmark-instance-l-14,20251212-run-Ls,2025-12-12 19:29:23.394851,c4-highmem-16,asia-south2-a,90fca5f,temoa-US_9R_TS-9-12ts,gurobi-13.0.0,temoa-US_9R_TS +temoa-US_9R_TS,9-12ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,3181.154350677,6815.092,38368452.391,,,3181.154350677,86400.0,benchmark-instance-l-14,20251212-run-Ls,2025-12-12 19:36:11.918562,c4-highmem-16,asia-south2-a,90fca5f,temoa-US_9R_TS-9-12ts,highs-hipo-1.12.0-hipo,temoa-US_9R_TS +temoa-US_9R_TS,9-12ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,3388.8018794049995,5298.6,38368452.391,,,3388.8018794049995,86400.0,benchmark-instance-l-14,20251212-run-Ls,2025-12-12 20:29:13.786770,c4-highmem-16,asia-south2-a,90fca5f,temoa-US_9R_TS-9-12ts,highs-ipx-1.12.0-hipo,temoa-US_9R_TS +temoa-US_9R_TS,9-12ts,highs,1.12.0,2025.0,ok,optimal,13094.096341464005,7140.98,38368452.39079964,,,13064.423545598984,86400.0,benchmark-instance-l-14,20251212-run-Ls,2025-12-12 21:28:49.474498,c4-highmem-16,asia-south2-a,90fca5f,temoa-US_9R_TS-9-12ts,highs-1.12.0,temoa-US_9R_TS +temoa-US_9R_TS,9-12ts,scip,10.0.0,2025.0,TO,Timeout,86400.0,13014.648,,,,86400.0,86400.0,benchmark-instance-l-14,20251212-run-Ls,2025-12-13 01:10:36.615460,c4-highmem-16,asia-south2-a,90fca5f,temoa-US_9R_TS-9-12ts,scip-10.0.0,temoa-US_9R_TS +temoa-US_9R_TS,9-12ts,cbc,2.10.12,2024.0,ok,optimal,32696.379876480016,4211.896,38368450.80244397,,,,86400.0,benchmark-instance-l-14,20251212-run-Ls,2025-12-14 01:14:12.263199,c4-highmem-16,asia-south2-a,90fca5f,temoa-US_9R_TS-9-12ts,cbc-2.10.12,temoa-US_9R_TS +times-ireland-noco2-counties,26-1ts,gurobi,13.0.0,2025.0,ok,optimal,97.490335517,2794.652,312194.1030452465,,,92.13439798355104,86400.0,benchmark-instance-l-23,20251212-run-Ls,2025-12-12 19:28:58.092908,c4-highmem-16,me-west1-b,90fca5f,times-ireland-noco2-counties-26-1ts,gurobi-13.0.0,times-ireland-noco2-counties +times-ireland-noco2-counties,26-1ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,725.1770573169999,2255.052,312194.10407,,,725.1770573169999,86400.0,benchmark-instance-l-23,20251212-run-Ls,2025-12-12 19:33:40.256635,c4-highmem-16,me-west1-b,90fca5f,times-ireland-noco2-counties-26-1ts,highs-hipo-1.12.0-hipo,times-ireland-noco2-counties +times-ireland-noco2-counties,26-1ts,highs-ipx,1.12.0-hipo,2025.0,warning,Unknown,877.475760193,1365.38,312194.10407,,,877.475760193,86400.0,benchmark-instance-l-23,20251212-run-Ls,2025-12-12 19:45:46.110622,c4-highmem-16,me-west1-b,90fca5f,times-ireland-noco2-counties-26-1ts,highs-ipx-1.12.0-hipo,times-ireland-noco2-counties +times-ireland-noco2-counties,26-1ts,highs,1.12.0,2025.0,ok,optimal,4921.829970901999,2302.508,312194.1030159498,,,4916.250006198883,86400.0,benchmark-instance-l-23,20251212-run-Ls,2025-12-12 20:00:24.257469,c4-highmem-16,me-west1-b,90fca5f,times-ireland-noco2-counties-26-1ts,highs-1.12.0,times-ireland-noco2-counties +times-ireland-noco2-counties,26-1ts,scip,10.0.0,2025.0,TO,Timeout,86400.0,11358.32,,,,86400.0,86400.0,benchmark-instance-l-23,20251212-run-Ls,2025-12-12 21:25:29.865993,c4-highmem-16,me-west1-b,90fca5f,times-ireland-noco2-counties-26-1ts,scip-10.0.0,times-ireland-noco2-counties +times-ireland-noco2-counties,26-1ts,cbc,2.10.12,2024.0,ER,,,578.976,,,,,86400.0,benchmark-instance-l-23,20251212-run-Ls,2025-12-13 21:29:04.002430,c4-highmem-16,me-west1-b,90fca5f,times-ireland-noco2-counties-26-1ts,cbc-2.10.12,times-ireland-noco2-counties +pypsa-de-elec-dfp,50-1h,gurobi,13.0.0,2025.0,ok,optimal,3964.298018617,26672.316,7568789557.2084465,,,3888.1629550457,86400.0,benchmark-instance-l-08,20251212-run-Ls,2025-12-12 19:41:45.365328,c4-highmem-16,northamerica-northeast2-b,90fca5f,pypsa-de-elec-dfp-50-1h,gurobi-13.0.0,pypsa-de-elec-dfp +pypsa-de-elec-dfp,50-1h,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,86400.0,163.264,,,,86400.0,86400.0,benchmark-instance-l-08,20251212-run-Ls,2025-12-12 20:52:34.908235,c4-highmem-16,northamerica-northeast2-b,90fca5f,pypsa-de-elec-dfp-50-1h,highs-hipo-1.12.0-hipo,pypsa-de-elec-dfp +pypsa-de-elec-dfp,50-1h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,86400.0,163.452,,,,86400.0,86400.0,benchmark-instance-l-08,20251212-run-Ls,2025-12-13 20:56:08.169592,c4-highmem-16,northamerica-northeast2-b,90fca5f,pypsa-de-elec-dfp-50-1h,highs-ipx-1.12.0-hipo,pypsa-de-elec-dfp +pypsa-de-elec-dfp,50-1h,highs,1.12.0,2025.0,TO,Timeout,86400.0,14046.004,,,,86400.0,86400.0,benchmark-instance-l-08,20251212-run-Ls,2025-12-14 20:59:35.559902,c4-highmem-16,northamerica-northeast2-b,90fca5f,pypsa-de-elec-dfp-50-1h,highs-1.12.0,pypsa-de-elec-dfp +pypsa-de-elec-dfp,50-1h,scip,10.0.0,2025.0,TO,Timeout,86400.0,61403.632,,,,86400.0,86400.0,benchmark-instance-l-08,20251212-run-Ls,2025-12-15 21:03:04.249063,c4-highmem-16,northamerica-northeast2-b,90fca5f,pypsa-de-elec-dfp-50-1h,scip-10.0.0,pypsa-de-elec-dfp +pypsa-de-elec-dfp,50-1h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,3893.432,,,,86400.0,86400.0,benchmark-instance-l-08,20251212-run-Ls,2025-12-16 21:06:59.181104,c4-highmem-16,northamerica-northeast2-b,90fca5f,pypsa-de-elec-dfp-50-1h,cbc-2.10.12,pypsa-de-elec-dfp +pypsa-de-sec-trex_copt,50-1h,gurobi,13.0.0,2025.0,OOM,Out of Memory,,,,,,,86400.0,benchmark-instance-l-11,20251212-run-Ls,2025-12-12 19:33:34.935043,c4-highmem-16,asia-south1-a,90fca5f,pypsa-de-sec-trex_copt-50-1h,gurobi-13.0.0,pypsa-de-sec-trex_copt +pypsa-de-sec-trex_copt,50-1h,highs-hipo,1.12.0-hipo,2025.0,OOM,Out of Memory,,,,,,,86400.0,benchmark-instance-l-11,20251212-run-Ls,2025-12-12 19:44:45.984582,c4-highmem-16,asia-south1-a,90fca5f,pypsa-de-sec-trex_copt-50-1h,highs-hipo-1.12.0-hipo,pypsa-de-sec-trex_copt +pypsa-de-sec-trex_copt,50-1h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,86400.0,162.664,,,,86400.0,86400.0,benchmark-instance-l-11,20251212-run-Ls,2025-12-12 20:47:46.393102,c4-highmem-16,asia-south1-a,90fca5f,pypsa-de-sec-trex_copt-50-1h,highs-ipx-1.12.0-hipo,pypsa-de-sec-trex_copt +pypsa-de-sec-trex_copt,50-1h,highs,1.12.0,2025.0,TO,Timeout,86400.0,87144.092,,,,86400.0,86400.0,benchmark-instance-l-11,20251212-run-Ls,2025-12-13 20:51:19.393599,c4-highmem-16,asia-south1-a,90fca5f,pypsa-de-sec-trex_copt-50-1h,highs-1.12.0,pypsa-de-sec-trex_copt +pypsa-de-sec-trex_copt,50-1h,scip,10.0.0,2025.0,OOM,Out of Memory,,,,,,,86400.0,benchmark-instance-l-11,20251212-run-Ls,2025-12-14 20:54:52.850431,c4-highmem-16,asia-south1-a,90fca5f,pypsa-de-sec-trex_copt-50-1h,scip-10.0.0,pypsa-de-sec-trex_copt +pypsa-de-sec-trex_copt,50-1h,cbc,2.10.12,2024.0,ER,,,63747.656,,,,,86400.0,benchmark-instance-l-11,20251212-run-Ls,2025-12-14 21:00:43.095362,c4-highmem-16,asia-south1-a,90fca5f,pypsa-de-sec-trex_copt-50-1h,cbc-2.10.12,pypsa-de-sec-trex_copt +pypsa-de-elec-trex_copt,50-1h,gurobi,13.0.0,2025.0,ok,optimal,6240.9616968440005,31514.232,7462462913.781927,,,6163.423426151276,86400.0,benchmark-instance-l-07,20251212-run-Ls,2025-12-12 19:35:23.248221,c4-highmem-16,europe-west1-d,90fca5f,pypsa-de-elec-trex_copt-50-1h,gurobi-13.0.0,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,50-1h,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,86400.0,164.088,,,,86400.0,86400.0,benchmark-instance-l-07,20251212-run-Ls,2025-12-12 21:24:14.290525,c4-highmem-16,europe-west1-d,90fca5f,pypsa-de-elec-trex_copt-50-1h,highs-hipo-1.12.0-hipo,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,50-1h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,86400.0,162.82,,,,86400.0,86400.0,benchmark-instance-l-07,20251212-run-Ls,2025-12-13 21:27:46.741660,c4-highmem-16,europe-west1-d,90fca5f,pypsa-de-elec-trex_copt-50-1h,highs-ipx-1.12.0-hipo,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,50-1h,highs,1.12.0,2025.0,TO,Timeout,86400.0,14433.44,,,,86400.0,86400.0,benchmark-instance-l-07,20251212-run-Ls,2025-12-14 21:31:17.047427,c4-highmem-16,europe-west1-d,90fca5f,pypsa-de-elec-trex_copt-50-1h,highs-1.12.0,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,50-1h,scip,10.0.0,2025.0,TO,Timeout,86400.0,67292.804,,,,86400.0,86400.0,benchmark-instance-l-07,20251212-run-Ls,2025-12-15 21:34:49.291302,c4-highmem-16,europe-west1-d,90fca5f,pypsa-de-elec-trex_copt-50-1h,scip-10.0.0,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,50-1h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,3860.984,,,,86400.0,86400.0,benchmark-instance-l-07,20251212-run-Ls,2025-12-16 21:38:50.964466,c4-highmem-16,europe-west1-d,90fca5f,pypsa-de-elec-trex_copt-50-1h,cbc-2.10.12,pypsa-de-elec-trex_copt +times-etimeseu-europe-elec+heat-co2-multi_stage,29-64ts,gurobi,13.0.0,2025.0,ok,optimal,1252.953661009,12973.664,4066917.6088489927,,,1237.1074509620669,86400.0,benchmark-instance-l-21,20251212-run-Ls,2025-12-12 19:28:10.513951,c4-highmem-16,northamerica-south1-a,90fca5f,times-etimeseu-europe-elec+heat-co2-multi_stage-29-64ts,gurobi-13.0.0,times-etimeseu-europe-elec+heat-co2-multi_stage +times-etimeseu-europe-elec+heat-co2-multi_stage,29-64ts,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,86400.0,162.912,,,,86400.0,86400.0,benchmark-instance-l-21,20251212-run-Ls,2025-12-12 19:52:37.819187,c4-highmem-16,northamerica-south1-a,90fca5f,times-etimeseu-europe-elec+heat-co2-multi_stage-29-64ts,highs-hipo-1.12.0-hipo,times-etimeseu-europe-elec+heat-co2-multi_stage +times-etimeseu-europe-elec+heat-co2-multi_stage,29-64ts,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,86400.0,162.764,,,,86400.0,86400.0,benchmark-instance-l-21,20251212-run-Ls,2025-12-13 19:55:53.117072,c4-highmem-16,northamerica-south1-a,90fca5f,times-etimeseu-europe-elec+heat-co2-multi_stage-29-64ts,highs-ipx-1.12.0-hipo,times-etimeseu-europe-elec+heat-co2-multi_stage +times-etimeseu-europe-elec+heat-co2-multi_stage,29-64ts,highs,1.12.0,2025.0,TO,Timeout,86400.0,3402.784,,,,86400.0,86400.0,benchmark-instance-l-21,20251212-run-Ls,2025-12-14 19:59:04.466246,c4-highmem-16,northamerica-south1-a,90fca5f,times-etimeseu-europe-elec+heat-co2-multi_stage-29-64ts,highs-1.12.0,times-etimeseu-europe-elec+heat-co2-multi_stage +times-etimeseu-europe-elec+heat-co2-multi_stage,29-64ts,scip,10.0.0,2025.0,TO,Timeout,86400.0,56030.064,,,,86400.0,86400.0,benchmark-instance-l-21,20251212-run-Ls,2025-12-15 20:02:17.774537,c4-highmem-16,northamerica-south1-a,90fca5f,times-etimeseu-europe-elec+heat-co2-multi_stage-29-64ts,scip-10.0.0,times-etimeseu-europe-elec+heat-co2-multi_stage +times-etimeseu-europe-elec+heat-co2-multi_stage,29-64ts,cbc,2.10.12,2024.0,ER,,,1646.856,,,,,86400.0,benchmark-instance-l-21,20251212-run-Ls,2025-12-16 20:06:05.043815,c4-highmem-16,northamerica-south1-a,90fca5f,times-etimeseu-europe-elec+heat-co2-multi_stage-29-64ts,cbc-2.10.12,times-etimeseu-europe-elec+heat-co2-multi_stage +temoa-US_9R_TS_NZ,9-12ts,gurobi,13.0.0,2025.0,ok,optimal,225.330826972,7190.732,37553963.51292429,,,205.2316770553589,86400.0,benchmark-instance-l-16,20251212-run-Ls,2025-12-12 19:35:12.955863,c4-highmem-16,europe-west1-c,90fca5f,temoa-US_9R_TS_NZ-9-12ts,gurobi-13.0.0,temoa-US_9R_TS_NZ +temoa-US_9R_TS_NZ,9-12ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,4389.935354099,7013.224,37553963.514,,,4389.935354099,86400.0,benchmark-instance-l-16,20251212-run-Ls,2025-12-12 19:42:56.992462,c4-highmem-16,europe-west1-c,90fca5f,temoa-US_9R_TS_NZ-9-12ts,highs-hipo-1.12.0-hipo,temoa-US_9R_TS_NZ +temoa-US_9R_TS_NZ,9-12ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,3909.625548767999,4637.772,37553963.735,,,3909.625548767999,86400.0,benchmark-instance-l-16,20251212-run-Ls,2025-12-12 20:59:40.531291,c4-highmem-16,europe-west1-c,90fca5f,temoa-US_9R_TS_NZ-9-12ts,highs-ipx-1.12.0-hipo,temoa-US_9R_TS_NZ +temoa-US_9R_TS_NZ,9-12ts,highs,1.12.0,2025.0,ok,optimal,30486.354940897,7382.448,37553963.51365733,,,30453.060187339783,86400.0,benchmark-instance-l-16,20251212-run-Ls,2025-12-12 22:08:21.629556,c4-highmem-16,europe-west1-c,90fca5f,temoa-US_9R_TS_NZ-9-12ts,highs-1.12.0,temoa-US_9R_TS_NZ +temoa-US_9R_TS_NZ,9-12ts,scip,10.0.0,2025.0,TO,Timeout,86400.0,13313.06,,,,86400.0,86400.0,benchmark-instance-l-16,20251212-run-Ls,2025-12-13 06:40:20.341159,c4-highmem-16,europe-west1-c,90fca5f,temoa-US_9R_TS_NZ-9-12ts,scip-10.0.0,temoa-US_9R_TS_NZ +temoa-US_9R_TS_NZ,9-12ts,cbc,2.10.12,2024.0,TO,Timeout,86400.0,1941.644,,,,86400.0,86400.0,benchmark-instance-l-16,20251212-run-Ls,2025-12-14 06:44:26.197894,c4-highmem-16,europe-west1-c,90fca5f,temoa-US_9R_TS_NZ-9-12ts,cbc-2.10.12,temoa-US_9R_TS_NZ +SWITCH-USA-PG,26-168h,gurobi,13.0.0,2025.0,ok,optimal,433.828678866,11795.876,437335179973.2393,,,408.68771481513977,86400.0,benchmark-instance-l-13,20251212-run-Ls,2025-12-12 19:29:27.857221,c4-highmem-16,asia-south1-c,90fca5f,SWITCH-USA-PG-26-168h,gurobi-13.0.0,SWITCH-USA-PG +SWITCH-USA-PG,26-168h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,23276.629933775,51131.232,437335179970.0,,,23276.629933775,86400.0,benchmark-instance-l-13,20251212-run-Ls,2025-12-12 19:40:20.434155,c4-highmem-16,asia-south1-c,90fca5f,SWITCH-USA-PG-26-168h,highs-hipo-1.12.0-hipo,SWITCH-USA-PG +SWITCH-USA-PG,26-168h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,65302.64692829801,5814.776,437335179970.0,,,65302.64692829801,86400.0,benchmark-instance-l-13,20251212-run-Ls,2025-12-13 02:11:26.332926,c4-highmem-16,asia-south1-c,90fca5f,SWITCH-USA-PG-26-168h,highs-ipx-1.12.0-hipo,SWITCH-USA-PG +SWITCH-USA-PG,26-168h,highs,1.12.0,2025.0,TO,Timeout,86400.0,7268.288,,,,86400.0,86400.0,benchmark-instance-l-13,20251212-run-Ls,2025-12-13 20:23:01.154071,c4-highmem-16,asia-south1-c,90fca5f,SWITCH-USA-PG-26-168h,highs-1.12.0,SWITCH-USA-PG +SWITCH-USA-PG,26-168h,scip,10.0.0,2025.0,TO,Timeout,86400.0,25435.756,,,,86400.0,86400.0,benchmark-instance-l-13,20251212-run-Ls,2025-12-14 20:26:16.874292,c4-highmem-16,asia-south1-c,90fca5f,SWITCH-USA-PG-26-168h,scip-10.0.0,SWITCH-USA-PG +SWITCH-USA-PG,26-168h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,1162.792,,,,86400.0,86400.0,benchmark-instance-l-13,20251212-run-Ls,2025-12-15 20:30:11.985656,c4-highmem-16,asia-south1-c,90fca5f,SWITCH-USA-PG-26-168h,cbc-2.10.12,SWITCH-USA-PG +genx-elec_trex_uc,15-24h,gurobi,13.0.0,2025.0,ok,optimal,521.171259391,9424.552,31903.351665470986,0.0,6.2094364449249564e-06,506.7069919109345,86400.0,benchmark-instance-l-02,20251212-run-Ls,2025-12-12 19:28:33.570692,c4-highmem-16,us-central1-f,90fca5f,genx-elec_trex_uc-15-24h,gurobi-13.0.0,genx-elec_trex_uc +genx-elec_trex_uc,15-24h,highs,1.12.0,2025.0,TO,Timeout,86400.0,6597.288,,,,86400.0,86400.0,benchmark-instance-l-02,20251212-run-Ls,2025-12-12 19:41:05.381004,c4-highmem-16,us-central1-f,90fca5f,genx-elec_trex_uc-15-24h,highs-1.12.0,genx-elec_trex_uc +genx-elec_trex_uc,15-24h,scip,10.0.0,2025.0,ER,,,726.312,,,,,86400.0,benchmark-instance-l-02,20251212-run-Ls,2025-12-13 19:44:38.068006,c4-highmem-16,us-central1-f,90fca5f,genx-elec_trex_uc-15-24h,scip-10.0.0,genx-elec_trex_uc +genx-elec_trex_uc,15-24h,cbc,2.10.12,2024.0,ER,,,1414.348,,,,,86400.0,benchmark-instance-l-02,20251212-run-Ls,2025-12-13 19:45:13.123907,c4-highmem-16,us-central1-f,90fca5f,genx-elec_trex_uc-15-24h,cbc-2.10.12,genx-elec_trex_uc +pypsa-de-elec-trex_copt-dfp,50-1h,gurobi,13.0.0,2025.0,ok,optimal,6427.922898286,31167.336,7462476802.566992,,,6350.266633033752,86400.0,benchmark-instance-l-10,20251212-run-Ls,2025-12-12 19:35:13.661902,c4-highmem-16,europe-west1-b,90fca5f,pypsa-de-elec-trex_copt-dfp-50-1h,gurobi-13.0.0,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,50-1h,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,86400.0,162.8,,,,86400.0,86400.0,benchmark-instance-l-10,20251212-run-Ls,2025-12-12 21:27:11.459216,c4-highmem-16,europe-west1-b,90fca5f,pypsa-de-elec-trex_copt-dfp-50-1h,highs-hipo-1.12.0-hipo,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,50-1h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,86400.0,163.72,,,,86400.0,86400.0,benchmark-instance-l-10,20251212-run-Ls,2025-12-13 21:30:45.630759,c4-highmem-16,europe-west1-b,90fca5f,pypsa-de-elec-trex_copt-dfp-50-1h,highs-ipx-1.12.0-hipo,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,50-1h,highs,1.12.0,2025.0,TO,Timeout,86400.0,14375.0,,,,86400.0,86400.0,benchmark-instance-l-10,20251212-run-Ls,2025-12-14 21:34:20.822134,c4-highmem-16,europe-west1-b,90fca5f,pypsa-de-elec-trex_copt-dfp-50-1h,highs-1.12.0,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,50-1h,scip,10.0.0,2025.0,TO,Timeout,86400.0,67313.224,,,,86400.0,86400.0,benchmark-instance-l-10,20251212-run-Ls,2025-12-15 21:37:56.370911,c4-highmem-16,europe-west1-b,90fca5f,pypsa-de-elec-trex_copt-dfp-50-1h,scip-10.0.0,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,50-1h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,3860.728,,,,86400.0,86400.0,benchmark-instance-l-10,20251212-run-Ls,2025-12-16 21:41:59.359842,c4-highmem-16,europe-west1-b,90fca5f,pypsa-de-elec-trex_copt-dfp-50-1h,cbc-2.10.12,pypsa-de-elec-trex_copt-dfp +TIMES-GEO-global-base,31-20ts,gurobi,13.0.0,2025.0,ok,optimal,1857.266919563,20251.764,241237919.7358521,,,1813.8951041698456,86400.0,benchmark-instance-l-18,20251212-run-Ls,2025-12-12 19:27:41.995820,c4-highmem-16,europe-north2-a,90fca5f,TIMES-GEO-global-base-31-20ts,gurobi-13.0.0,TIMES-GEO-global-base +TIMES-GEO-global-base,31-20ts,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,86400.0,163.288,,,,86400.0,86400.0,benchmark-instance-l-18,20251212-run-Ls,2025-12-12 20:03:15.164027,c4-highmem-16,europe-north2-a,90fca5f,TIMES-GEO-global-base-31-20ts,highs-hipo-1.12.0-hipo,TIMES-GEO-global-base +TIMES-GEO-global-base,31-20ts,highs-ipx,1.12.0-hipo,2025.0,warning,Unknown,54761.83336924701,9692.752,241237921.95,,,54761.83336924701,86400.0,benchmark-instance-l-18,20251212-run-Ls,2025-12-13 20:06:42.709401,c4-highmem-16,europe-north2-a,90fca5f,TIMES-GEO-global-base-31-20ts,highs-ipx-1.12.0-hipo,TIMES-GEO-global-base +TIMES-GEO-global-base,31-20ts,highs,1.12.0,2025.0,TO,Timeout,86400.0,11281.716,,,,86400.0,86400.0,benchmark-instance-l-18,20251212-run-Ls,2025-12-14 11:22:56.198397,c4-highmem-16,europe-north2-a,90fca5f,TIMES-GEO-global-base-31-20ts,highs-1.12.0,TIMES-GEO-global-base +TIMES-GEO-global-base,31-20ts,scip,10.0.0,2025.0,TO,Timeout,86400.0,47908.804,,,,86400.0,86400.0,benchmark-instance-l-18,20251212-run-Ls,2025-12-15 11:26:25.669554,c4-highmem-16,europe-north2-a,90fca5f,TIMES-GEO-global-base-31-20ts,scip-10.0.0,TIMES-GEO-global-base +TIMES-GEO-global-base,31-20ts,cbc,2.10.12,2024.0,TO,Timeout,86400.0,2981.772,,,,86400.0,86400.0,benchmark-instance-l-18,20251212-run-Ls,2025-12-16 11:30:23.529382,c4-highmem-16,europe-north2-a,90fca5f,TIMES-GEO-global-base-31-20ts,cbc-2.10.12,TIMES-GEO-global-base +tulipa-1_EU_investment_simple,28-1h,gurobi,13.0.0,2025.0,ok,optimal,167.71098481299998,6860.892,10114494154.905088,0.0,9.98372719639693e-05,160.93845200538635,86400.0,benchmark-instance-l-04,20251212-run-Ls,2025-12-12 19:27:40.889752,c4-highmem-16,us-east4-c,90fca5f,tulipa-1_EU_investment_simple-28-1h,gurobi-13.0.0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-1h,highs,1.12.0,2025.0,ok,optimal,11019.358296195,21965.452,10113645948.09658,5.684341886080803e-14,8.665867449973662e-05,11007.422449350355,86400.0,benchmark-instance-l-04,20251212-run-Ls,2025-12-12 19:34:11.499336,c4-highmem-16,us-east4-c,90fca5f,tulipa-1_EU_investment_simple-28-1h,highs-1.12.0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-1h,scip,10.0.0,2025.0,ok,optimal,16140.934750984,14936.072,10113810247.787842,5.684341886080803e-14,9.99091537603216e-05,16124.408428,86400.0,benchmark-instance-l-04,20251212-run-Ls,2025-12-12 22:41:39.331172,c4-highmem-16,us-east4-c,90fca5f,tulipa-1_EU_investment_simple-28-1h,scip-10.0.0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-1h,cbc,2.10.12,2024.0,ok,optimal,59915.84466978101,9572.432,10113754472.113071,0.0,0.0,59888.93,86400.0,benchmark-instance-l-04,20251212-run-Ls,2025-12-13 03:14:55.279851,c4-highmem-16,us-east4-c,90fca5f,tulipa-1_EU_investment_simple-28-1h,cbc-2.10.12,tulipa-1_EU_investment_simple +temoa-US_9R_TS_NDC,9-12ts,gurobi,13.0.0,2025.0,ok,optimal,220.89616504,7335.584,36969259.724561445,,,203.66050696372983,86400.0,benchmark-instance-l-15,20251212-run-Ls,2025-12-12 19:28:57.528908,c4-highmem-16,asia-south2-b,90fca5f,temoa-US_9R_TS_NDC-9-12ts,gurobi-13.0.0,temoa-US_9R_TS_NDC +temoa-US_9R_TS_NDC,9-12ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,4324.185409194,6990.14,36969259.725,,,4324.185409194,86400.0,benchmark-instance-l-15,20251212-run-Ls,2025-12-12 19:36:04.886888,c4-highmem-16,asia-south2-b,90fca5f,temoa-US_9R_TS_NDC-9-12ts,highs-hipo-1.12.0-hipo,temoa-US_9R_TS_NDC +temoa-US_9R_TS_NDC,9-12ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,3478.7931881940003,4640.784,36969259.846,,,3478.7931881940003,86400.0,benchmark-instance-l-15,20251212-run-Ls,2025-12-12 20:51:08.872890,c4-highmem-16,asia-south2-b,90fca5f,temoa-US_9R_TS_NDC-9-12ts,highs-ipx-1.12.0-hipo,temoa-US_9R_TS_NDC +temoa-US_9R_TS_NDC,9-12ts,highs,1.12.0,2025.0,ok,optimal,38201.350731949,7350.676,36969259.7251539,,,38172.46753025055,86400.0,benchmark-instance-l-15,20251212-run-Ls,2025-12-12 21:52:06.585140,c4-highmem-16,asia-south2-b,90fca5f,temoa-US_9R_TS_NDC-9-12ts,highs-1.12.0,temoa-US_9R_TS_NDC +temoa-US_9R_TS_NDC,9-12ts,scip,10.0.0,2025.0,TO,Timeout,86400.0,13232.704,,,,86400.0,86400.0,benchmark-instance-l-15,20251212-run-Ls,2025-12-13 08:32:20.533395,c4-highmem-16,asia-south2-b,90fca5f,temoa-US_9R_TS_NDC-9-12ts,scip-10.0.0,temoa-US_9R_TS_NDC +temoa-US_9R_TS_NDC,9-12ts,cbc,2.10.12,2024.0,TO,Timeout,86400.0,1946.3,,,,86400.0,86400.0,benchmark-instance-l-15,20251212-run-Ls,2025-12-14 08:35:50.985971,c4-highmem-16,asia-south2-b,90fca5f,temoa-US_9R_TS_NDC-9-12ts,cbc-2.10.12,temoa-US_9R_TS_NDC +times-ireland-noco2,40-1ts,gurobi,13.0.0,2025.0,ok,optimal,1910.970202057,9807.048,443306.2356883995,,,1887.7760639190676,86400.0,benchmark-instance-l-22,20251212-run-Ls,2025-12-12 19:28:03.424210,c4-highmem-16,northamerica-south1-c,90fca5f,times-ireland-noco2-40-1ts,gurobi-13.0.0,times-ireland-noco2 +times-ireland-noco2,40-1ts,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,86400.0,162.612,,,,86400.0,86400.0,benchmark-instance-l-22,20251212-run-Ls,2025-12-12 20:03:16.802966,c4-highmem-16,northamerica-south1-c,90fca5f,times-ireland-noco2-40-1ts,highs-hipo-1.12.0-hipo,times-ireland-noco2 +times-ireland-noco2,40-1ts,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,86400.0,162.976,,,,86400.0,86400.0,benchmark-instance-l-22,20251212-run-Ls,2025-12-13 20:06:15.972875,c4-highmem-16,northamerica-south1-c,90fca5f,times-ireland-noco2-40-1ts,highs-ipx-1.12.0-hipo,times-ireland-noco2 +times-ireland-noco2,40-1ts,highs,1.12.0,2025.0,TO,Timeout,86400.0,5707.26,,,,86400.0,86400.0,benchmark-instance-l-22,20251212-run-Ls,2025-12-14 20:09:19.074470,c4-highmem-16,northamerica-south1-c,90fca5f,times-ireland-noco2-40-1ts,highs-1.12.0,times-ireland-noco2 +times-ireland-noco2,40-1ts,scip,10.0.0,2025.0,TO,Timeout,86400.0,26596.1,,,,86400.0,86400.0,benchmark-instance-l-22,20251212-run-Ls,2025-12-15 20:12:21.479539,c4-highmem-16,northamerica-south1-c,90fca5f,times-ireland-noco2-40-1ts,scip-10.0.0,times-ireland-noco2 +times-ireland-noco2,40-1ts,cbc,2.10.12,2024.0,ER,,,2238.604,,,,,86400.0,benchmark-instance-l-22,20251212-run-Ls,2025-12-16 20:15:48.795506,c4-highmem-16,northamerica-south1-c,90fca5f,times-ireland-noco2-40-1ts,cbc-2.10.12,times-ireland-noco2 +pypsa-de-elec-trex_vopt-dfp,50-1h,gurobi,13.0.0,2025.0,ok,optimal,5640.111624116999,29790.848,7462475168.414667,,,5575.678267002106,86400.0,benchmark-instance-l-09,20251212-run-Ls,2025-12-12 19:41:10.315290,c4-highmem-16,northamerica-northeast2-b,90fca5f,pypsa-de-elec-trex_vopt-dfp-50-1h,gurobi-13.0.0,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,50-1h,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,86400.0,163.952,,,,86400.0,86400.0,benchmark-instance-l-09,20251212-run-Ls,2025-12-12 21:19:16.591677,c4-highmem-16,northamerica-northeast2-b,90fca5f,pypsa-de-elec-trex_vopt-dfp-50-1h,highs-hipo-1.12.0-hipo,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,50-1h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,86400.0,163.168,,,,86400.0,86400.0,benchmark-instance-l-09,20251212-run-Ls,2025-12-13 21:22:18.797065,c4-highmem-16,northamerica-northeast2-b,90fca5f,pypsa-de-elec-trex_vopt-dfp-50-1h,highs-ipx-1.12.0-hipo,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,50-1h,highs,1.12.0,2025.0,TO,Timeout,86400.0,14351.184,,,,86400.0,86400.0,benchmark-instance-l-09,20251212-run-Ls,2025-12-14 21:25:20.682164,c4-highmem-16,northamerica-northeast2-b,90fca5f,pypsa-de-elec-trex_vopt-dfp-50-1h,highs-1.12.0,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,50-1h,scip,10.0.0,2025.0,TO,Timeout,86400.0,67492.784,,,,86400.0,86400.0,benchmark-instance-l-09,20251212-run-Ls,2025-12-15 21:28:20.703532,c4-highmem-16,northamerica-northeast2-b,90fca5f,pypsa-de-elec-trex_vopt-dfp-50-1h,scip-10.0.0,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,50-1h,cbc,2.10.12,2024.0,ER,,,13029.08,,,,,86400.0,benchmark-instance-l-09,20251212-run-Ls,2025-12-16 21:31:51.472511,c4-highmem-16,northamerica-northeast2-b,90fca5f,pypsa-de-elec-trex_vopt-dfp-50-1h,cbc-2.10.12,pypsa-de-elec-trex_vopt-dfp +pypsa-de-sec-trex_vopt,50-1h,gurobi,13.0.0,2025.0,OOM,Out of Memory,,,,,,,86400.0,benchmark-instance-l-12,20251212-run-Ls,2025-12-12 19:33:12.681196,c4-highmem-16,asia-south1-b,90fca5f,pypsa-de-sec-trex_vopt-50-1h,gurobi-13.0.0,pypsa-de-sec-trex_vopt +pypsa-de-sec-trex_vopt,50-1h,highs-hipo,1.12.0-hipo,2025.0,OOM,Out of Memory,,,,,,,86400.0,benchmark-instance-l-12,20251212-run-Ls,2025-12-12 19:43:27.126064,c4-highmem-16,asia-south1-b,90fca5f,pypsa-de-sec-trex_vopt-50-1h,highs-hipo-1.12.0-hipo,pypsa-de-sec-trex_vopt +pypsa-de-sec-trex_vopt,50-1h,highs-ipx,1.12.0-hipo,2025.0,OOM,Out of Memory,,,,,,,86400.0,benchmark-instance-l-12,20251212-run-Ls,2025-12-12 20:36:39.067994,c4-highmem-16,asia-south1-b,90fca5f,pypsa-de-sec-trex_vopt-50-1h,highs-ipx-1.12.0-hipo,pypsa-de-sec-trex_vopt +pypsa-de-sec-trex_vopt,50-1h,highs,1.12.0,2025.0,TO,Timeout,86400.0,87146.264,,,,86400.0,86400.0,benchmark-instance-l-12,20251212-run-Ls,2025-12-12 20:37:32.694686,c4-highmem-16,asia-south1-b,90fca5f,pypsa-de-sec-trex_vopt-50-1h,highs-1.12.0,pypsa-de-sec-trex_vopt +pypsa-de-sec-trex_vopt,50-1h,scip,10.0.0,2025.0,OOM,Out of Memory,,,,,,,86400.0,benchmark-instance-l-12,20251212-run-Ls,2025-12-13 20:40:35.533761,c4-highmem-16,asia-south1-b,90fca5f,pypsa-de-sec-trex_vopt-50-1h,scip-10.0.0,pypsa-de-sec-trex_vopt +pypsa-de-sec-trex_vopt,50-1h,cbc,2.10.12,2024.0,ER,,,63751.376,,,,,86400.0,benchmark-instance-l-12,20251212-run-Ls,2025-12-13 20:45:59.460072,c4-highmem-16,asia-south1-b,90fca5f,pypsa-de-sec-trex_vopt-50-1h,cbc-2.10.12,pypsa-de-sec-trex_vopt +genx-elec_co2,15-168h,gurobi,13.0.0,2025.0,ok,optimal,5576.189089799999,31686.68,316331.2099114949,,,5497.275903940201,86400.0,benchmark-instance-l-03,20251212-run-Ls,2025-12-12 19:28:23.512929,c4-highmem-16,us-east4-a,90fca5f,genx-elec_co2-15-168h,gurobi-13.0.0,genx-elec_co2 +genx-elec_co2,15-168h,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,86400.0,163.52,,,,86400.0,86400.0,benchmark-instance-l-03,20251212-run-Ls,2025-12-12 21:06:19.670068,c4-highmem-16,us-east4-a,90fca5f,genx-elec_co2-15-168h,highs-hipo-1.12.0-hipo,genx-elec_co2 +genx-elec_co2,15-168h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,86400.0,163.224,,,,86400.0,86400.0,benchmark-instance-l-03,20251212-run-Ls,2025-12-13 21:09:18.720303,c4-highmem-16,us-east4-a,90fca5f,genx-elec_co2-15-168h,highs-ipx-1.12.0-hipo,genx-elec_co2 +genx-elec_co2,15-168h,highs,1.12.0,2025.0,TO,Timeout,86400.0,17076.868,,,,86400.0,86400.0,benchmark-instance-l-03,20251212-run-Ls,2025-12-14 21:12:21.798737,c4-highmem-16,us-east4-a,90fca5f,genx-elec_co2-15-168h,highs-1.12.0,genx-elec_co2 +genx-elec_co2,15-168h,scip,10.0.0,2025.0,ER,,,2474.036,,,,,86400.0,benchmark-instance-l-03,20251212-run-Ls,2025-12-15 21:15:25.886573,c4-highmem-16,us-east4-a,90fca5f,genx-elec_co2-15-168h,scip-10.0.0,genx-elec_co2 +genx-elec_co2,15-168h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,2447.068,,,,86400.0,86400.0,benchmark-instance-l-03,20251212-run-Ls,2025-12-15 21:15:57.851201,c4-highmem-16,us-east4-a,90fca5f,genx-elec_co2-15-168h,cbc-2.10.12,genx-elec_co2 +pypsa-de-elec-trex_vopt,50-1h,gurobi,13.0.0,2025.0,ok,optimal,6804.248935811,30500.628,7462476325.406084,,,6732.91751909256,86400.0,benchmark-instance-l-06,20251212-run-Ls,2025-12-12 19:28:48.721273,c4-highmem-16,us-east5-b,90fca5f,pypsa-de-elec-trex_vopt-50-1h,gurobi-13.0.0,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,50-1h,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,86400.0,162.924,,,,86400.0,86400.0,benchmark-instance-l-06,20251212-run-Ls,2025-12-12 21:26:38.380036,c4-highmem-16,us-east5-b,90fca5f,pypsa-de-elec-trex_vopt-50-1h,highs-hipo-1.12.0-hipo,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,50-1h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,86400.0,163.044,,,,86400.0,86400.0,benchmark-instance-l-06,20251212-run-Ls,2025-12-13 21:30:03.313659,c4-highmem-16,us-east5-b,90fca5f,pypsa-de-elec-trex_vopt-50-1h,highs-ipx-1.12.0-hipo,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,50-1h,highs,1.12.0,2025.0,TO,Timeout,86400.0,14410.032,,,,86400.0,86400.0,benchmark-instance-l-06,20251212-run-Ls,2025-12-14 21:33:25.760445,c4-highmem-16,us-east5-b,90fca5f,pypsa-de-elec-trex_vopt-50-1h,highs-1.12.0,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,50-1h,scip,10.0.0,2025.0,TO,Timeout,86400.0,66571.464,,,,86400.0,86400.0,benchmark-instance-l-06,20251212-run-Ls,2025-12-15 21:36:46.583579,c4-highmem-16,us-east5-b,90fca5f,pypsa-de-elec-trex_vopt-50-1h,scip-10.0.0,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,50-1h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,3861.028,,,,86400.0,86400.0,benchmark-instance-l-06,20251212-run-Ls,2025-12-16 21:40:34.151118,c4-highmem-16,us-east5-b,90fca5f,pypsa-de-elec-trex_vopt-50-1h,cbc-2.10.12,pypsa-de-elec-trex_vopt +times-etimeseu-europe-elec+heat-multi_stage,29-64ts,gurobi,13.0.0,2025.0,ok,optimal,838.235821624,12198.568,3612450.3520559473,,,824.1415910720825,86400.0,benchmark-instance-l-20,20251212-run-Ls,2025-12-12 19:27:42.585629,c4-highmem-16,europe-north2-c,90fca5f,times-etimeseu-europe-elec+heat-multi_stage-29-64ts,gurobi-13.0.0,times-etimeseu-europe-elec+heat-multi_stage +times-etimeseu-europe-elec+heat-multi_stage,29-64ts,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,86400.0,163.308,,,,86400.0,86400.0,benchmark-instance-l-20,20251212-run-Ls,2025-12-12 19:44:56.468622,c4-highmem-16,europe-north2-c,90fca5f,times-etimeseu-europe-elec+heat-multi_stage-29-64ts,highs-hipo-1.12.0-hipo,times-etimeseu-europe-elec+heat-multi_stage +times-etimeseu-europe-elec+heat-multi_stage,29-64ts,highs-ipx,1.12.0-hipo,2025.0,warning,Unknown,2987.781998256003,3193.348,3612450.3527,,,2987.781998256003,86400.0,benchmark-instance-l-20,20251212-run-Ls,2025-12-13 19:47:58.559763,c4-highmem-16,europe-north2-c,90fca5f,times-etimeseu-europe-elec+heat-multi_stage-29-64ts,highs-ipx-1.12.0-hipo,times-etimeseu-europe-elec+heat-multi_stage +times-etimeseu-europe-elec+heat-multi_stage,29-64ts,highs,1.12.0,2025.0,TO,Timeout,86400.0,3345.276,,,,86400.0,86400.0,benchmark-instance-l-20,20251212-run-Ls,2025-12-13 20:37:47.003547,c4-highmem-16,europe-north2-c,90fca5f,times-etimeseu-europe-elec+heat-multi_stage-29-64ts,highs-1.12.0,times-etimeseu-europe-elec+heat-multi_stage +times-etimeseu-europe-elec+heat-multi_stage,29-64ts,scip,10.0.0,2025.0,TO,Timeout,86400.0,59962.468,,,,86400.0,86400.0,benchmark-instance-l-20,20251212-run-Ls,2025-12-14 20:40:46.459906,c4-highmem-16,europe-north2-c,90fca5f,times-etimeseu-europe-elec+heat-multi_stage-29-64ts,scip-10.0.0,times-etimeseu-europe-elec+heat-multi_stage +times-etimeseu-europe-elec+heat-multi_stage,29-64ts,cbc,2.10.12,2024.0,ER,,,1602.4,,,,,86400.0,benchmark-instance-l-20,20251212-run-Ls,2025-12-15 20:44:17.127906,c4-highmem-16,europe-north2-c,90fca5f,times-etimeseu-europe-elec+heat-multi_stage-29-64ts,cbc-2.10.12,times-etimeseu-europe-elec+heat-multi_stage +temoa-US_9R_TS_SP,9-12ts,gurobi,13.0.0,2025.0,ok,optimal,225.991818331,7199.256,36719893.351437405,,,209.4234640598297,86400.0,benchmark-instance-l-17,20251212-run-Ls,2025-12-12 19:27:16.352463,c4-highmem-16,europe-west4-c,90fca5f,temoa-US_9R_TS_SP-9-12ts,gurobi-13.0.0,temoa-US_9R_TS_SP +temoa-US_9R_TS_SP,9-12ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,3941.397949973,7013.856,36719893.352,,,3941.397949973,86400.0,benchmark-instance-l-17,20251212-run-Ls,2025-12-12 19:34:24.511745,c4-highmem-16,europe-west4-c,90fca5f,temoa-US_9R_TS_SP-9-12ts,highs-hipo-1.12.0-hipo,temoa-US_9R_TS_SP +temoa-US_9R_TS_SP,9-12ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,3072.2876267290003,4619.444,36719893.587,,,3072.2876267290003,86400.0,benchmark-instance-l-17,20251212-run-Ls,2025-12-12 20:43:07.315598,c4-highmem-16,europe-west4-c,90fca5f,temoa-US_9R_TS_SP-9-12ts,highs-ipx-1.12.0-hipo,temoa-US_9R_TS_SP +temoa-US_9R_TS_SP,9-12ts,highs,1.12.0,2025.0,ok,optimal,17260.556578112002,7315.616,36719893.35222322,,,17230.852392196655,86400.0,benchmark-instance-l-17,20251212-run-Ls,2025-12-12 21:34:20.254190,c4-highmem-16,europe-west4-c,90fca5f,temoa-US_9R_TS_SP-9-12ts,highs-1.12.0,temoa-US_9R_TS_SP +temoa-US_9R_TS_SP,9-12ts,scip,10.0.0,2025.0,TO,Timeout,86400.0,13200.136,,,,86400.0,86400.0,benchmark-instance-l-17,20251212-run-Ls,2025-12-13 02:25:40.274450,c4-highmem-16,europe-west4-c,90fca5f,temoa-US_9R_TS_SP-9-12ts,scip-10.0.0,temoa-US_9R_TS_SP +temoa-US_9R_TS_SP,9-12ts,cbc,2.10.12,2024.0,TO,Timeout,86400.0,1936.728,,,,86400.0,86400.0,benchmark-instance-l-17,20251212-run-Ls,2025-12-14 02:29:11.858863,c4-highmem-16,europe-west4-c,90fca5f,temoa-US_9R_TS_SP-9-12ts,cbc-2.10.12,temoa-US_9R_TS_SP +genx-elec_trex,15-168h,gurobi,13.0.0,2025.0,ok,optimal,5697.515179407,31447.84,316138.8135043789,,,5613.121881008148,86400.0,benchmark-instance-l-00,20251214-rerun-1,2025-12-15 05:41:16.063726,c4-highmem-16,us-west3-a,48cfc10,genx-elec_trex-15-168h,gurobi-13.0.0,genx-elec_trex +genx-elec_trex,15-168h,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,86400.0,163.132,,,,86400.0,86400.0,benchmark-instance-l-00,20251214-rerun-1,2025-12-15 07:21:29.949876,c4-highmem-16,us-west3-a,48cfc10,genx-elec_trex-15-168h,highs-hipo-1.12.0-hipo,genx-elec_trex +genx-elec_trex,15-168h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,86400.0,163.212,,,,86400.0,86400.0,benchmark-instance-l-00,20251214-rerun-1,2025-12-16 07:24:39.327331,c4-highmem-16,us-west3-a,48cfc10,genx-elec_trex-15-168h,highs-ipx-1.12.0-hipo,genx-elec_trex +genx-elec_trex,15-168h,highs,1.12.0,2025.0,TO,Timeout,86400.0,17178.92,,,,86400.0,86400.0,benchmark-instance-l-00,20251214-rerun-1,2025-12-17 07:27:46.107094,c4-highmem-16,us-west3-a,48cfc10,genx-elec_trex-15-168h,highs-1.12.0,genx-elec_trex +genx-elec_trex,15-168h,scip,10.0.0,2025.0,ER,,,2405.928,,,,,86400.0,benchmark-instance-l-00,20251214-rerun-1,2025-12-18 07:30:57.083752,c4-highmem-16,us-west3-a,48cfc10,genx-elec_trex-15-168h,scip-10.0.0,genx-elec_trex +genx-elec_trex,15-168h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,2379.056,,,,86400.0,86400.0,benchmark-instance-l-00,20251214-rerun-1,2025-12-18 07:31:33.548133,c4-highmem-16,us-west3-a,48cfc10,genx-elec_trex-15-168h,cbc-2.10.12,genx-elec_trex +genx-elec_trex_co2,15-168h,gurobi,13.0.0,2025.0,ok,optimal,9878.019462512,31888.852,306005.021474805,,,9782.39368391037,86400.0,benchmark-instance-l-01,20251214-rerun-1,2025-12-15 05:40:59.056218,c4-highmem-16,europe-west3-b,48cfc10,genx-elec_trex_co2-15-168h,gurobi-13.0.0,genx-elec_trex_co2 +genx-elec_trex_co2,15-168h,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,86400.0,162.84,,,,86400.0,86400.0,benchmark-instance-l-01,20251214-rerun-1,2025-12-15 08:31:47.925293,c4-highmem-16,europe-west3-b,48cfc10,genx-elec_trex_co2-15-168h,highs-hipo-1.12.0-hipo,genx-elec_trex_co2 +genx-elec_trex_co2,15-168h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,86400.0,162.988,,,,86400.0,86400.0,benchmark-instance-l-01,20251214-rerun-1,2025-12-16 08:35:29.024092,c4-highmem-16,europe-west3-b,48cfc10,genx-elec_trex_co2-15-168h,highs-ipx-1.12.0-hipo,genx-elec_trex_co2 +genx-elec_trex_co2,15-168h,highs,1.12.0,2025.0,TO,Timeout,86400.0,17261.196,,,,86400.0,86400.0,benchmark-instance-l-01,20251214-rerun-1,2025-12-17 08:39:05.946427,c4-highmem-16,europe-west3-b,48cfc10,genx-elec_trex_co2-15-168h,highs-1.12.0,genx-elec_trex_co2 +genx-elec_trex_co2,15-168h,scip,10.0.0,2025.0,ER,,,2503.856,,,,,86400.0,benchmark-instance-l-01,20251214-rerun-1,2025-12-18 08:42:44.771424,c4-highmem-16,europe-west3-b,48cfc10,genx-elec_trex_co2-15-168h,scip-10.0.0,genx-elec_trex_co2 +genx-elec_trex_co2,15-168h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,2477.496,,,,86400.0,86400.0,benchmark-instance-l-01,20251214-rerun-1,2025-12-18 08:43:22.084343,c4-highmem-16,europe-west3-b,48cfc10,genx-elec_trex_co2-15-168h,cbc-2.10.12,genx-elec_trex_co2 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,141.48,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-15 17:31:37.419537,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332 +genx-6_three_zones_w_multistage,3-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,198.784,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-15 18:35:14.430326,c4-standard-2,europe-west9-c,48cfc10,genx-6_three_zones_w_multistage-3-1h,glpk-5.0,genx-6_three_zones_w_multistage +OEMOF-v4-invest-optimize-all-technologies-with-fossil-share,1-8760ts,glpk,5.0,2020.0,ER,,,156.98,,,,,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-15 19:38:51.049862,c4-standard-2,europe-west9-c,48cfc10,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share-1-8760ts,glpk-5.0,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,133.796,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-15 19:39:30.448931,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332 +times-nz-kea,2-24ts,glpk,5.0,2020.0,warning,unknown,0.1054257390005659,292.296,,,,,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-15 20:43:07.137029,c4-standard-2,europe-west9-c,48cfc10,times-nz-kea-2-24ts,glpk-5.0,times-nz-kea +pypsa-power+ely-ucgas-mod,1-1h,glpk,5.0,2020.0,ok,optimal,158.89758948100098,251.908,84667528380.0,,,,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-15 20:43:07.742199,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely-ucgas-mod-1-1h,glpk-5.0,pypsa-power+ely-ucgas-mod +DCOPF-Carolinas_2M,997-1h,glpk,5.0,2020.0,ER,,,207.052,,,,,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-15 20:45:47.124547,c4-standard-2,europe-west9-c,48cfc10,DCOPF-Carolinas_2M-997-1h,glpk-5.0,DCOPF-Carolinas_2M +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332,73-1h,gurobi,10.0.0,2022.0,TO,Timeout,3600.0,617.436,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-15 20:56:01.852940,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332,73-1h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1144.02,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-15 21:59:39.433993,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332,73-1h,scip,8.0.3,2022.0,TO,Timeout,3600.0,1734.08,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-15 23:03:16.605658,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332 +genx-6_three_zones_w_multistage,3-1h,gurobi,10.0.0,2022.0,ok,optimal,34.48020775599798,741.072,4572.128950559954,,,33.672024965286255,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 00:06:53.460636,c4-standard-2,europe-west9-c,48cfc10,genx-6_three_zones_w_multistage-3-1h,gurobi-10.0.0,genx-6_three_zones_w_multistage +genx-6_three_zones_w_multistage,3-1h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,2848.616,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 00:07:29.462826,c4-standard-2,europe-west9-c,48cfc10,genx-6_three_zones_w_multistage-3-1h,highs-1.5.0.dev0,genx-6_three_zones_w_multistage +genx-6_three_zones_w_multistage,3-1h,scip,8.0.3,2022.0,TO,Timeout,3600.0,2030.564,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 01:11:04.075410,c4-standard-2,europe-west9-c,48cfc10,genx-6_three_zones_w_multistage-3-1h,scip-8.0.3,genx-6_three_zones_w_multistage +OEMOF-v4-invest-optimize-all-technologies-with-fossil-share,1-8760ts,gurobi,10.0.0,2022.0,ok,optimal,11.928412009998285,378.788,148062863.91924885,,,10.93891191482544,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 02:14:41.142277,c4-standard-2,europe-west9-c,48cfc10,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share-1-8760ts,gurobi-10.0.0,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share +OEMOF-v4-invest-optimize-all-technologies-with-fossil-share,1-8760ts,highs,1.5.0.dev0,2022.0,ok,optimal,22.26853258100164,394.428,148062863.91924834,,,21.564255237579346,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 02:14:54.238463,c4-standard-2,europe-west9-c,48cfc10,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share-1-8760ts,highs-1.5.0.dev0,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share +OEMOF-v4-invest-optimize-all-technologies-with-fossil-share,1-8760ts,scip,8.0.3,2022.0,ER,,,734.036,,,,,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 02:15:17.726963,c4-standard-2,europe-west9-c,48cfc10,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share-1-8760ts,scip-8.0.3,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332,73-1h,gurobi,10.0.0,2022.0,ok,optimal,43.41317720900042,251.276,892297.7631909534,,,43.30632901191712,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 02:16:50.631506,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332,73-1h,highs,1.5.0.dev0,2022.0,ok,optimal,1460.1957058629996,754.816,892297.7643177663,,,1460.040866613388,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 02:17:34.775252,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332,73-1h,scip,8.0.3,2022.0,ok,optimal,1245.4584510190034,1073.904,892297.764317036,,,1245.296434,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 02:41:55.704206,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332 +times-nz-kea,2-24ts,gurobi,10.0.0,2022.0,ok,optimal,430.7562270579947,735.184,1213210.3766354031,,,428.6914098262787,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 03:02:42.000282,c4-standard-2,europe-west9-c,48cfc10,times-nz-kea-2-24ts,gurobi-10.0.0,times-nz-kea +times-nz-kea,2-24ts,highs,1.5.0.dev0,2022.0,ok,optimal,162.7172146840021,864.48,1213210.3960770764,,,160.18701148033142,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 03:09:55.450212,c4-standard-2,europe-west9-c,48cfc10,times-nz-kea-2-24ts,highs-1.5.0.dev0,times-nz-kea +times-nz-kea,2-24ts,scip,8.0.3,2022.0,ok,optimal,2903.649966063,3062.768,1213210.392402724,,,2901.482578,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 03:16:16.887175,c4-standard-2,europe-west9-c,48cfc10,times-nz-kea-2-24ts,scip-8.0.3,times-nz-kea +pypsa-power+ely-ucgas-mod,1-1h,gurobi,10.0.0,2022.0,ok,optimal,15.382767312999931,425.064,84668286067.13123,,,14.673327922821043,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 04:04:43.933916,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely-ucgas-mod-1-1h,gurobi-10.0.0,pypsa-power+ely-ucgas-mod +pypsa-power+ely-ucgas-mod,1-1h,highs,1.5.0.dev0,2022.0,ok,optimal,55.317200778998085,447.316,84668286067.13148,,,54.49222040176392,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 04:05:00.623112,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely-ucgas-mod-1-1h,highs-1.5.0.dev0,pypsa-power+ely-ucgas-mod +pypsa-power+ely-ucgas-mod,1-1h,scip,8.0.3,2022.0,ok,optimal,107.11599675400066,922.46,84668286067.13148,,,106.217625,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 04:05:57.264650,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely-ucgas-mod-1-1h,scip-8.0.3,pypsa-power+ely-ucgas-mod +DCOPF-Carolinas_2M,997-1h,gurobi,10.0.0,2022.0,ok,optimal,6.226804379999521,595.044,4463676.828028859,,,4.843773126602173,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 04:07:45.903401,c4-standard-2,europe-west9-c,48cfc10,DCOPF-Carolinas_2M-997-1h,gurobi-10.0.0,DCOPF-Carolinas_2M +DCOPF-Carolinas_2M,997-1h,highs,1.5.0.dev0,2022.0,ok,optimal,12.488257384000462,631.416,4463676.828028885,,,11.085866212844849,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 04:07:53.818437,c4-standard-2,europe-west9-c,48cfc10,DCOPF-Carolinas_2M-997-1h,highs-1.5.0.dev0,DCOPF-Carolinas_2M +DCOPF-Carolinas_2M,997-1h,scip,8.0.3,2022.0,ok,optimal,99.9707729849979,1265.564,4463676.828029633,,,98.589301,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 04:08:08.126190,c4-standard-2,europe-west9-c,48cfc10,DCOPF-Carolinas_2M-997-1h,scip-8.0.3,DCOPF-Carolinas_2M +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332,73-1h,gurobi,11.0.0,2023.0,TO,Timeout,3600.0,684.312,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 04:13:12.285876,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332,73-1h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,1187.16,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 05:16:50.106062,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332,73-1h,scip,8.1.0,2023.0,TO,Timeout,3600.0,1746.08,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 06:20:26.606442,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332,73-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,172.852,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 07:24:02.906735,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332 +genx-6_three_zones_w_multistage,3-1h,gurobi,11.0.0,2023.0,ok,optimal,42.40850093000336,739.456,4572.202744722802,,,41.69086003303528,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 08:27:38.047773,c4-standard-2,europe-west9-c,48cfc10,genx-6_three_zones_w_multistage-3-1h,gurobi-11.0.0,genx-6_three_zones_w_multistage +genx-6_three_zones_w_multistage,3-1h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,3100.852,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 08:28:21.755144,c4-standard-2,europe-west9-c,48cfc10,genx-6_three_zones_w_multistage-3-1h,highs-1.6.0.dev0,genx-6_three_zones_w_multistage +genx-6_three_zones_w_multistage,3-1h,scip,8.1.0,2023.0,TO,Timeout,3600.0,2053.164,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 09:31:57.490263,c4-standard-2,europe-west9-c,48cfc10,genx-6_three_zones_w_multistage-3-1h,scip-8.1.0,genx-6_three_zones_w_multistage +genx-6_three_zones_w_multistage,3-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,230.104,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 10:35:33.605633,c4-standard-2,europe-west9-c,48cfc10,genx-6_three_zones_w_multistage-3-1h,cbc-2.10.11,genx-6_three_zones_w_multistage +OEMOF-v4-invest-optimize-all-technologies-with-fossil-share,1-8760ts,gurobi,11.0.0,2023.0,ok,optimal,11.942999545994098,401.244,148062863.9192489,,,10.979605197906494,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 11:39:08.786977,c4-standard-2,europe-west9-c,48cfc10,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share-1-8760ts,gurobi-11.0.0,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share +OEMOF-v4-invest-optimize-all-technologies-with-fossil-share,1-8760ts,highs,1.6.0.dev0,2023.0,ok,optimal,22.13648616100545,421.128,148062863.91924834,,,21.4089150428772,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 11:39:22.002241,c4-standard-2,europe-west9-c,48cfc10,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share-1-8760ts,highs-1.6.0.dev0,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share +OEMOF-v4-invest-optimize-all-technologies-with-fossil-share,1-8760ts,scip,8.1.0,2023.0,ER,,,744.952,,,,,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 11:39:45.512058,c4-standard-2,europe-west9-c,48cfc10,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share-1-8760ts,scip-8.1.0,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share +OEMOF-v4-invest-optimize-all-technologies-with-fossil-share,1-8760ts,cbc,2.10.11,2023.0,ok,optimal,11.447406977007631,287.136,148062863.91924825,,,,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 11:41:18.807820,c4-standard-2,europe-west9-c,48cfc10,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share-1-8760ts,cbc-2.10.11,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332,73-1h,gurobi,11.0.0,2023.0,ok,optimal,90.50127264100593,293.444,892297.7642900576,,,90.4127049446106,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 11:41:31.488330,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332,73-1h,highs,1.6.0.dev0,2023.0,ok,optimal,1434.4361922509995,784.052,892297.7643177663,,,1434.3378193378448,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 11:43:02.787689,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332,73-1h,scip,8.1.0,2023.0,ok,optimal,1247.814259591003,1079.688,892297.764317036,,,1247.672814,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 12:06:58.028051,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332,73-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,164.996,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 12:27:46.752990,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332 +times-nz-kea,2-24ts,gurobi,11.0.0,2023.0,ok,optimal,443.3314512210054,720.116,1213210.3766250086,,,441.6048240661621,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 13:31:24.475541,c4-standard-2,europe-west9-c,48cfc10,times-nz-kea-2-24ts,gurobi-11.0.0,times-nz-kea +times-nz-kea,2-24ts,highs,1.6.0.dev0,2023.0,ok,optimal,157.96073879399046,868.808,1213210.3960770764,,,156.27288579940796,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 13:38:49.798310,c4-standard-2,europe-west9-c,48cfc10,times-nz-kea-2-24ts,highs-1.6.0.dev0,times-nz-kea +times-nz-kea,2-24ts,scip,8.1.0,2023.0,ok,optimal,2921.6316149589984,3061.248,1213210.392402724,,,2919.765963,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 13:41:29.644513,c4-standard-2,europe-west9-c,48cfc10,times-nz-kea-2-24ts,scip-8.1.0,times-nz-kea +times-nz-kea,2-24ts,cbc,2.10.11,2023.0,ER,,,323.672,,,,,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 14:33:49.577576,c4-standard-2,europe-west9-c,48cfc10,times-nz-kea-2-24ts,cbc-2.10.11,times-nz-kea +pypsa-power+ely-ucgas-mod,1-1h,gurobi,11.0.0,2023.0,ok,optimal,14.07539990299847,430.968,84668286067.13123,,,13.052914142608644,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 14:33:50.425378,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely-ucgas-mod-1-1h,gurobi-11.0.0,pypsa-power+ely-ucgas-mod +pypsa-power+ely-ucgas-mod,1-1h,highs,1.6.0.dev0,2023.0,ok,optimal,54.767801456007874,405.76,84668286067.13148,,,54.08712601661682,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 14:34:05.797058,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely-ucgas-mod-1-1h,highs-1.6.0.dev0,pypsa-power+ely-ucgas-mod +pypsa-power+ely-ucgas-mod,1-1h,scip,8.1.0,2023.0,ok,optimal,106.94684191899432,928.644,84668286067.13148,,,106.176217,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 14:35:01.827362,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely-ucgas-mod-1-1h,scip-8.1.0,pypsa-power+ely-ucgas-mod +pypsa-power+ely-ucgas-mod,1-1h,cbc,2.10.11,2023.0,ok,optimal,36.13705998100341,464.212,84668259518.29695,,,35.46,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 14:36:50.304134,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely-ucgas-mod-1-1h,cbc-2.10.11,pypsa-power+ely-ucgas-mod +DCOPF-Carolinas_2M,997-1h,gurobi,11.0.0,2023.0,ok,optimal,5.96344220598985,615.768,4463676.828028859,,,4.826152086257935,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 14:37:27.720903,c4-standard-2,europe-west9-c,48cfc10,DCOPF-Carolinas_2M-997-1h,gurobi-11.0.0,DCOPF-Carolinas_2M +DCOPF-Carolinas_2M,997-1h,highs,1.6.0.dev0,2023.0,ok,optimal,11.968032037999365,664.424,4463676.828028885,,,10.57547402381897,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 14:37:35.434787,c4-standard-2,europe-west9-c,48cfc10,DCOPF-Carolinas_2M-997-1h,highs-1.6.0.dev0,DCOPF-Carolinas_2M +DCOPF-Carolinas_2M,997-1h,scip,8.1.0,2023.0,ok,optimal,99.61462296100215,1288.204,4463676.828029633,,,98.402324,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 14:37:49.387863,c4-standard-2,europe-west9-c,48cfc10,DCOPF-Carolinas_2M-997-1h,scip-8.1.0,DCOPF-Carolinas_2M +DCOPF-Carolinas_2M,997-1h,cbc,2.10.11,2023.0,ok,optimal,23.58225374300673,395.592,4463676.82802888,,,,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 14:39:31.067743,c4-standard-2,europe-west9-c,48cfc10,DCOPF-Carolinas_2M-997-1h,cbc-2.10.11,DCOPF-Carolinas_2M +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332,73-1h,gurobi,12.0.0,2024.0,TO,Timeout,3600.0,576.08,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 14:40:27.652222,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332,73-1h,highs,1.9.0,2024.0,TO,Timeout,3600.0,1086.096,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 15:44:02.638412,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332,73-1h,scip,9.2.0,2024.0,TO,Timeout,3600.0,1726.124,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 16:47:40.954122,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332,73-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,155.796,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 17:51:19.625184,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332 +genx-6_three_zones_w_multistage,3-1h,gurobi,12.0.0,2024.0,ok,optimal,33.4549107280036,648.628,4572.124704710384,2.844215259756311e-06,8.059289015293991e-05,32.734111070632935,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 18:54:56.843197,c4-standard-2,europe-west9-c,48cfc10,genx-6_three_zones_w_multistage-3-1h,gurobi-12.0.0,genx-6_three_zones_w_multistage +genx-6_three_zones_w_multistage,3-1h,highs,1.9.0,2024.0,TO,Timeout,3600.0,3486.784,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 18:55:31.955516,c4-standard-2,europe-west9-c,48cfc10,genx-6_three_zones_w_multistage-3-1h,highs-1.9.0,genx-6_three_zones_w_multistage +genx-6_three_zones_w_multistage,3-1h,scip,9.2.0,2024.0,TO,Timeout,3600.0,2035.172,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 19:59:08.430940,c4-standard-2,europe-west9-c,48cfc10,genx-6_three_zones_w_multistage-3-1h,scip-9.2.0,genx-6_three_zones_w_multistage +genx-6_three_zones_w_multistage,3-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,212.728,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 21:02:44.857950,c4-standard-2,europe-west9-c,48cfc10,genx-6_three_zones_w_multistage-3-1h,cbc-2.10.12,genx-6_three_zones_w_multistage +OEMOF-v4-invest-optimize-all-technologies-with-fossil-share,1-8760ts,gurobi,12.0.0,2024.0,ok,optimal,11.79645368999627,370.372,148062863.9192487,,,10.999249935150146,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 22:06:20.868597,c4-standard-2,europe-west9-c,48cfc10,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share-1-8760ts,gurobi-12.0.0,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share +OEMOF-v4-invest-optimize-all-technologies-with-fossil-share,1-8760ts,highs,1.9.0,2024.0,ok,optimal,22.351123757995083,391.776,148062863.91924834,,,21.57922124862671,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 22:06:34.041676,c4-standard-2,europe-west9-c,48cfc10,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share-1-8760ts,highs-1.9.0,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share +OEMOF-v4-invest-optimize-all-technologies-with-fossil-share,1-8760ts,scip,9.2.0,2024.0,ER,,,726.916,,,,,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 22:06:57.834824,c4-standard-2,europe-west9-c,48cfc10,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share-1-8760ts,scip-9.2.0,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share +OEMOF-v4-invest-optimize-all-technologies-with-fossil-share,1-8760ts,cbc,2.10.12,2024.0,ok,optimal,12.132622110002558,320.196,148062863.91924825,,,,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 22:08:30.897237,c4-standard-2,europe-west9-c,48cfc10,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share-1-8760ts,cbc-2.10.12,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332,73-1h,gurobi,12.0.0,2024.0,ok,optimal,128.53761752600258,278.88,892297.7641046888,0.0,9.864014456690291e-05,128.44605898857117,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 22:08:44.446471,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332,73-1h,highs,1.9.0,2024.0,ok,optimal,2520.487687023997,824.816,892297.7643219706,5.9952043329758445e-15,9.942614934515563e-05,2520.315236806869,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 22:10:53.672988,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332,73-1h,scip,9.2.0,2024.0,ok,optimal,1247.8756795419904,1065.076,892297.764317036,1.2335202859148351e-09,0.0,1247.727839,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 22:52:54.820452,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332,73-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,147.544,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-16 23:17:19.017029,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332 +times-nz-kea,2-24ts,gurobi,12.0.0,2024.0,ok,optimal,328.965960179994,655.152,1213210.3868849608,,,327.27458119392395,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 00:20:54.535108,c4-standard-2,europe-west9-c,48cfc10,times-nz-kea-2-24ts,gurobi-12.0.0,times-nz-kea +times-nz-kea,2-24ts,highs,1.9.0,2024.0,ok,optimal,167.17186333799327,845.0,1213210.396077077,,,164.33004927635193,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 00:26:27.128099,c4-standard-2,europe-west9-c,48cfc10,times-nz-kea-2-24ts,highs-1.9.0,times-nz-kea +times-nz-kea,2-24ts,scip,9.2.0,2024.0,ok,optimal,2869.846951938001,3078.036,1213210.392402724,,,2868.00337,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 00:29:17.860607,c4-standard-2,europe-west9-c,48cfc10,times-nz-kea-2-24ts,scip-9.2.0,times-nz-kea +times-nz-kea,2-24ts,cbc,2.10.12,2024.0,ER,,,306.2,,,,,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 01:17:11.846130,c4-standard-2,europe-west9-c,48cfc10,times-nz-kea-2-24ts,cbc-2.10.12,times-nz-kea +pypsa-power+ely-ucgas-mod,1-1h,gurobi,12.0.0,2024.0,ok,optimal,13.512187688000267,416.656,84668286067.13121,0.0,8.96969643579226e-06,12.93434715270996,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 01:17:12.471579,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely-ucgas-mod-1-1h,gurobi-12.0.0,pypsa-power+ely-ucgas-mod +pypsa-power+ely-ucgas-mod,1-1h,highs,1.9.0,2024.0,ok,optimal,55.8570468580001,450.864,84668286067.13148,0.0,8.969696433809829e-06,54.999106884002686,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 01:21:03.121742,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely-ucgas-mod-1-1h,highs-1.9.0,pypsa-power+ely-ucgas-mod +pypsa-power+ely-ucgas-mod,1-1h,scip,9.2.0,2024.0,ok,optimal,106.99765467799445,911.508,84668286067.13148,0.0,8.96977688890428e-06,106.243076,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 01:22:00.375225,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely-ucgas-mod-1-1h,scip-9.2.0,pypsa-power+ely-ucgas-mod +pypsa-power+ely-ucgas-mod,1-1h,cbc,2.10.12,2024.0,ok,optimal,37.06458914199902,464.756,84668259518.29695,0.0,0.0,35.61,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 01:23:48.962262,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely-ucgas-mod-1-1h,cbc-2.10.12,pypsa-power+ely-ucgas-mod +DCOPF-Carolinas_2M,997-1h,gurobi,12.0.0,2024.0,ok,optimal,6.05015421299322,577.492,4463676.828028881,,,4.745430946350098,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 01:24:27.382893,c4-standard-2,europe-west9-c,48cfc10,DCOPF-Carolinas_2M-997-1h,gurobi-12.0.0,DCOPF-Carolinas_2M +DCOPF-Carolinas_2M,997-1h,highs,1.9.0,2024.0,ok,optimal,11.120623829003309,621.936,4463676.828028885,,,9.625344514846802,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 01:24:35.515425,c4-standard-2,europe-west9-c,48cfc10,DCOPF-Carolinas_2M-997-1h,highs-1.9.0,DCOPF-Carolinas_2M +DCOPF-Carolinas_2M,997-1h,scip,9.2.0,2024.0,ok,optimal,99.72002910499576,1252.808,4463676.828029633,,,98.513563,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 01:24:48.822844,c4-standard-2,europe-west9-c,48cfc10,DCOPF-Carolinas_2M-997-1h,scip-9.2.0,DCOPF-Carolinas_2M +DCOPF-Carolinas_2M,997-1h,cbc,2.10.12,2024.0,ok,optimal,24.958397445996525,450.204,4463676.82802888,,,,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 01:26:30.945201,c4-standard-2,europe-west9-c,48cfc10,DCOPF-Carolinas_2M-997-1h,cbc-2.10.12,DCOPF-Carolinas_2M +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332,73-1h,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,732.352,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 01:27:31.520519,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332,73-1h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1092.156,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 02:31:08.566403,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332,73-1h,scip,10.0.0,2025.0,TO,Timeout,3600.0,1763.496,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 03:34:45.253362,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day332 +genx-6_three_zones_w_multistage,3-1h,gurobi,13.0.0,2025.0,ok,optimal,20.4788001380075,728.636,4572.106085366124,0.0,7.816989613819565e-05,19.82362699508667,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 04:38:22.104601,c4-standard-2,europe-west9-c,48cfc10,genx-6_three_zones_w_multistage-3-1h,gurobi-13.0.0,genx-6_three_zones_w_multistage +genx-6_three_zones_w_multistage,3-1h,highs,1.12.0,2025.0,ok,optimal,2839.0542244690005,3330.884,4572.101207592708,1.1102230246251563e-16,9.83883527003634e-05,2838.291220664978,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 04:38:44.126693,c4-standard-2,europe-west9-c,48cfc10,genx-6_three_zones_w_multistage-3-1h,highs-1.12.0,genx-6_three_zones_w_multistage +genx-6_three_zones_w_multistage,3-1h,scip,10.0.0,2025.0,TO,Timeout,3600.0,2060.272,,,,3600.0,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 05:26:04.741029,c4-standard-2,europe-west9-c,48cfc10,genx-6_three_zones_w_multistage-3-1h,scip-10.0.0,genx-6_three_zones_w_multistage +OEMOF-v4-invest-optimize-all-technologies-with-fossil-share,1-8760ts,gurobi,13.0.0,2025.0,ok,optimal,11.937211618991569,413.764,148062863.9192487,,,11.219907999038696,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 06:29:40.573686,c4-standard-2,europe-west9-c,48cfc10,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share-1-8760ts,gurobi-13.0.0,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share +OEMOF-v4-invest-optimize-all-technologies-with-fossil-share,1-8760ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,32.176251463999506,222.3,148062863.92,,,32.176251463999506,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 06:29:53.857886,c4-standard-2,europe-west9-c,48cfc10,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share-1-8760ts,highs-hipo-1.12.0-hipo,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share +OEMOF-v4-invest-optimize-all-technologies-with-fossil-share,1-8760ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,26.033170553011587,171.924,148062863.92,,,26.033170553011587,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 06:30:26.775319,c4-standard-2,europe-west9-c,48cfc10,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share-1-8760ts,highs-ipx-1.12.0-hipo,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share +OEMOF-v4-invest-optimize-all-technologies-with-fossil-share,1-8760ts,highs,1.12.0,2025.0,ok,optimal,12.214861924992874,439.816,148062863.91924888,,,11.455631256103516,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 06:30:53.549224,c4-standard-2,europe-west9-c,48cfc10,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share-1-8760ts,highs-1.12.0,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share +OEMOF-v4-invest-optimize-all-technologies-with-fossil-share,1-8760ts,scip,10.0.0,2025.0,ER,,,755.184,,,,,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 06:31:07.228639,c4-standard-2,europe-west9-c,48cfc10,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share-1-8760ts,scip-10.0.0,OEMOF-v4-invest-optimize-all-technologies-with-fossil-share +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332,73-1h,gurobi,13.0.0,2025.0,ok,optimal,76.07084562000819,305.408,892297.7643225634,0.0,9.820690892248335e-05,75.9809901714325,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 06:32:40.967164,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332,73-1h,highs,1.12.0,2025.0,ok,optimal,1825.5105508809795,1088.916,892297.7643217972,3.219646771412954e-14,9.955688629082038e-05,1825.4018273353577,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 06:33:57.892072,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332,73-1h,scip,10.0.0,2025.0,ok,optimal,1242.9002462060016,1091.308,892297.764317036,1.2335202859148351e-09,0.0,1242.754051,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 07:04:24.233520,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day332 +times-nz-kea,2-24ts,gurobi,13.0.0,2025.0,ok,optimal,387.0715339110175,734.752,1213210.3868849613,,,381.8101840019226,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 07:25:08.062683,c4-standard-2,europe-west9-c,48cfc10,times-nz-kea-2-24ts,gurobi-13.0.0,times-nz-kea +times-nz-kea,2-24ts,highs-hipo,1.12.0-hipo,2025.0,warning,Unknown,459.09608852199744,1402.832,1213210.3961,,,459.09608852199744,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 07:35:13.209719,c4-standard-2,europe-west9-c,48cfc10,times-nz-kea-2-24ts,highs-hipo-1.12.0-hipo,times-nz-kea +times-nz-kea,2-24ts,highs-ipx,1.12.0-hipo,2025.0,warning,Unknown,210.1007334400201,414.9,1213210.3961,,,210.1007334400201,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 07:42:53.051433,c4-standard-2,europe-west9-c,48cfc10,times-nz-kea-2-24ts,highs-ipx-1.12.0-hipo,times-nz-kea +times-nz-kea,2-24ts,highs,1.12.0,2025.0,ok,optimal,173.06942575299763,889.708,1213210.396077077,,,171.175954580307,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 07:46:23.893044,c4-standard-2,europe-west9-c,48cfc10,times-nz-kea-2-24ts,highs-1.12.0,times-nz-kea +times-nz-kea,2-24ts,scip,10.0.0,2025.0,ok,optimal,2890.6324110150163,3095.3,1213210.392402724,,,2888.670593,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 07:49:19.149799,c4-standard-2,europe-west9-c,48cfc10,times-nz-kea-2-24ts,scip-10.0.0,times-nz-kea +pypsa-power+ely-ucgas-mod,1-1h,gurobi,13.0.0,2025.0,ok,optimal,13.366190706001362,446.092,84668286067.13121,0.0,8.96969643579226e-06,12.75356411933899,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 08:41:08.408609,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely-ucgas-mod-1-1h,gurobi-13.0.0,pypsa-power+ely-ucgas-mod +pypsa-power+ely-ucgas-mod,1-1h,highs,1.12.0,2025.0,ok,optimal,61.23476510800538,454.956,84668286067.13148,0.0,8.96969643362961e-06,60.52063274383545,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 08:41:23.220430,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely-ucgas-mod-1-1h,highs-1.12.0,pypsa-power+ely-ucgas-mod +pypsa-power+ely-ucgas-mod,1-1h,scip,10.0.0,2025.0,ok,optimal,107.62485875998392,937.552,84668286067.13148,0.0,8.96977688890428e-06,106.836851,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 08:42:25.854549,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely-ucgas-mod-1-1h,scip-10.0.0,pypsa-power+ely-ucgas-mod +DCOPF-Carolinas_2M,997-1h,gurobi,13.0.0,2025.0,ok,optimal,5.946596538997255,623.676,4463676.828028414,,,4.803076982498169,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 08:44:15.142885,c4-standard-2,europe-west9-c,48cfc10,DCOPF-Carolinas_2M-997-1h,gurobi-13.0.0,DCOPF-Carolinas_2M +DCOPF-Carolinas_2M,997-1h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,32.074555030994816,387.848,4463676.828,,,32.074555030994816,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 08:44:22.931638,c4-standard-2,europe-west9-c,48cfc10,DCOPF-Carolinas_2M-997-1h,highs-hipo-1.12.0-hipo,DCOPF-Carolinas_2M +DCOPF-Carolinas_2M,997-1h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,11.524414587009232,284.16,4463676.8344,,,11.524414587009232,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 08:44:55.745630,c4-standard-2,europe-west9-c,48cfc10,DCOPF-Carolinas_2M-997-1h,highs-ipx-1.12.0-hipo,DCOPF-Carolinas_2M +DCOPF-Carolinas_2M,997-1h,highs,1.12.0,2025.0,ok,optimal,11.099860721005824,673.38,4463676.8280289015,,,9.587732791900637,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 08:45:08.016641,c4-standard-2,europe-west9-c,48cfc10,DCOPF-Carolinas_2M-997-1h,highs-1.12.0,DCOPF-Carolinas_2M +DCOPF-Carolinas_2M,997-1h,scip,10.0.0,2025.0,ok,optimal,99.43379897400156,1297.352,4463676.828029633,,,98.180169,3600.0,benchmark-instance-s-m-05,20251215-run-S-M,2025-12-17 08:45:21.223344,c4-standard-2,europe-west9-c,48cfc10,DCOPF-Carolinas_2M-997-1h,scip-10.0.0,DCOPF-Carolinas_2M +genx-3_three_zones_w_co2_capture,3-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,191.4,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-15 17:30:43.212808,c4-standard-2,europe-west3-c,48cfc10,genx-3_three_zones_w_co2_capture-3-1h,glpk-5.0,genx-3_three_zones_w_co2_capture +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,141.856,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-15 18:34:20.637560,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29 +SWITCH-3-zone-toy,3-6ts,glpk,5.0,2020.0,ER,,,124.964,,,,,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-15 19:37:56.466103,c4-standard-2,europe-west3-c,48cfc10,SWITCH-3-zone-toy-3-6ts,glpk-5.0,SWITCH-3-zone-toy +pglib_opf_case1951_rte,1951-NA,glpk,5.0,2020.0,TO,Timeout,3600.0,129.448,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-15 19:37:56.975557,c4-standard-2,europe-west3-c,48cfc10,pglib_opf_case1951_rte-1951-NA,glpk-5.0,pglib_opf_case1951_rte +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,133.316,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-15 20:41:33.355234,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29 +times-etimeseu-europe-elec+heat-single_stage,29-64ts,glpk,5.0,2020.0,warning,unknown,0.0932528749999619,273.548,,,,,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-15 21:45:08.218691,c4-standard-2,europe-west3-c,48cfc10,times-etimeseu-europe-elec+heat-single_stage-29-64ts,glpk-5.0,times-etimeseu-europe-elec+heat-single_stage +pypsa-power+ely+battery,1-1h,glpk,5.0,2020.0,ok,optimal,127.25494898899888,296.688,31714138110.0,,,,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-15 21:45:08.815668,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely+battery-1-1h,glpk-5.0,pypsa-power+ely+battery +pypsa-power+ely,1-1h,glpk,5.0,2020.0,ok,optimal,66.2142923729989,243.8,31714138110.0,,,,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-15 21:47:16.565846,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely-1-1h,glpk-5.0,pypsa-power+ely +genx-3_three_zones_w_co2_capture,3-1h,gurobi,10.0.0,2022.0,TO,Timeout,3600.0,2060.308,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-15 21:49:05.424640,c4-standard-2,europe-west3-c,48cfc10,genx-3_three_zones_w_co2_capture-3-1h,gurobi-10.0.0,genx-3_three_zones_w_co2_capture +genx-3_three_zones_w_co2_capture,3-1h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,3665.648,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-15 22:52:41.413772,c4-standard-2,europe-west3-c,48cfc10,genx-3_three_zones_w_co2_capture-3-1h,highs-1.5.0.dev0,genx-3_three_zones_w_co2_capture +genx-3_three_zones_w_co2_capture,3-1h,scip,8.0.3,2022.0,TO,Timeout,3600.0,1979.484,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-15 23:56:18.075193,c4-standard-2,europe-west3-c,48cfc10,genx-3_three_zones_w_co2_capture-3-1h,scip-8.0.3,genx-3_three_zones_w_co2_capture +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29,73-1h,gurobi,10.0.0,2022.0,ok,optimal,403.34237828999903,395.16,1768633.657413076,,,402.97338700294495,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 00:59:53.032395,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29,73-1h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1339.84,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 01:06:37.236486,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29,73-1h,scip,8.0.3,2022.0,TO,Timeout,3600.0,1893.08,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 02:10:13.626109,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29 +SWITCH-3-zone-toy,3-6ts,gurobi,10.0.0,2022.0,ok,optimal,0.1551065829989966,159.244,134733088.4292911,,,0.0044851303100585,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 03:13:48.507301,c4-standard-2,europe-west3-c,48cfc10,SWITCH-3-zone-toy-3-6ts,gurobi-10.0.0,SWITCH-3-zone-toy +SWITCH-3-zone-toy,3-6ts,highs,1.5.0.dev0,2022.0,ok,optimal,0.0092644089963869,147.888,134733088.4292911,,,0.0028972625732421,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 03:13:49.267680,c4-standard-2,europe-west3-c,48cfc10,SWITCH-3-zone-toy-3-6ts,highs-1.5.0.dev0,SWITCH-3-zone-toy +SWITCH-3-zone-toy,3-6ts,scip,8.0.3,2022.0,ok,optimal,0.0175590620056027,161.6,134733088.42929113,,,0.009537,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 03:13:49.883728,c4-standard-2,europe-west3-c,48cfc10,SWITCH-3-zone-toy-3-6ts,scip-8.0.3,SWITCH-3-zone-toy +pglib_opf_case1951_rte,1951-NA,gurobi,10.0.0,2022.0,ok,optimal,487.4714869569944,290.428,2031800.3588907872,,,487.4053020477295,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 03:13:50.509645,c4-standard-2,europe-west3-c,48cfc10,pglib_opf_case1951_rte-1951-NA,gurobi-10.0.0,pglib_opf_case1951_rte +pglib_opf_case1951_rte,1951-NA,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,469.64,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 03:21:58.677176,c4-standard-2,europe-west3-c,48cfc10,pglib_opf_case1951_rte-1951-NA,highs-1.5.0.dev0,pglib_opf_case1951_rte +pglib_opf_case1951_rte,1951-NA,scip,8.0.3,2022.0,ok,optimal,465.8363440250032,284.816,2031627.9150498372,,,465.717283,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 04:25:34.623877,c4-standard-2,europe-west3-c,48cfc10,pglib_opf_case1951_rte-1951-NA,scip-8.0.3,pglib_opf_case1951_rte +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29,73-1h,gurobi,10.0.0,2022.0,ok,optimal,58.56328428500274,252.052,1044605.358746225,,,58.29575705528259,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 04:33:21.181910,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29,73-1h,highs,1.5.0.dev0,2022.0,ok,optimal,650.4290843510025,521.576,1044605.3587425743,,,650.2701141834259,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 04:34:20.502311,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29,73-1h,scip,8.0.3,2022.0,ok,optimal,823.289188511997,1058.308,1044605.3587433776,,,823.129184,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 04:45:11.691789,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29 +times-etimeseu-europe-elec+heat-single_stage,29-64ts,gurobi,10.0.0,2022.0,ok,optimal,12.014005894001455,912.82,430451.3649280084,,,8.633067846298218,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 04:58:55.804155,c4-standard-2,europe-west3-c,48cfc10,times-etimeseu-europe-elec+heat-single_stage-29-64ts,gurobi-10.0.0,times-etimeseu-europe-elec+heat-single_stage +times-etimeseu-europe-elec+heat-single_stage,29-64ts,highs,1.5.0.dev0,2022.0,ok,optimal,167.6757437549968,1012.58,430451.36492800864,,,164.51277208328247,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 04:59:10.705005,c4-standard-2,europe-west3-c,48cfc10,times-etimeseu-europe-elec+heat-single_stage-29-64ts,highs-1.5.0.dev0,times-etimeseu-europe-elec+heat-single_stage +times-etimeseu-europe-elec+heat-single_stage,29-64ts,scip,8.0.3,2022.0,ok,optimal,355.32785211500595,3092.004,430451.36492800846,,,351.530858,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 05:02:01.565128,c4-standard-2,europe-west3-c,48cfc10,times-etimeseu-europe-elec+heat-single_stage-29-64ts,scip-8.0.3,times-etimeseu-europe-elec+heat-single_stage +pypsa-power+ely+battery,1-1h,gurobi,10.0.0,2022.0,ok,optimal,15.360788582001987,533.564,31714138111.860744,,,14.151868104934692,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 05:08:00.751018,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely+battery-1-1h,gurobi-10.0.0,pypsa-power+ely+battery +pypsa-power+ely+battery,1-1h,highs,1.5.0.dev0,2022.0,ok,optimal,28.43728927399934,660.308,31714138111.86105,,,27.37848973274231,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 05:08:17.573075,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely+battery-1-1h,highs-1.5.0.dev0,pypsa-power+ely+battery +pypsa-power+ely+battery,1-1h,scip,8.0.3,2022.0,ok,optimal,161.62544642100693,1120.14,31714138111.860943,,,160.791683,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 05:08:47.464185,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely+battery-1-1h,scip-8.0.3,pypsa-power+ely+battery +pypsa-power+ely,1-1h,gurobi,10.0.0,2022.0,ok,optimal,4.715068771001825,415.54,31714138111.860744,,,3.962822914123535,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 05:11:30.762888,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely-1-1h,gurobi-10.0.0,pypsa-power+ely +pypsa-power+ely,1-1h,highs,1.5.0.dev0,2022.0,ok,optimal,4.813196555995091,474.64,31714138111.86105,,,4.082151889801025,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 05:11:36.681767,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely-1-1h,highs-1.5.0.dev0,pypsa-power+ely +pypsa-power+ely,1-1h,scip,8.0.3,2022.0,ok,optimal,86.50840151400189,829.428,31714138111.860943,,,85.905623,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 05:11:42.684448,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely-1-1h,scip-8.0.3,pypsa-power+ely +genx-3_three_zones_w_co2_capture,3-1h,gurobi,11.0.0,2023.0,TO,Timeout,3600.0,1590.052,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 05:16:35.993658,c4-standard-2,europe-west3-c,48cfc10,genx-3_three_zones_w_co2_capture-3-1h,gurobi-11.0.0,genx-3_three_zones_w_co2_capture +genx-3_three_zones_w_co2_capture,3-1h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,3734.98,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 06:20:12.869132,c4-standard-2,europe-west3-c,48cfc10,genx-3_three_zones_w_co2_capture-3-1h,highs-1.6.0.dev0,genx-3_three_zones_w_co2_capture +genx-3_three_zones_w_co2_capture,3-1h,scip,8.1.0,2023.0,TO,Timeout,3600.0,1989.464,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 07:23:50.207730,c4-standard-2,europe-west3-c,48cfc10,genx-3_three_zones_w_co2_capture-3-1h,scip-8.1.0,genx-3_three_zones_w_co2_capture +genx-3_three_zones_w_co2_capture,3-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,223.2,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 08:27:27.614646,c4-standard-2,europe-west3-c,48cfc10,genx-3_three_zones_w_co2_capture-3-1h,cbc-2.10.11,genx-3_three_zones_w_co2_capture +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29,73-1h,gurobi,11.0.0,2023.0,ok,optimal,902.4573515359951,435.492,1768633.6574147737,,,902.0599720478058,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 09:31:06.859060,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29,73-1h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,1372.172,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 09:46:10.214643,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29,73-1h,scip,8.1.0,2023.0,TO,Timeout,3600.0,1902.848,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 10:49:46.291151,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29,73-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,173.044,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 11:53:23.236286,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29 +SWITCH-3-zone-toy,3-6ts,gurobi,11.0.0,2023.0,ok,optimal,0.1388603490049718,169.104,134733088.4292911,,,0.0046908855438232,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 12:56:59.920845,c4-standard-2,europe-west3-c,48cfc10,SWITCH-3-zone-toy-3-6ts,gurobi-11.0.0,SWITCH-3-zone-toy +SWITCH-3-zone-toy,3-6ts,highs,1.6.0.dev0,2023.0,ok,optimal,0.0094453700003214,158.444,134733088.4292911,,,0.0031123161315917,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 12:57:00.813088,c4-standard-2,europe-west3-c,48cfc10,SWITCH-3-zone-toy-3-6ts,highs-1.6.0.dev0,SWITCH-3-zone-toy +SWITCH-3-zone-toy,3-6ts,scip,8.1.0,2023.0,ok,optimal,0.0254393340001115,172.156,134733088.42929113,,,0.009618,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 12:57:01.557415,c4-standard-2,europe-west3-c,48cfc10,SWITCH-3-zone-toy-3-6ts,scip-8.1.0,SWITCH-3-zone-toy +SWITCH-3-zone-toy,3-6ts,cbc,2.10.11,2023.0,ok,optimal,0.0475579560006735,156.664,134733088.4292911,,,0.03,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 12:57:02.313496,c4-standard-2,europe-west3-c,48cfc10,SWITCH-3-zone-toy-3-6ts,cbc-2.10.11,SWITCH-3-zone-toy +pglib_opf_case1951_rte,1951-NA,gurobi,11.0.0,2023.0,ok,optimal,322.4239221530006,234.416,2031637.8276491172,,,322.3669319152832,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 12:57:03.107554,c4-standard-2,europe-west3-c,48cfc10,pglib_opf_case1951_rte-1951-NA,gurobi-11.0.0,pglib_opf_case1951_rte +pglib_opf_case1951_rte,1951-NA,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,532.676,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 13:02:26.342856,c4-standard-2,europe-west3-c,48cfc10,pglib_opf_case1951_rte-1951-NA,highs-1.6.0.dev0,pglib_opf_case1951_rte +pglib_opf_case1951_rte,1951-NA,scip,8.1.0,2023.0,ok,optimal,463.5214678259945,291.636,2031627.9150498372,,,463.427321,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 14:06:03.685129,c4-standard-2,europe-west3-c,48cfc10,pglib_opf_case1951_rte-1951-NA,scip-8.1.0,pglib_opf_case1951_rte +pglib_opf_case1951_rte,1951-NA,cbc,2.10.11,2023.0,TO,Timeout,3600.0,161.064,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 14:13:48.020136,c4-standard-2,europe-west3-c,48cfc10,pglib_opf_case1951_rte-1951-NA,cbc-2.10.11,pglib_opf_case1951_rte +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29,73-1h,gurobi,11.0.0,2023.0,ok,optimal,50.059351240008255,257.592,1044605.3587019702,,,49.79883098602295,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 15:17:23.892895,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29,73-1h,highs,1.6.0.dev0,2023.0,ok,optimal,636.6208134820045,535.296,1044605.3587425743,,,636.5188488960266,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 15:18:14.778019,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29,73-1h,scip,8.1.0,2023.0,ok,optimal,821.5806390000071,1065.556,1044605.3587433776,,,821.440705,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 15:28:52.219041,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29,73-1h,cbc,2.10.11,2023.0,ok,optimal,603.330819507988,234.104,1044605.35874268,,,603.2,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 15:42:34.699581,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29 +times-etimeseu-europe-elec+heat-single_stage,29-64ts,gurobi,11.0.0,2023.0,ok,optimal,11.001982191010027,891.196,430451.36492800846,,,8.238142013549805,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 15:52:38.839617,c4-standard-2,europe-west3-c,48cfc10,times-etimeseu-europe-elec+heat-single_stage-29-64ts,gurobi-11.0.0,times-etimeseu-europe-elec+heat-single_stage +times-etimeseu-europe-elec+heat-single_stage,29-64ts,highs,1.6.0.dev0,2023.0,ok,optimal,163.39186999000958,1000.804,430451.36492800864,,,161.26940727233887,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 15:52:51.975625,c4-standard-2,europe-west3-c,48cfc10,times-etimeseu-europe-elec+heat-single_stage-29-64ts,highs-1.6.0.dev0,times-etimeseu-europe-elec+heat-single_stage +times-etimeseu-europe-elec+heat-single_stage,29-64ts,scip,8.1.0,2023.0,ok,optimal,353.40871299800347,3081.436,430451.36492800846,,,350.25131,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 15:55:37.360788,c4-standard-2,europe-west3-c,48cfc10,times-etimeseu-europe-elec+heat-single_stage-29-64ts,scip-8.1.0,times-etimeseu-europe-elec+heat-single_stage +times-etimeseu-europe-elec+heat-single_stage,29-64ts,cbc,2.10.11,2023.0,ER,,,305.444,,,,,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 16:01:33.916107,c4-standard-2,europe-west3-c,48cfc10,times-etimeseu-europe-elec+heat-single_stage-29-64ts,cbc-2.10.11,times-etimeseu-europe-elec+heat-single_stage +pypsa-power+ely+battery,1-1h,gurobi,11.0.0,2023.0,ok,optimal,15.976819603994954,528.78,31714138111.86075,,,14.904258012771606,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 16:01:34.760780,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely+battery-1-1h,gurobi-11.0.0,pypsa-power+ely+battery +pypsa-power+ely+battery,1-1h,highs,1.6.0.dev0,2023.0,ok,optimal,27.335159308000584,668.02,31714138111.86105,,,26.448842525482178,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 16:01:52.159315,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely+battery-1-1h,highs-1.6.0.dev0,pypsa-power+ely+battery +pypsa-power+ely+battery,1-1h,scip,8.1.0,2023.0,ok,optimal,161.3508247879945,1119.368,31714138111.860943,,,160.625091,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 16:02:20.895642,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely+battery-1-1h,scip-8.1.0,pypsa-power+ely+battery +pypsa-power+ely+battery,1-1h,cbc,2.10.11,2023.0,ok,optimal,38.15876132900303,332.728,31714138111.860737,,,,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 16:05:03.895273,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely+battery-1-1h,cbc-2.10.11,pypsa-power+ely+battery +pypsa-power+ely,1-1h,gurobi,11.0.0,2023.0,ok,optimal,4.6257300110009965,416.916,31714138111.860744,,,4.036407947540283,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 16:05:43.433302,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely-1-1h,gurobi-11.0.0,pypsa-power+ely +pypsa-power+ely,1-1h,highs,1.6.0.dev0,2023.0,ok,optimal,4.644617762998678,468.228,31714138111.86105,,,4.018896579742432,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 16:05:49.250949,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely-1-1h,highs-1.6.0.dev0,pypsa-power+ely +pypsa-power+ely,1-1h,scip,8.1.0,2023.0,ok,optimal,86.39582090899057,830.552,31714138111.860943,,,85.878518,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 16:05:55.078983,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely-1-1h,scip-8.1.0,pypsa-power+ely +pypsa-power+ely,1-1h,cbc,2.10.11,2023.0,ok,optimal,6.381569321994903,280.78,31714138111.860737,,,,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 16:07:22.842624,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely-1-1h,cbc-2.10.11,pypsa-power+ely +genx-3_three_zones_w_co2_capture,3-1h,gurobi,12.0.0,2024.0,TO,Timeout,3600.0,2133.012,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 16:08:04.546082,c4-standard-2,europe-west3-c,48cfc10,genx-3_three_zones_w_co2_capture-3-1h,gurobi-12.0.0,genx-3_three_zones_w_co2_capture +genx-3_three_zones_w_co2_capture,3-1h,highs,1.9.0,2024.0,OOM,Out of Memory,,,,,,,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 17:11:40.447787,c4-standard-2,europe-west3-c,48cfc10,genx-3_three_zones_w_co2_capture-3-1h,highs-1.9.0,genx-3_three_zones_w_co2_capture +genx-3_three_zones_w_co2_capture,3-1h,scip,9.2.0,2024.0,TO,Timeout,3600.0,1977.504,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 18:06:01.423085,c4-standard-2,europe-west3-c,48cfc10,genx-3_three_zones_w_co2_capture-3-1h,scip-9.2.0,genx-3_three_zones_w_co2_capture +genx-3_three_zones_w_co2_capture,3-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,205.936,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 19:09:39.373107,c4-standard-2,europe-west3-c,48cfc10,genx-3_three_zones_w_co2_capture-3-1h,cbc-2.10.12,genx-3_three_zones_w_co2_capture +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29,73-1h,gurobi,12.0.0,2024.0,ok,optimal,355.34363918501185,392.732,1768633.6573502969,0.0,9.742502101460498e-05,354.688658952713,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 20:13:14.719360,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29,73-1h,highs,1.9.0,2024.0,TO,Timeout,3600.0,1193.704,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 20:19:10.935140,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29,73-1h,scip,9.2.0,2024.0,TO,Timeout,3600.0,1879.092,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 21:22:46.758094,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29,73-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,155.48,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 22:26:23.960605,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29 +SWITCH-3-zone-toy,3-6ts,gurobi,12.0.0,2024.0,ok,optimal,0.1508140939986333,153.532,134733088.4292911,0.0,0.0,0.0044898986816406,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 23:30:00.189250,c4-standard-2,europe-west3-c,48cfc10,SWITCH-3-zone-toy-3-6ts,gurobi-12.0.0,SWITCH-3-zone-toy +SWITCH-3-zone-toy,3-6ts,highs,1.9.0,2024.0,ok,optimal,0.0098579960031202,142.236,134733088.4292911,0.0,0.0,0.0032017230987548,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 23:30:00.858741,c4-standard-2,europe-west3-c,48cfc10,SWITCH-3-zone-toy-3-6ts,highs-1.9.0,SWITCH-3-zone-toy +SWITCH-3-zone-toy,3-6ts,scip,9.2.0,2024.0,ok,optimal,0.0277008460107026,155.572,134733088.42929113,0.0,0.0,0.0095859999999999,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 23:30:01.382967,c4-standard-2,europe-west3-c,48cfc10,SWITCH-3-zone-toy-3-6ts,scip-9.2.0,SWITCH-3-zone-toy +SWITCH-3-zone-toy,3-6ts,cbc,2.10.12,2024.0,ok,optimal,0.0656611869926564,141.612,134733088.4292911,0.0,,0.03,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 23:30:01.921426,c4-standard-2,europe-west3-c,48cfc10,SWITCH-3-zone-toy-3-6ts,cbc-2.10.12,SWITCH-3-zone-toy +pglib_opf_case1951_rte,1951-NA,gurobi,12.0.0,2024.0,ok,optimal,454.4423902419949,223.796,2031705.30054945,0.0,3.808893915753423e-05,454.3860611915589,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 23:30:02.502932,c4-standard-2,europe-west3-c,48cfc10,pglib_opf_case1951_rte-1951-NA,gurobi-12.0.0,pglib_opf_case1951_rte +pglib_opf_case1951_rte,1951-NA,highs,1.9.0,2024.0,TO,Timeout,3600.0,408.948,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-16 23:37:37.565581,c4-standard-2,europe-west3-c,48cfc10,pglib_opf_case1951_rte-1951-NA,highs-1.9.0,pglib_opf_case1951_rte +pglib_opf_case1951_rte,1951-NA,scip,9.2.0,2024.0,ok,optimal,470.3723859680031,276.136,2031627.9150498372,0.0,5.73014974664225e-14,470.27647,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 00:41:16.990797,c4-standard-2,europe-west3-c,48cfc10,pglib_opf_case1951_rte-1951-NA,scip-9.2.0,pglib_opf_case1951_rte +pglib_opf_case1951_rte,1951-NA,cbc,2.10.12,2024.0,TO,Timeout,3600.0,143.512,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 00:49:08.013441,c4-standard-2,europe-west3-c,48cfc10,pglib_opf_case1951_rte-1951-NA,cbc-2.10.12,pglib_opf_case1951_rte +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29,73-1h,gurobi,12.0.0,2024.0,ok,optimal,64.55413207798847,247.304,1044605.3587212232,0.0,6.22874608407821e-05,64.32757592201233,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 01:52:46.696570,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29,73-1h,highs,1.9.0,2024.0,ok,optimal,427.1747785930056,425.288,1044605.358743233,9.947598300641405e-14,9.654725370690312e-05,426.9976861476898,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 01:53:51.978519,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29,73-1h,scip,9.2.0,2024.0,ok,optimal,826.322075819,1048.192,1044605.3587433776,9.132475413028488e-12,6.947296819797764e-05,826.175312,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 02:00:59.856138,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29,73-1h,cbc,2.10.12,2024.0,ok,optimal,609.0886120840005,235.092,1044605.35874268,0.0,,608.8,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 02:14:46.959357,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29 +times-etimeseu-europe-elec+heat-single_stage,29-64ts,gurobi,12.0.0,2024.0,ok,optimal,10.817711415002124,880.128,430451.36492800846,,,8.033715963363647,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 02:24:56.724295,c4-standard-2,europe-west3-c,48cfc10,times-etimeseu-europe-elec+heat-single_stage-29-64ts,gurobi-12.0.0,times-etimeseu-europe-elec+heat-single_stage +times-etimeseu-europe-elec+heat-single_stage,29-64ts,highs,1.9.0,2024.0,ok,optimal,153.70197538299544,990.7,430451.3649280085,,,150.30839109420776,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 02:25:12.302606,c4-standard-2,europe-west3-c,48cfc10,times-etimeseu-europe-elec+heat-single_stage-29-64ts,highs-1.9.0,times-etimeseu-europe-elec+heat-single_stage +times-etimeseu-europe-elec+heat-single_stage,29-64ts,scip,9.2.0,2024.0,ok,optimal,353.1771179669886,3064.744,430451.36492800846,,,350.060731,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 02:27:50.929087,c4-standard-2,europe-west3-c,48cfc10,times-etimeseu-europe-elec+heat-single_stage-29-64ts,scip-9.2.0,times-etimeseu-europe-elec+heat-single_stage +times-etimeseu-europe-elec+heat-single_stage,29-64ts,cbc,2.10.12,2024.0,ER,,,287.584,,,,,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 02:33:49.849861,c4-standard-2,europe-west3-c,48cfc10,times-etimeseu-europe-elec+heat-single_stage-29-64ts,cbc-2.10.12,times-etimeseu-europe-elec+heat-single_stage +pypsa-power+ely+battery,1-1h,gurobi,12.0.0,2024.0,ok,optimal,17.030032908005523,513.716,31714138111.86075,,,16.014941930770874,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 02:33:50.455951,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely+battery-1-1h,gurobi-12.0.0,pypsa-power+ely+battery +pypsa-power+ely+battery,1-1h,highs,1.9.0,2024.0,ok,optimal,28.144725600999664,658.92,31714138111.86105,,,27.00066351890564,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 02:34:09.190570,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely+battery-1-1h,highs-1.9.0,pypsa-power+ely+battery +pypsa-power+ely+battery,1-1h,scip,9.2.0,2024.0,ok,optimal,161.4971814150049,1103.956,31714138111.860943,,,160.77338,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 02:34:39.036623,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely+battery-1-1h,scip-9.2.0,pypsa-power+ely+battery +pypsa-power+ely+battery,1-1h,cbc,2.10.12,2024.0,ok,optimal,39.14733581600012,382.724,31714138111.860737,,,,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 02:37:22.454189,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely+battery-1-1h,cbc-2.10.12,pypsa-power+ely+battery +pypsa-power+ely,1-1h,gurobi,12.0.0,2024.0,ok,optimal,4.441572316005477,402.128,31714138111.860744,,,3.8278541564941406,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 02:38:03.287776,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely-1-1h,gurobi-12.0.0,pypsa-power+ely +pypsa-power+ely,1-1h,highs,1.9.0,2024.0,ok,optimal,4.972537870999076,462.836,31714138111.86105,,,4.173490762710571,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 02:38:09.072166,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely-1-1h,highs-1.9.0,pypsa-power+ely +pypsa-power+ely,1-1h,scip,9.2.0,2024.0,ok,optimal,86.51520516400342,814.392,31714138111.860943,,,86.006986,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 02:38:15.381161,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely-1-1h,scip-9.2.0,pypsa-power+ely +pypsa-power+ely,1-1h,cbc,2.10.12,2024.0,ok,optimal,7.051800139000989,323.22,31714138111.860737,,,,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 02:39:43.407185,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely-1-1h,cbc-2.10.12,pypsa-power+ely +genx-3_three_zones_w_co2_capture,3-1h,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,3503.328,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 02:40:27.622217,c4-standard-2,europe-west3-c,48cfc10,genx-3_three_zones_w_co2_capture-3-1h,gurobi-13.0.0,genx-3_three_zones_w_co2_capture +genx-3_three_zones_w_co2_capture,3-1h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1771.568,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 03:44:07.183991,c4-standard-2,europe-west3-c,48cfc10,genx-3_three_zones_w_co2_capture-3-1h,highs-1.12.0,genx-3_three_zones_w_co2_capture +genx-3_three_zones_w_co2_capture,3-1h,scip,10.0.0,2025.0,TO,Timeout,3600.0,1999.796,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 04:47:42.948016,c4-standard-2,europe-west3-c,48cfc10,genx-3_three_zones_w_co2_capture-3-1h,scip-10.0.0,genx-3_three_zones_w_co2_capture +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29,73-1h,gurobi,13.0.0,2025.0,ok,optimal,897.6514113220037,448.268,1768633.657004689,0.0,9.964709509416456e-05,897.3510000705719,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 05:51:21.528507,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29,73-1h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1385.688,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 06:06:20.141683,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29,73-1h,scip,10.0.0,2025.0,TO,Timeout,3600.0,1913.792,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 07:09:56.085918,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day29 +SWITCH-3-zone-toy,3-6ts,gurobi,13.0.0,2025.0,ok,optimal,0.1605400330154225,181.944,134733088.4292911,0.0,0.0,0.0043580532073974,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 08:13:32.219260,c4-standard-2,europe-west3-c,48cfc10,SWITCH-3-zone-toy-3-6ts,gurobi-13.0.0,SWITCH-3-zone-toy +SWITCH-3-zone-toy,3-6ts,highs,1.12.0,2025.0,ok,optimal,0.0128482549916952,169.736,134733088.4292911,0.0,0.0,0.0064191818237304,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 08:13:33.142757,c4-standard-2,europe-west3-c,48cfc10,SWITCH-3-zone-toy-3-6ts,highs-1.12.0,SWITCH-3-zone-toy +SWITCH-3-zone-toy,3-6ts,scip,10.0.0,2025.0,ok,optimal,0.0181966500240378,183.048,134733088.42929113,0.0,0.0,0.009616,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 08:13:33.897859,c4-standard-2,europe-west3-c,48cfc10,SWITCH-3-zone-toy-3-6ts,scip-10.0.0,SWITCH-3-zone-toy +pglib_opf_case1951_rte,1951-NA,gurobi,13.0.0,2025.0,ok,optimal,2.4483423130004667,213.516,2031627.915051015,0.0,0.0,2.392904996871948,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 08:13:34.654811,c4-standard-2,europe-west3-c,48cfc10,pglib_opf_case1951_rte-1951-NA,gurobi-13.0.0,pglib_opf_case1951_rte +pglib_opf_case1951_rte,1951-NA,highs,1.12.0,2025.0,TO,Timeout,3600.0,664.136,,,,3600.0,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 08:13:37.929025,c4-standard-2,europe-west3-c,48cfc10,pglib_opf_case1951_rte-1951-NA,highs-1.12.0,pglib_opf_case1951_rte +pglib_opf_case1951_rte,1951-NA,scip,10.0.0,2025.0,ok,optimal,462.7064499640255,303.028,2031627.9150498372,0.0,5.73014974664225e-14,462.607451,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 09:17:13.444271,c4-standard-2,europe-west3-c,48cfc10,pglib_opf_case1951_rte-1951-NA,scip-10.0.0,pglib_opf_case1951_rte +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29,73-1h,gurobi,13.0.0,2025.0,ok,optimal,46.578936956997495,275.588,1044605.3587121938,0.0,5.379661385545562e-05,46.34453511238098,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 09:24:56.997454,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29,73-1h,highs,1.12.0,2025.0,ok,optimal,447.5005121330032,571.528,1044605.35874562,1.551255544213918e-12,8.319005239658998e-05,447.3906185626984,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 09:25:44.439710,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29,73-1h,scip,10.0.0,2025.0,ok,optimal,823.3618708489812,1085.188,1044605.3587433776,9.132475413028488e-12,6.947296819797764e-05,823.213742,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 09:33:12.798995,c4-standard-2,europe-west3-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day29 +times-etimeseu-europe-elec+heat-single_stage,29-64ts,gurobi,13.0.0,2025.0,ok,optimal,9.593139803997474,923.808,430451.3649280086,,,6.942401885986328,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 09:46:57.103155,c4-standard-2,europe-west3-c,48cfc10,times-etimeseu-europe-elec+heat-single_stage-29-64ts,gurobi-13.0.0,times-etimeseu-europe-elec+heat-single_stage +times-etimeseu-europe-elec+heat-single_stage,29-64ts,highs-hipo,1.12.0-hipo,2025.0,warning,Unknown,43.07550895499298,514.256,430451.36493,,,43.07550895499298,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 09:47:09.404641,c4-standard-2,europe-west3-c,48cfc10,times-etimeseu-europe-elec+heat-single_stage-29-64ts,highs-hipo-1.12.0-hipo,times-etimeseu-europe-elec+heat-single_stage +times-etimeseu-europe-elec+heat-single_stage,29-64ts,highs-ipx,1.12.0-hipo,2025.0,warning,Unknown,28.93037108500721,493.18,430451.36493,,,28.93037108500721,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 09:47:53.229721,c4-standard-2,europe-west3-c,48cfc10,times-etimeseu-europe-elec+heat-single_stage-29-64ts,highs-ipx-1.12.0-hipo,times-etimeseu-europe-elec+heat-single_stage +times-etimeseu-europe-elec+heat-single_stage,29-64ts,highs,1.12.0,2025.0,ok,optimal,184.86925376800357,1021.52,430451.36492800846,,,182.3879792690277,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 09:48:22.917538,c4-standard-2,europe-west3-c,48cfc10,times-etimeseu-europe-elec+heat-single_stage-29-64ts,highs-1.12.0,times-etimeseu-europe-elec+heat-single_stage +times-etimeseu-europe-elec+heat-single_stage,29-64ts,scip,10.0.0,2025.0,ok,optimal,353.0876431250072,3089.76,430451.36492800846,,,349.725159,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 09:51:30.390416,c4-standard-2,europe-west3-c,48cfc10,times-etimeseu-europe-elec+heat-single_stage-29-64ts,scip-10.0.0,times-etimeseu-europe-elec+heat-single_stage +pypsa-power+ely+battery,1-1h,gurobi,13.0.0,2025.0,ok,optimal,17.17853591000312,537.384,31714138111.86075,,,16.083613872528076,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 09:57:27.227839,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely+battery-1-1h,gurobi-13.0.0,pypsa-power+ely+battery +pypsa-power+ely+battery,1-1h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,58.52070639998419,347.452,31714138112.0,,,58.52070639998419,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 09:57:45.918375,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely+battery-1-1h,highs-hipo-1.12.0-hipo,pypsa-power+ely+battery +pypsa-power+ely+battery,1-1h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,104.95368107399554,198.012,31714138112.0,,,104.95368107399554,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 09:58:45.183284,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely+battery-1-1h,highs-ipx-1.12.0-hipo,pypsa-power+ely+battery +pypsa-power+ely+battery,1-1h,highs,1.12.0,2025.0,ok,optimal,27.748052024981007,680.244,31714138111.86075,,,26.80495977401733,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 10:00:30.882456,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely+battery-1-1h,highs-1.12.0,pypsa-power+ely+battery +pypsa-power+ely+battery,1-1h,scip,10.0.0,2025.0,ok,optimal,161.18327874600072,1124.44,31714138111.860943,,,160.436214,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 10:01:00.103994,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely+battery-1-1h,scip-10.0.0,pypsa-power+ely+battery +pypsa-power+ely,1-1h,gurobi,13.0.0,2025.0,ok,optimal,4.534502000984503,430.98,31714138111.860744,,,3.810588121414185,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 10:03:43.020834,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely-1-1h,gurobi-13.0.0,pypsa-power+ely +pypsa-power+ely,1-1h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,25.743127801019,248.552,31714138112.0,,,25.743127801019,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 10:03:48.823859,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely-1-1h,highs-hipo-1.12.0-hipo,pypsa-power+ely +pypsa-power+ely,1-1h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,18.327995233004916,164.708,31714138112.0,,,18.327995233004916,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 10:04:15.318260,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely-1-1h,highs-ipx-1.12.0-hipo,pypsa-power+ely +pypsa-power+ely,1-1h,highs,1.12.0,2025.0,ok,optimal,4.750725718011381,485.412,31714138111.86075,,,4.092874765396118,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 10:04:34.397986,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely-1-1h,highs-1.12.0,pypsa-power+ely +pypsa-power+ely,1-1h,scip,10.0.0,2025.0,ok,optimal,86.36738786898786,843.848,31714138111.860943,,,85.828783,3600.0,benchmark-instance-s-m-11,20251215-run-S-M,2025-12-17 10:04:40.395845,c4-standard-2,europe-west3-c,48cfc10,pypsa-power+ely-1-1h,scip-10.0.0,pypsa-power+ely +pglib_opf_case1803_snem,1803-NA,glpk,5.0,2020.0,TO,Timeout,3600.0,130.152,,,,3600.0,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-15 17:30:38.485497,c4-standard-2,europe-west2-a,48cfc10,pglib_opf_case1803_snem-1803-NA,glpk-5.0,pglib_opf_case1803_snem +times-ireland-noco2,1-1ts,glpk,5.0,2020.0,warning,unknown,0.1249551970004176,304.832,,,,,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-15 18:34:12.205728,c4-standard-2,europe-west2-a,48cfc10,times-ireland-noco2-1-1ts,glpk-5.0,times-ireland-noco2 +OEMOF-v2-invest-optimize-only-gas-and-storage,1-8760ts,glpk,5.0,2020.0,ER,,,149.696,,,,,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-15 18:34:12.823347,c4-standard-2,europe-west2-a,48cfc10,OEMOF-v2-invest-optimize-only-gas-and-storage-1-8760ts,glpk-5.0,OEMOF-v2-invest-optimize-only-gas-and-storage +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,133.784,,,,3600.0,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-15 18:34:16.274015,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314 +genx-4_three_zones_w_policies_slack-no_uc,3-1h,glpk,5.0,2020.0,ok,optimal,1334.5654262240005,273.276,21182.24822,,,,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-15 19:37:48.458903,c4-standard-2,europe-west2-a,48cfc10,genx-4_three_zones_w_policies_slack-no_uc-3-1h,glpk-5.0,genx-4_three_zones_w_policies_slack-no_uc +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332,73-1h,glpk,5.0,2020.0,ok,unknown,3359.225639799999,438.48,238867.4773,,,,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-15 20:00:03.520866,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332 +pglib_opf_case1803_snem,1803-NA,gurobi,10.0.0,2022.0,TO,Timeout,3600.0,1230.376,,,,3600.0,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-15 21:00:19.538119,c4-standard-2,europe-west2-a,48cfc10,pglib_opf_case1803_snem-1803-NA,gurobi-10.0.0,pglib_opf_case1803_snem +pglib_opf_case1803_snem,1803-NA,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,846.76,,,,3600.0,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-15 22:03:53.519491,c4-standard-2,europe-west2-a,48cfc10,pglib_opf_case1803_snem-1803-NA,highs-1.5.0.dev0,pglib_opf_case1803_snem +pglib_opf_case1803_snem,1803-NA,scip,8.0.3,2022.0,TO,Timeout,3600.0,2031.516,,,,3600.0,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-15 23:07:27.410118,c4-standard-2,europe-west2-a,48cfc10,pglib_opf_case1803_snem-1803-NA,scip-8.0.3,pglib_opf_case1803_snem +times-ireland-noco2,1-1ts,gurobi,10.0.0,2022.0,ok,optimal,664.3354869450013,1073.168,437542.76772149926,,,660.7416439056396,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 00:11:06.923496,c4-standard-2,europe-west2-a,48cfc10,times-ireland-noco2-1-1ts,gurobi-10.0.0,times-ireland-noco2 +times-ireland-noco2,1-1ts,highs,1.5.0.dev0,2022.0,ok,optimal,3501.795419326001,1286.344,437542.7677193059,,,3498.174464941025,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 00:22:14.934431,c4-standard-2,europe-west2-a,48cfc10,times-ireland-noco2-1-1ts,highs-1.5.0.dev0,times-ireland-noco2 +times-ireland-noco2,1-1ts,scip,8.0.3,2022.0,TO,Timeout,3600.0,3993.476,,,,3600.0,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 01:24:19.946102,c4-standard-2,europe-west2-a,48cfc10,times-ireland-noco2-1-1ts,scip-8.0.3,times-ireland-noco2 +OEMOF-v2-invest-optimize-only-gas-and-storage,1-8760ts,gurobi,10.0.0,2022.0,ok,optimal,0.9805449670020608,345.24,34853801.711324126,,,0.1685540676116943,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 02:27:56.036364,c4-standard-2,europe-west2-a,48cfc10,OEMOF-v2-invest-optimize-only-gas-and-storage-1-8760ts,gurobi-10.0.0,OEMOF-v2-invest-optimize-only-gas-and-storage +OEMOF-v2-invest-optimize-only-gas-and-storage,1-8760ts,highs,1.5.0.dev0,2022.0,ok,optimal,0.8028727559976687,346.004,34853801.711324126,,,0.2528893947601318,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 02:27:58.194391,c4-standard-2,europe-west2-a,48cfc10,OEMOF-v2-invest-optimize-only-gas-and-storage-1-8760ts,highs-1.5.0.dev0,OEMOF-v2-invest-optimize-only-gas-and-storage +OEMOF-v2-invest-optimize-only-gas-and-storage,1-8760ts,scip,8.0.3,2022.0,ok,optimal,1.597592813999654,641.144,34853801.71132404,,,1.098653,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 02:28:00.078133,c4-standard-2,europe-west2-a,48cfc10,OEMOF-v2-invest-optimize-only-gas-and-storage-1-8760ts,scip-8.0.3,OEMOF-v2-invest-optimize-only-gas-and-storage +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314,73-1h,gurobi,10.0.0,2022.0,ok,optimal,94.73114671800067,280.4,901032.5825652044,,,94.62047696113586,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 02:28:02.867331,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314,73-1h,highs,1.5.0.dev0,2022.0,ok,optimal,755.3017855129983,512.252,901032.582563227,,,755.1476819515228,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 02:29:38.365642,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314,73-1h,scip,8.0.3,2022.0,ok,optimal,1950.742227169001,1240.024,901032.5825639544,,,1950.580969,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 02:42:14.398689,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314 +genx-4_three_zones_w_policies_slack-no_uc,3-1h,gurobi,10.0.0,2022.0,ok,optimal,540.4886492850055,490.556,21182.2482196961,,,539.2319889068604,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 03:14:45.963761,c4-standard-2,europe-west2-a,48cfc10,genx-4_three_zones_w_policies_slack-no_uc-3-1h,gurobi-10.0.0,genx-4_three_zones_w_policies_slack-no_uc +genx-4_three_zones_w_policies_slack-no_uc,3-1h,highs,1.5.0.dev0,2022.0,ok,optimal,778.5874129769945,606.732,21182.24821793586,,,777.4830162525177,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 03:23:48.179902,c4-standard-2,europe-west2-a,48cfc10,genx-4_three_zones_w_policies_slack-no_uc-3-1h,highs-1.5.0.dev0,genx-4_three_zones_w_policies_slack-no_uc +genx-4_three_zones_w_policies_slack-no_uc,3-1h,scip,8.0.3,2022.0,ok,optimal,979.7811312539998,1252.5,21182.24821804184,,,978.851818,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 03:40:20.912737,c4-standard-2,europe-west2-a,48cfc10,genx-4_three_zones_w_policies_slack-no_uc-3-1h,scip-8.0.3,genx-4_three_zones_w_policies_slack-no_uc +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332,73-1h,gurobi,10.0.0,2022.0,ok,optimal,2.3859765300003346,204.012,238867.47730951896,,,2.133095979690552,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 03:56:42.438615,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332,73-1h,highs,1.5.0.dev0,2022.0,ok,optimal,16.272081506001996,274.068,238867.47730937696,,,16.09477686882019,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 03:56:45.587026,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332,73-1h,scip,8.0.3,2022.0,ok,optimal,36.335159757996735,440.004,238867.47730951925,,,36.211471,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 03:57:02.634371,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332 +pglib_opf_case1803_snem,1803-NA,gurobi,11.0.0,2023.0,TO,Timeout,3600.0,467.372,,,,3600.0,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 04:01:06.248868,c4-standard-2,europe-west2-a,48cfc10,pglib_opf_case1803_snem-1803-NA,gurobi-11.0.0,pglib_opf_case1803_snem +pglib_opf_case1803_snem,1803-NA,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,880.328,,,,3600.0,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 05:04:38.468488,c4-standard-2,europe-west2-a,48cfc10,pglib_opf_case1803_snem-1803-NA,highs-1.6.0.dev0,pglib_opf_case1803_snem +pglib_opf_case1803_snem,1803-NA,scip,8.1.0,2023.0,TO,Timeout,3600.0,2042.576,,,,3600.0,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 06:08:12.287489,c4-standard-2,europe-west2-a,48cfc10,pglib_opf_case1803_snem-1803-NA,scip-8.1.0,pglib_opf_case1803_snem +pglib_opf_case1803_snem,1803-NA,cbc,2.10.11,2023.0,TO,Timeout,3600.0,161.476,,,,3600.0,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 07:11:46.945770,c4-standard-2,europe-west2-a,48cfc10,pglib_opf_case1803_snem-1803-NA,cbc-2.10.11,pglib_opf_case1803_snem +times-ireland-noco2,1-1ts,gurobi,11.0.0,2023.0,ok,optimal,1936.2083773819977,1059.888,437542.7677205702,,,1933.3438000679016,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 08:15:29.369016,c4-standard-2,europe-west2-a,48cfc10,times-ireland-noco2-1-1ts,gurobi-11.0.0,times-ireland-noco2 +times-ireland-noco2,1-1ts,highs,1.6.0.dev0,2023.0,ok,optimal,3512.6449050429947,1247.172,437542.7677193059,,,3510.1435515880585,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 08:47:48.055944,c4-standard-2,europe-west2-a,48cfc10,times-ireland-noco2-1-1ts,highs-1.6.0.dev0,times-ireland-noco2 +times-ireland-noco2,1-1ts,scip,8.1.0,2023.0,TO,Timeout,3600.0,4005.12,,,,3600.0,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 09:50:12.276983,c4-standard-2,europe-west2-a,48cfc10,times-ireland-noco2-1-1ts,scip-8.1.0,times-ireland-noco2 +times-ireland-noco2,1-1ts,cbc,2.10.11,2023.0,ER,,,336.144,,,,,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 10:54:08.463730,c4-standard-2,europe-west2-a,48cfc10,times-ireland-noco2-1-1ts,cbc-2.10.11,times-ireland-noco2 +OEMOF-v2-invest-optimize-only-gas-and-storage,1-8760ts,gurobi,11.0.0,2023.0,ok,optimal,0.8849032250000164,357.196,34853801.711324126,,,0.1915159225463867,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 10:54:09.495177,c4-standard-2,europe-west2-a,48cfc10,OEMOF-v2-invest-optimize-only-gas-and-storage-1-8760ts,gurobi-11.0.0,OEMOF-v2-invest-optimize-only-gas-and-storage +OEMOF-v2-invest-optimize-only-gas-and-storage,1-8760ts,highs,1.6.0.dev0,2023.0,ok,optimal,0.8738204000037513,364.888,34853801.711324126,,,0.2978863716125488,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 10:54:11.568910,c4-standard-2,europe-west2-a,48cfc10,OEMOF-v2-invest-optimize-only-gas-and-storage-1-8760ts,highs-1.6.0.dev0,OEMOF-v2-invest-optimize-only-gas-and-storage +OEMOF-v2-invest-optimize-only-gas-and-storage,1-8760ts,scip,8.1.0,2023.0,ok,optimal,1.6049453989980975,657.5,34853801.71132404,,,1.160203,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 10:54:13.750935,c4-standard-2,europe-west2-a,48cfc10,OEMOF-v2-invest-optimize-only-gas-and-storage-1-8760ts,scip-8.1.0,OEMOF-v2-invest-optimize-only-gas-and-storage +OEMOF-v2-invest-optimize-only-gas-and-storage,1-8760ts,cbc,2.10.11,2023.0,ok,optimal,0.9369562540014158,256.768,34853801.71132413,,,,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 10:54:16.730113,c4-standard-2,europe-west2-a,48cfc10,OEMOF-v2-invest-optimize-only-gas-and-storage-1-8760ts,cbc-2.10.11,OEMOF-v2-invest-optimize-only-gas-and-storage +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314,73-1h,gurobi,11.0.0,2023.0,ok,optimal,119.84146092300216,294.156,901032.58211796,,,119.75020694732666,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 10:54:18.862603,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314,73-1h,highs,1.6.0.dev0,2023.0,ok,optimal,755.7748742780022,536.116,901032.582563227,,,755.6754925251007,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 10:56:19.540793,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314,73-1h,scip,8.1.0,2023.0,ok,optimal,2052.2013481050017,1251.512,901032.5825639544,,,2052.053348,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 11:08:56.137591,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314,73-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,165.312,,,,3600.0,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 11:43:09.275611,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314 +genx-4_three_zones_w_policies_slack-no_uc,3-1h,gurobi,11.0.0,2023.0,ok,optimal,501.153962027005,487.968,21182.24821932456,,,500.0793550014496,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 12:46:53.563300,c4-standard-2,europe-west2-a,48cfc10,genx-4_three_zones_w_policies_slack-no_uc-3-1h,gurobi-11.0.0,genx-4_three_zones_w_policies_slack-no_uc +genx-4_three_zones_w_policies_slack-no_uc,3-1h,highs,1.6.0.dev0,2023.0,ok,optimal,798.6600880210026,604.408,21182.24821793586,,,797.6840155124664,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 12:55:16.268345,c4-standard-2,europe-west2-a,48cfc10,genx-4_three_zones_w_policies_slack-no_uc-3-1h,highs-1.6.0.dev0,genx-4_three_zones_w_policies_slack-no_uc +genx-4_three_zones_w_policies_slack-no_uc,3-1h,scip,8.1.0,2023.0,ok,optimal,1008.8354965499892,1256.26,21182.24821804184,,,1007.998302,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 13:08:36.422166,c4-standard-2,europe-west2-a,48cfc10,genx-4_three_zones_w_policies_slack-no_uc-3-1h,scip-8.1.0,genx-4_three_zones_w_policies_slack-no_uc +genx-4_three_zones_w_policies_slack-no_uc,3-1h,cbc,2.10.11,2023.0,ok,optimal,694.1311292230093,332.352,21182.2482181,,,,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 13:25:27.097127,c4-standard-2,europe-west2-a,48cfc10,genx-4_three_zones_w_policies_slack-no_uc-3-1h,cbc-2.10.11,genx-4_three_zones_w_policies_slack-no_uc +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332,73-1h,gurobi,11.0.0,2023.0,ok,optimal,3.388925949009717,217.896,238867.47730951916,,,3.165389060974121,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 13:37:02.758317,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332,73-1h,highs,1.6.0.dev0,2023.0,ok,optimal,16.362343130997033,288.836,238867.47730937696,,,16.246681451797485,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 13:37:07.020195,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332,73-1h,scip,8.1.0,2023.0,ok,optimal,37.40157273900695,449.78,238867.47730951925,,,37.296638,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 13:37:24.246028,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332,73-1h,cbc,2.10.11,2023.0,ok,optimal,156.80453103600303,171.104,238867.47730952,,,156.7,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 13:38:02.553081,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332 +pglib_opf_case1803_snem,1803-NA,gurobi,12.0.0,2024.0,TO,Timeout,3600.0,882.52,,,,3600.0,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 13:41:15.306428,c4-standard-2,europe-west2-a,48cfc10,pglib_opf_case1803_snem-1803-NA,gurobi-12.0.0,pglib_opf_case1803_snem +pglib_opf_case1803_snem,1803-NA,highs,1.9.0,2024.0,TO,Timeout,3600.0,955.964,,,,3600.0,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 14:45:00.561297,c4-standard-2,europe-west2-a,48cfc10,pglib_opf_case1803_snem-1803-NA,highs-1.9.0,pglib_opf_case1803_snem +pglib_opf_case1803_snem,1803-NA,scip,9.2.0,2024.0,TO,Timeout,3600.0,1993.728,,,,3600.0,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 15:48:50.617585,c4-standard-2,europe-west2-a,48cfc10,pglib_opf_case1803_snem-1803-NA,scip-9.2.0,pglib_opf_case1803_snem +pglib_opf_case1803_snem,1803-NA,cbc,2.10.12,2024.0,TO,Timeout,3600.0,144.004,,,,3600.0,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 16:52:36.596217,c4-standard-2,europe-west2-a,48cfc10,pglib_opf_case1803_snem-1803-NA,cbc-2.10.12,pglib_opf_case1803_snem +times-ireland-noco2,1-1ts,gurobi,12.0.0,2024.0,ok,optimal,760.3959154990007,1107.832,437542.7677208471,,,757.5298619270325,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 17:56:18.687751,c4-standard-2,europe-west2-a,48cfc10,times-ireland-noco2-1-1ts,gurobi-12.0.0,times-ireland-noco2 +times-ireland-noco2,1-1ts,highs,1.9.0,2024.0,ok,optimal,3538.6565805240098,1264.196,437542.7677193059,,,3534.601442337036,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 18:09:04.814194,c4-standard-2,europe-west2-a,48cfc10,times-ireland-noco2-1-1ts,highs-1.9.0,times-ireland-noco2 +times-ireland-noco2,1-1ts,scip,9.2.0,2024.0,TO,Timeout,3600.0,4006.184,,,,3600.0,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 19:11:52.306773,c4-standard-2,europe-west2-a,48cfc10,times-ireland-noco2-1-1ts,scip-9.2.0,times-ireland-noco2 +times-ireland-noco2,1-1ts,cbc,2.10.12,2024.0,ER,,,318.952,,,,,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 20:15:34.610079,c4-standard-2,europe-west2-a,48cfc10,times-ireland-noco2-1-1ts,cbc-2.10.12,times-ireland-noco2 +OEMOF-v2-invest-optimize-only-gas-and-storage,1-8760ts,gurobi,12.0.0,2024.0,ok,optimal,0.9355939090019092,331.552,34853801.711324126,,,0.203477144241333,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 20:15:35.414983,c4-standard-2,europe-west2-a,48cfc10,OEMOF-v2-invest-optimize-only-gas-and-storage-1-8760ts,gurobi-12.0.0,OEMOF-v2-invest-optimize-only-gas-and-storage +OEMOF-v2-invest-optimize-only-gas-and-storage,1-8760ts,highs,1.9.0,2024.0,ok,optimal,0.8953460420016199,338.244,34853801.711324126,,,0.2897751331329345,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 20:15:37.592551,c4-standard-2,europe-west2-a,48cfc10,OEMOF-v2-invest-optimize-only-gas-and-storage-1-8760ts,highs-1.9.0,OEMOF-v2-invest-optimize-only-gas-and-storage +OEMOF-v2-invest-optimize-only-gas-and-storage,1-8760ts,scip,9.2.0,2024.0,ok,optimal,1.573601451003924,630.872,34853801.71132404,,,1.136133,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 20:15:39.742779,c4-standard-2,europe-west2-a,48cfc10,OEMOF-v2-invest-optimize-only-gas-and-storage-1-8760ts,scip-9.2.0,OEMOF-v2-invest-optimize-only-gas-and-storage +OEMOF-v2-invest-optimize-only-gas-and-storage,1-8760ts,cbc,2.10.12,2024.0,ok,optimal,1.452296920993831,275.156,34853801.71132413,,,,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 20:15:42.677974,c4-standard-2,europe-west2-a,48cfc10,OEMOF-v2-invest-optimize-only-gas-and-storage-1-8760ts,cbc-2.10.12,OEMOF-v2-invest-optimize-only-gas-and-storage +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314,73-1h,gurobi,12.0.0,2024.0,ok,optimal,51.50090348201047,241.924,901032.5825495484,0.0,8.571939230915391e-05,51.403045892715454,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 20:15:45.363356,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314,73-1h,highs,1.9.0,2024.0,ok,optimal,853.4084408740018,641.568,901032.5825632666,1.715799219875242e-13,9.837799690833862e-05,853.2339706420898,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 20:16:37.583394,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314,73-1h,scip,9.2.0,2024.0,ok,optimal,2021.8263153209991,1237.244,901032.5825639544,1.2332840423201111e-16,0.0,2021.675191,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 20:30:51.696113,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314,73-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,147.892,,,,3600.0,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 21:04:34.305188,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314 +genx-4_three_zones_w_policies_slack-no_uc,3-1h,gurobi,12.0.0,2024.0,ok,optimal,526.0967801769875,476.044,21182.24822418104,,,525.072478055954,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 22:08:17.577883,c4-standard-2,europe-west2-a,48cfc10,genx-4_three_zones_w_policies_slack-no_uc-3-1h,gurobi-12.0.0,genx-4_three_zones_w_policies_slack-no_uc +genx-4_three_zones_w_policies_slack-no_uc,3-1h,highs,1.9.0,2024.0,ok,optimal,1013.8421061440022,569.852,21182.248217935965,,,1012.6122019290924,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 22:17:05.640693,c4-standard-2,europe-west2-a,48cfc10,genx-4_three_zones_w_policies_slack-no_uc-3-1h,highs-1.9.0,genx-4_three_zones_w_policies_slack-no_uc +genx-4_three_zones_w_policies_slack-no_uc,3-1h,scip,9.2.0,2024.0,ok,optimal,998.5500708050096,1241.328,21182.24821804184,,,997.708622,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 22:34:01.531826,c4-standard-2,europe-west2-a,48cfc10,genx-4_three_zones_w_policies_slack-no_uc-3-1h,scip-9.2.0,genx-4_three_zones_w_policies_slack-no_uc +genx-4_three_zones_w_policies_slack-no_uc,3-1h,cbc,2.10.12,2024.0,ok,optimal,689.5917238900001,375.812,21182.2482181,,,,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 22:50:42.303455,c4-standard-2,europe-west2-a,48cfc10,genx-4_three_zones_w_policies_slack-no_uc-3-1h,cbc-2.10.12,genx-4_three_zones_w_policies_slack-no_uc +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332,73-1h,gurobi,12.0.0,2024.0,ok,optimal,3.394282316003228,195.592,238867.47730951916,0.0,0.0,3.184986114501953,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 23:02:13.880217,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332,73-1h,highs,1.9.0,2024.0,ok,optimal,33.191203798007336,269.948,238867.47730947056,1.2212453270876722e-13,0.0,32.991087675094604,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 23:02:17.995556,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332,73-1h,scip,9.2.0,2024.0,ok,optimal,36.895316562993685,436.196,238867.47730951925,1.9984014443252818e-15,0.0,36.790735,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 23:02:51.890913,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332,73-1h,cbc,2.10.12,2024.0,ok,optimal,155.0512028640078,156.908,238867.47730952,0.0,,154.76,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 23:03:29.550366,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332 +pglib_opf_case1803_snem,1803-NA,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,630.76,,,,3600.0,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-16 23:10:18.957472,c4-standard-2,europe-west2-a,48cfc10,pglib_opf_case1803_snem-1803-NA,gurobi-13.0.0,pglib_opf_case1803_snem +pglib_opf_case1803_snem,1803-NA,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,3600.0,164.136,,,,3600.0,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-17 00:13:56.918430,c4-standard-2,europe-west2-a,48cfc10,pglib_opf_case1803_snem-1803-NA,highs-hipo-1.12.0-hipo,pglib_opf_case1803_snem +pglib_opf_case1803_snem,1803-NA,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,3600.0,164.236,,,,3600.0,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-17 01:17:38.484890,c4-standard-2,europe-west2-a,48cfc10,pglib_opf_case1803_snem-1803-NA,highs-ipx-1.12.0-hipo,pglib_opf_case1803_snem +pglib_opf_case1803_snem,1803-NA,highs,1.12.0,2025.0,TO,Timeout,3600.0,643.476,,,,3600.0,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-17 02:21:13.652116,c4-standard-2,europe-west2-a,48cfc10,pglib_opf_case1803_snem-1803-NA,highs-1.12.0,pglib_opf_case1803_snem +pglib_opf_case1803_snem,1803-NA,scip,10.0.0,2025.0,TO,Timeout,3600.0,2049.392,,,,3600.0,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-17 03:24:49.160190,c4-standard-2,europe-west2-a,48cfc10,pglib_opf_case1803_snem-1803-NA,scip-10.0.0,pglib_opf_case1803_snem +times-ireland-noco2,1-1ts,gurobi,13.0.0,2025.0,ok,optimal,630.2318835819897,1073.976,437542.7677214298,,,627.4407200813293,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-17 04:28:24.880964,c4-standard-2,europe-west2-a,48cfc10,times-ireland-noco2-1-1ts,gurobi-13.0.0,times-ireland-noco2 +times-ireland-noco2,1-1ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,310.2426616559969,1234.372,437542.76779,,,310.2426616559969,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-17 04:38:58.188955,c4-standard-2,europe-west2-a,48cfc10,times-ireland-noco2-1-1ts,highs-hipo-1.12.0-hipo,times-ireland-noco2 +times-ireland-noco2,1-1ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,325.8606064409978,651.196,437542.76967,,,325.8606064409978,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-17 04:44:09.178789,c4-standard-2,europe-west2-a,48cfc10,times-ireland-noco2-1-1ts,highs-ipx-1.12.0-hipo,times-ireland-noco2 +times-ireland-noco2,1-1ts,highs,1.12.0,2025.0,TO,Timeout,3600.0,873.56,,,,3600.0,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-17 04:49:35.789023,c4-standard-2,europe-west2-a,48cfc10,times-ireland-noco2-1-1ts,highs-1.12.0,times-ireland-noco2 +times-ireland-noco2,1-1ts,scip,10.0.0,2025.0,TO,Timeout,3600.0,4039.996,,,,3600.0,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-17 05:53:10.591391,c4-standard-2,europe-west2-a,48cfc10,times-ireland-noco2-1-1ts,scip-10.0.0,times-ireland-noco2 +OEMOF-v2-invest-optimize-only-gas-and-storage,1-8760ts,gurobi,13.0.0,2025.0,ok,optimal,0.917251364007825,368.164,34853801.711324126,,,0.2009201049804687,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-17 06:56:47.060107,c4-standard-2,europe-west2-a,48cfc10,OEMOF-v2-invest-optimize-only-gas-and-storage-1-8760ts,gurobi-13.0.0,OEMOF-v2-invest-optimize-only-gas-and-storage +OEMOF-v2-invest-optimize-only-gas-and-storage,1-8760ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,13.611033780995058,198.192,34853801.712,,,13.611033780995058,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-17 06:56:49.415676,c4-standard-2,europe-west2-a,48cfc10,OEMOF-v2-invest-optimize-only-gas-and-storage-1-8760ts,highs-hipo-1.12.0-hipo,OEMOF-v2-invest-optimize-only-gas-and-storage +OEMOF-v2-invest-optimize-only-gas-and-storage,1-8760ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,2.959619911009213,163.272,34853801.757,,,2.959619911009213,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-17 06:57:03.786036,c4-standard-2,europe-west2-a,48cfc10,OEMOF-v2-invest-optimize-only-gas-and-storage-1-8760ts,highs-ipx-1.12.0-hipo,OEMOF-v2-invest-optimize-only-gas-and-storage +OEMOF-v2-invest-optimize-only-gas-and-storage,1-8760ts,highs,1.12.0,2025.0,ok,optimal,0.9490983799914828,385.428,34853801.711324126,,,0.3699812889099121,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-17 06:57:07.519683,c4-standard-2,europe-west2-a,48cfc10,OEMOF-v2-invest-optimize-only-gas-and-storage-1-8760ts,highs-1.12.0,OEMOF-v2-invest-optimize-only-gas-and-storage +OEMOF-v2-invest-optimize-only-gas-and-storage,1-8760ts,scip,10.0.0,2025.0,ok,optimal,1.562576110009104,667.556,34853801.71132404,,,1.114724,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-17 06:57:09.764647,c4-standard-2,europe-west2-a,48cfc10,OEMOF-v2-invest-optimize-only-gas-and-storage-1-8760ts,scip-10.0.0,OEMOF-v2-invest-optimize-only-gas-and-storage +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314,73-1h,gurobi,13.0.0,2025.0,ok,optimal,45.14305824099574,264.696,901032.5825359996,0.0,7.662968117287792e-05,45.04965591430664,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-17 06:57:12.713996,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314,73-1h,highs,1.12.0,2025.0,ok,optimal,893.2196914950036,764.992,901032.5825642232,1.5543122344752194e-15,9.983964040583783e-05,893.1048655509949,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-17 06:57:58.744659,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314,73-1h,scip,10.0.0,2025.0,ok,optimal,2007.0365233280168,1267.46,901032.5825639544,1.2332840423201111e-16,0.0,2006.885524,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-17 07:12:52.826757,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon24_Day314 +genx-4_three_zones_w_policies_slack-no_uc,3-1h,gurobi,13.0.0,2025.0,ok,optimal,576.470955894998,500.656,21182.248221536327,,,570.4696340560913,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-17 07:46:20.812764,c4-standard-2,europe-west2-a,48cfc10,genx-4_three_zones_w_policies_slack-no_uc-3-1h,gurobi-13.0.0,genx-4_three_zones_w_policies_slack-no_uc +genx-4_three_zones_w_policies_slack-no_uc,3-1h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,143.57951366098132,337.384,21182.248219,,,143.57951366098132,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-17 07:59:43.899454,c4-standard-2,europe-west2-a,48cfc10,genx-4_three_zones_w_policies_slack-no_uc-3-1h,highs-hipo-1.12.0-hipo,genx-4_three_zones_w_policies_slack-no_uc +genx-4_three_zones_w_policies_slack-no_uc,3-1h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,129.49546981501044,184.232,21182.24822,,,129.49546981501044,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-17 08:02:08.264469,c4-standard-2,europe-west2-a,48cfc10,genx-4_three_zones_w_policies_slack-no_uc-3-1h,highs-ipx-1.12.0-hipo,genx-4_three_zones_w_policies_slack-no_uc +genx-4_three_zones_w_policies_slack-no_uc,3-1h,highs,1.12.0,2025.0,ok,optimal,1010.6828909280013,593.356,21182.248217936463,,,1009.65198802948,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-17 08:04:18.541601,c4-standard-2,europe-west2-a,48cfc10,genx-4_three_zones_w_policies_slack-no_uc-3-1h,highs-1.12.0,genx-4_three_zones_w_policies_slack-no_uc +genx-4_three_zones_w_policies_slack-no_uc,3-1h,scip,10.0.0,2025.0,ok,optimal,1009.214896399004,1266.4,21182.24821804184,,,1008.332066,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-17 08:21:10.860662,c4-standard-2,europe-west2-a,48cfc10,genx-4_three_zones_w_policies_slack-no_uc-3-1h,scip-10.0.0,genx-4_three_zones_w_policies_slack-no_uc +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332,73-1h,gurobi,13.0.0,2025.0,ok,optimal,4.092800198006444,233.216,238867.47730951916,0.0,0.0,3.8400049209594727,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-17 08:38:02.051202,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332,73-1h,highs,1.12.0,2025.0,ok,optimal,28.4091968019784,327.076,238867.47730952944,4.4519943287468784e-14,0.0,28.28203058242798,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-17 08:38:07.056120,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332,73-1h,scip,10.0.0,2025.0,ok,optimal,37.57468908900046,458.98,238867.47730951925,1.9984014443252818e-15,0.0,37.465625,3600.0,benchmark-instance-s-m-00,20251215-run-S-M,2025-12-17 08:38:36.385442,c4-standard-2,europe-west2-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,192.872,,,,3600.0,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-15 17:30:23.573323,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332 +DCOPF-Carolinas_uc_6M,997-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,183.288,,,,3600.0,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-15 18:33:24.162273,c4-standard-2,europe-west8-c,48cfc10,DCOPF-Carolinas_uc_6M-997-1h,glpk-5.0,DCOPF-Carolinas_uc_6M +SWITCH-3zone-toy-stochastic-PySP,3-6ts,glpk,5.0,2020.0,ER,,,125.176,,,,,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-15 19:36:25.099977,c4-standard-2,europe-west8-c,48cfc10,SWITCH-3zone-toy-stochastic-PySP-3-6ts,glpk-5.0,SWITCH-3zone-toy-stochastic-PySP +OEMOF-diesel-genset-nonconvex-investment,1-240ts,glpk,5.0,2020.0,TO,Timeout,3600.0,124.132,,,,3600.0,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-15 19:36:25.531828,c4-standard-2,europe-west8-c,48cfc10,OEMOF-diesel-genset-nonconvex-investment-1-240ts,glpk-5.0,OEMOF-diesel-genset-nonconvex-investment +genx-1_three_zones-no_uc,3-1h,glpk,5.0,2020.0,ok,optimal,400.72542984100073,252.7,17459.93062,,,,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-15 20:39:25.974341,c4-standard-2,europe-west8-c,48cfc10,genx-1_three_zones-no_uc-3-1h,glpk-5.0,genx-1_three_zones-no_uc +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332,73-1h,glpk,5.0,2020.0,ok,unknown,341.2093625239995,135.808,238370.8541,,,,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-15 20:46:07.125279,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332,73-1h,glpk,5.0,2020.0,ok,unknown,168.08179012799883,130.688,222003.3067,,,,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-15 20:51:48.749080,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332,73-1h,gurobi,10.0.0,2022.0,TO,Timeout,3600.0,676.748,,,,3600.0,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-15 20:55:25.153058,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332,73-1h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1168.788,,,,3600.0,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-15 21:58:26.378570,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332,73-1h,scip,8.0.3,2022.0,TO,Timeout,3600.0,1804.736,,,,3600.0,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-15 23:01:26.926142,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332 +DCOPF-Carolinas_uc_6M,997-1h,gurobi,10.0.0,2022.0,ok,optimal,220.7642090289992,790.74,9293729.207042484,,,219.75599002838132,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 00:04:27.402341,c4-standard-2,europe-west8-c,48cfc10,DCOPF-Carolinas_uc_6M-997-1h,gurobi-10.0.0,DCOPF-Carolinas_uc_6M +DCOPF-Carolinas_uc_6M,997-1h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,3434.084,,,,3600.0,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 00:08:09.656334,c4-standard-2,europe-west8-c,48cfc10,DCOPF-Carolinas_uc_6M-997-1h,highs-1.5.0.dev0,DCOPF-Carolinas_uc_6M +DCOPF-Carolinas_uc_6M,997-1h,scip,8.0.3,2022.0,ok,optimal,3011.315781391,2553.436,9293847.03960514,,,3010.065682,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 01:11:10.513420,c4-standard-2,europe-west8-c,48cfc10,DCOPF-Carolinas_uc_6M-997-1h,scip-8.0.3,DCOPF-Carolinas_uc_6M +SWITCH-3zone-toy-stochastic-PySP,3-6ts,gurobi,10.0.0,2022.0,ok,optimal,0.2017625030021008,159.248,134640056.6600334,,,0.0031819343566894,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 02:01:23.658159,c4-standard-2,europe-west8-c,48cfc10,SWITCH-3zone-toy-stochastic-PySP-3-6ts,gurobi-10.0.0,SWITCH-3zone-toy-stochastic-PySP +SWITCH-3zone-toy-stochastic-PySP,3-6ts,highs,1.5.0.dev0,2022.0,ok,optimal,0.0070952089990896,147.644,134640056.66003343,,,0.0021116733551025,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 02:01:24.378309,c4-standard-2,europe-west8-c,48cfc10,SWITCH-3zone-toy-stochastic-PySP-3-6ts,highs-1.5.0.dev0,SWITCH-3zone-toy-stochastic-PySP +SWITCH-3zone-toy-stochastic-PySP,3-6ts,scip,8.0.3,2022.0,ok,optimal,0.0127426690014544,161.012,134640056.66003346,,,0.006605,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 02:01:24.904654,c4-standard-2,europe-west8-c,48cfc10,SWITCH-3zone-toy-stochastic-PySP-3-6ts,scip-8.0.3,SWITCH-3zone-toy-stochastic-PySP +OEMOF-diesel-genset-nonconvex-investment,1-240ts,gurobi,10.0.0,2022.0,ok,optimal,5.148312432000239,180.2,1225.3609806257118,,,5.121219873428345,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 02:01:25.424754,c4-standard-2,europe-west8-c,48cfc10,OEMOF-diesel-genset-nonconvex-investment-1-240ts,gurobi-10.0.0,OEMOF-diesel-genset-nonconvex-investment +OEMOF-diesel-genset-nonconvex-investment,1-240ts,highs,1.5.0.dev0,2022.0,ok,optimal,42.90690881900082,212.58,1225.480940521999,,,42.880640268325806,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 02:01:31.115125,c4-standard-2,europe-west8-c,48cfc10,OEMOF-diesel-genset-nonconvex-investment-1-240ts,highs-1.5.0.dev0,OEMOF-diesel-genset-nonconvex-investment +OEMOF-diesel-genset-nonconvex-investment,1-240ts,scip,8.0.3,2022.0,ok,optimal,13.164852289999544,245.46,1225.360980625712,,,13.140221,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 02:02:14.569097,c4-standard-2,europe-west8-c,48cfc10,OEMOF-diesel-genset-nonconvex-investment-1-240ts,scip-8.0.3,OEMOF-diesel-genset-nonconvex-investment +genx-1_three_zones-no_uc,3-1h,gurobi,10.0.0,2022.0,ok,optimal,169.7090329019993,447.932,17459.930594140264,,,168.9232940673828,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 02:02:28.280151,c4-standard-2,europe-west8-c,48cfc10,genx-1_three_zones-no_uc-3-1h,gurobi-10.0.0,genx-1_three_zones-no_uc +genx-1_three_zones-no_uc,3-1h,highs,1.5.0.dev0,2022.0,ok,optimal,152.6525440229998,508.568,17459.93059173212,,,151.92344212532043,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 02:05:19.110466,c4-standard-2,europe-west8-c,48cfc10,genx-1_three_zones-no_uc-3-1h,highs-1.5.0.dev0,genx-1_three_zones-no_uc +genx-1_three_zones-no_uc,3-1h,scip,8.0.3,2022.0,ok,optimal,890.5224658070001,1047.26,17459.930591731896,,,889.836964,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 02:07:52.877350,c4-standard-2,europe-west8-c,48cfc10,genx-1_three_zones-no_uc-3-1h,scip-8.0.3,genx-1_three_zones-no_uc +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332,73-1h,gurobi,10.0.0,2022.0,ok,optimal,4.923913450002146,201.568,238370.8540669525,,,4.714142084121704,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 02:25:45.843431,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332,73-1h,highs,1.5.0.dev0,2022.0,ok,optimal,30.62411454199901,304.332,238370.85406694643,,,30.55979824066162,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 02:25:51.351895,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332,73-1h,scip,8.0.3,2022.0,ok,optimal,15.066943703001016,364.504,238370.8540722172,,,14.986393,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 02:26:22.546980,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332,73-1h,gurobi,10.0.0,2022.0,ok,optimal,1.981653433998872,190.828,222003.3003480607,,,1.9516808986663816,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 02:26:38.212185,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332,73-1h,highs,1.5.0.dev0,2022.0,ok,optimal,18.340364676001627,391.16,222003.30673421384,,,18.300694942474365,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 02:26:40.740762,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332,73-1h,scip,8.0.3,2022.0,ok,optimal,62.851612370999646,411.556,222003.30673421407,,,62.817597,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 02:26:59.623609,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332,73-1h,gurobi,11.0.0,2023.0,TO,Timeout,3600.0,678.224,,,,3600.0,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 02:30:56.324711,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332,73-1h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,1217.928,,,,3600.0,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 03:33:56.844239,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332,73-1h,scip,8.1.0,2023.0,TO,Timeout,3600.0,1811.528,,,,3600.0,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 04:36:57.185403,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332,73-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,224.4,,,,3600.0,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 05:39:57.056064,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332 +DCOPF-Carolinas_uc_6M,997-1h,gurobi,11.0.0,2023.0,ok,optimal,123.91760970400355,773.78,9293950.544169312,,,123.00904488563538,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 06:42:58.174023,c4-standard-2,europe-west8-c,48cfc10,DCOPF-Carolinas_uc_6M-997-1h,gurobi-11.0.0,DCOPF-Carolinas_uc_6M +DCOPF-Carolinas_uc_6M,997-1h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,4148.156,,,,3600.0,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 06:45:03.639838,c4-standard-2,europe-west8-c,48cfc10,DCOPF-Carolinas_uc_6M-997-1h,highs-1.6.0.dev0,DCOPF-Carolinas_uc_6M +DCOPF-Carolinas_uc_6M,997-1h,scip,8.1.0,2023.0,ok,optimal,3010.775553442996,2568.512,9293847.03960514,,,3009.670787,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 07:48:04.100097,c4-standard-2,europe-west8-c,48cfc10,DCOPF-Carolinas_uc_6M-997-1h,scip-8.1.0,DCOPF-Carolinas_uc_6M +DCOPF-Carolinas_uc_6M,997-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,214.736,,,,3600.0,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 08:38:16.771986,c4-standard-2,europe-west8-c,48cfc10,DCOPF-Carolinas_uc_6M-997-1h,cbc-2.10.11,DCOPF-Carolinas_uc_6M +SWITCH-3zone-toy-stochastic-PySP,3-6ts,gurobi,11.0.0,2023.0,ok,optimal,0.1333216380007797,169.26,134640056.6600334,,,0.0031280517578125,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 09:41:17.091504,c4-standard-2,europe-west8-c,48cfc10,SWITCH-3zone-toy-stochastic-PySP-3-6ts,gurobi-11.0.0,SWITCH-3zone-toy-stochastic-PySP +SWITCH-3zone-toy-stochastic-PySP,3-6ts,highs,1.6.0.dev0,2023.0,ok,optimal,0.0069390579956234,158.364,134640056.66003343,,,0.0022418498992919,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 09:41:17.853490,c4-standard-2,europe-west8-c,48cfc10,SWITCH-3zone-toy-stochastic-PySP-3-6ts,highs-1.6.0.dev0,SWITCH-3zone-toy-stochastic-PySP +SWITCH-3zone-toy-stochastic-PySP,3-6ts,scip,8.1.0,2023.0,ok,optimal,0.0123579289938788,171.36,134640056.66003346,,,0.006542,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 09:41:18.468772,c4-standard-2,europe-west8-c,48cfc10,SWITCH-3zone-toy-stochastic-PySP-3-6ts,scip-8.1.0,SWITCH-3zone-toy-stochastic-PySP +SWITCH-3zone-toy-stochastic-PySP,3-6ts,cbc,2.10.11,2023.0,ok,optimal,0.034051531998557,156.732,134640056.6600334,,,0.02,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 09:41:19.088620,c4-standard-2,europe-west8-c,48cfc10,SWITCH-3zone-toy-stochastic-PySP-3-6ts,cbc-2.10.11,SWITCH-3zone-toy-stochastic-PySP +OEMOF-diesel-genset-nonconvex-investment,1-240ts,gurobi,11.0.0,2023.0,ok,optimal,4.355592134001199,187.684,1225.3609806257225,,,4.332168102264404,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 09:41:19.731588,c4-standard-2,europe-west8-c,48cfc10,OEMOF-diesel-genset-nonconvex-investment-1-240ts,gurobi-11.0.0,OEMOF-diesel-genset-nonconvex-investment +OEMOF-diesel-genset-nonconvex-investment,1-240ts,highs,1.6.0.dev0,2023.0,ok,optimal,45.26459260400589,236.696,1225.480940521999,,,45.23970866203308,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 09:41:24.717378,c4-standard-2,europe-west8-c,48cfc10,OEMOF-diesel-genset-nonconvex-investment-1-240ts,highs-1.6.0.dev0,OEMOF-diesel-genset-nonconvex-investment +OEMOF-diesel-genset-nonconvex-investment,1-240ts,scip,8.1.0,2023.0,ok,optimal,13.183650771999964,255.816,1225.360980625712,,,13.158921,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 09:42:10.629609,c4-standard-2,europe-west8-c,48cfc10,OEMOF-diesel-genset-nonconvex-investment-1-240ts,scip-8.1.0,OEMOF-diesel-genset-nonconvex-investment +OEMOF-diesel-genset-nonconvex-investment,1-240ts,cbc,2.10.11,2023.0,ok,optimal,14.922486262999882,161.852,1225.36098063,,,14.87,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 09:42:24.466236,c4-standard-2,europe-west8-c,48cfc10,OEMOF-diesel-genset-nonconvex-investment-1-240ts,cbc-2.10.11,OEMOF-diesel-genset-nonconvex-investment +genx-1_three_zones-no_uc,3-1h,gurobi,11.0.0,2023.0,ok,optimal,182.80404270799767,448.04,17459.93059456835,,,182.1546041965485,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 09:42:40.029444,c4-standard-2,europe-west8-c,48cfc10,genx-1_three_zones-no_uc-3-1h,gurobi-11.0.0,genx-1_three_zones-no_uc +genx-1_three_zones-no_uc,3-1h,highs,1.6.0.dev0,2023.0,ok,optimal,151.18653660899872,521.26,17459.93059173212,,,150.55737328529358,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 09:45:43.952517,c4-standard-2,europe-west8-c,48cfc10,genx-1_three_zones-no_uc-3-1h,highs-1.6.0.dev0,genx-1_three_zones-no_uc +genx-1_three_zones-no_uc,3-1h,scip,8.1.0,2023.0,ok,optimal,890.3191667200008,1048.924,17459.930591731896,,,889.750806,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 09:48:16.232765,c4-standard-2,europe-west8-c,48cfc10,genx-1_three_zones-no_uc-3-1h,scip-8.1.0,genx-1_three_zones-no_uc +genx-1_three_zones-no_uc,3-1h,cbc,2.10.11,2023.0,ok,optimal,126.7106201209972,301.944,17459.93059173,,,,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 10:03:07.851582,c4-standard-2,europe-west8-c,48cfc10,genx-1_three_zones-no_uc-3-1h,cbc-2.10.11,genx-1_three_zones-no_uc +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332,73-1h,gurobi,11.0.0,2023.0,ok,optimal,4.280984229000751,208.916,238370.8540669524,,,4.071359872817993,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 10:05:15.648243,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332,73-1h,highs,1.6.0.dev0,2023.0,ok,optimal,29.312108163998342,322.296,238370.85406694643,,,29.27223038673401,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 10:05:20.575211,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332,73-1h,scip,8.1.0,2023.0,ok,optimal,14.90827125999931,375.2,238370.8540722172,,,14.849242,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 10:05:50.546372,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332,73-1h,cbc,2.10.11,2023.0,ok,optimal,483.4017987949992,161.916,238370.85406695,,,483.34,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 10:06:06.138719,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332,73-1h,gurobi,11.0.0,2023.0,ok,optimal,2.771833238002728,201.628,222003.305088556,,,2.5803959369659424,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 10:14:10.189314,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332,73-1h,highs,1.6.0.dev0,2023.0,ok,optimal,17.67258357100218,400.76,222003.30673421384,,,17.647238969802856,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 10:14:13.597720,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332,73-1h,scip,8.1.0,2023.0,ok,optimal,63.05727545500122,411.428,222003.30673421407,,,63.021772,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 10:14:31.920913,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332,73-1h,cbc,2.10.11,2023.0,ok,optimal,60.62077792699711,159.488,222003.30673421,,,60.58,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 10:15:35.650301,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332,73-1h,gurobi,12.0.0,2024.0,TO,Timeout,3600.0,701.092,,,,3600.0,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 10:17:07.044467,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332,73-1h,highs,1.9.0,2024.0,TO,Timeout,3600.0,1306.584,,,,3600.0,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 11:20:07.593840,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332,73-1h,scip,9.2.0,2024.0,TO,Timeout,3600.0,1794.688,,,,3600.0,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 12:23:07.865704,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332,73-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,206.696,,,,3600.0,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 13:26:08.631824,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332 +DCOPF-Carolinas_uc_6M,997-1h,gurobi,12.0.0,2024.0,ok,optimal,213.3421070049953,728.216,9293888.655730247,0.0,9.97359661031243e-05,212.4834561347961,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 14:29:10.015389,c4-standard-2,europe-west8-c,48cfc10,DCOPF-Carolinas_uc_6M-997-1h,gurobi-12.0.0,DCOPF-Carolinas_uc_6M +DCOPF-Carolinas_uc_6M,997-1h,highs,1.9.0,2024.0,TO,Timeout,3600.0,2979.568,,,,3600.0,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 14:32:44.902168,c4-standard-2,europe-west8-c,48cfc10,DCOPF-Carolinas_uc_6M-997-1h,highs-1.9.0,DCOPF-Carolinas_uc_6M +DCOPF-Carolinas_uc_6M,997-1h,scip,9.2.0,2024.0,ok,optimal,3019.2842143610037,2561.084,9293847.03960514,1.0913936421275139e-10,9.803835986456303e-05,3018.177159,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 15:35:46.001073,c4-standard-2,europe-west8-c,48cfc10,DCOPF-Carolinas_uc_6M-997-1h,scip-9.2.0,DCOPF-Carolinas_uc_6M +DCOPF-Carolinas_uc_6M,997-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,197.1,,,,3600.0,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 16:26:07.166029,c4-standard-2,europe-west8-c,48cfc10,DCOPF-Carolinas_uc_6M-997-1h,cbc-2.10.12,DCOPF-Carolinas_uc_6M +SWITCH-3zone-toy-stochastic-PySP,3-6ts,gurobi,12.0.0,2024.0,ok,optimal,0.2270428759948117,153.864,134640056.6600334,0.0,0.0,0.0032219886779785,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 17:29:08.259188,c4-standard-2,europe-west8-c,48cfc10,SWITCH-3zone-toy-stochastic-PySP-3-6ts,gurobi-12.0.0,SWITCH-3zone-toy-stochastic-PySP +SWITCH-3zone-toy-stochastic-PySP,3-6ts,highs,1.9.0,2024.0,ok,optimal,0.0074371700029587,142.58,134640056.66003343,0.0,0.0,0.0023629665374755,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 17:29:08.923120,c4-standard-2,europe-west8-c,48cfc10,SWITCH-3zone-toy-stochastic-PySP-3-6ts,highs-1.9.0,SWITCH-3zone-toy-stochastic-PySP +SWITCH-3zone-toy-stochastic-PySP,3-6ts,scip,9.2.0,2024.0,ok,optimal,0.0126720609987387,155.892,134640056.66003346,0.0,0.0,0.0067269999999999,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 17:29:09.355708,c4-standard-2,europe-west8-c,48cfc10,SWITCH-3zone-toy-stochastic-PySP-3-6ts,scip-9.2.0,SWITCH-3zone-toy-stochastic-PySP +SWITCH-3zone-toy-stochastic-PySP,3-6ts,cbc,2.10.12,2024.0,ok,optimal,0.0372920920053729,141.76,134640056.6600334,0.0,,0.02,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 17:29:09.797612,c4-standard-2,europe-west8-c,48cfc10,SWITCH-3zone-toy-stochastic-PySP-3-6ts,cbc-2.10.12,SWITCH-3zone-toy-stochastic-PySP +OEMOF-diesel-genset-nonconvex-investment,1-240ts,gurobi,12.0.0,2024.0,ok,optimal,7.911353514005896,175.804,1225.3609806257114,0.0,9.99560445677694e-05,7.887282133102417,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 17:29:10.257335,c4-standard-2,europe-west8-c,48cfc10,OEMOF-diesel-genset-nonconvex-investment-1-240ts,gurobi-12.0.0,OEMOF-diesel-genset-nonconvex-investment +OEMOF-diesel-genset-nonconvex-investment,1-240ts,highs,1.9.0,2024.0,ok,optimal,28.309008730997448,196.32,1225.4549137050722,0.0,9.96892456242816e-05,28.282825231552124,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 17:29:18.630515,c4-standard-2,europe-west8-c,48cfc10,OEMOF-diesel-genset-nonconvex-investment-1-240ts,highs-1.9.0,OEMOF-diesel-genset-nonconvex-investment +OEMOF-diesel-genset-nonconvex-investment,1-240ts,scip,9.2.0,2024.0,ok,optimal,13.176997650996782,240.316,1225.360980625712,4.218847493575595e-15,9.88370037681696e-05,13.152139,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 17:29:47.401256,c4-standard-2,europe-west8-c,48cfc10,OEMOF-diesel-genset-nonconvex-investment-1-240ts,scip-9.2.0,OEMOF-diesel-genset-nonconvex-investment +OEMOF-diesel-genset-nonconvex-investment,1-240ts,cbc,2.10.12,2024.0,ok,optimal,15.019448348000878,151.372,1225.36098063,0.0,,14.95,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 17:30:01.043395,c4-standard-2,europe-west8-c,48cfc10,OEMOF-diesel-genset-nonconvex-investment-1-240ts,cbc-2.10.12,OEMOF-diesel-genset-nonconvex-investment +genx-1_three_zones-no_uc,3-1h,gurobi,12.0.0,2024.0,ok,optimal,120.65218431501124,427.268,17459.930592743152,,,120.00944805145264,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 17:30:16.514397,c4-standard-2,europe-west8-c,48cfc10,genx-1_three_zones-no_uc-3-1h,gurobi-12.0.0,genx-1_three_zones-no_uc +genx-1_three_zones-no_uc,3-1h,highs,1.9.0,2024.0,ok,optimal,128.2960630699963,494.832,17459.93059173206,,,127.51222848892212,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 17:32:18.526301,c4-standard-2,europe-west8-c,48cfc10,genx-1_three_zones-no_uc-3-1h,highs-1.9.0,genx-1_three_zones-no_uc +genx-1_three_zones-no_uc,3-1h,scip,9.2.0,2024.0,ok,optimal,891.4639195759955,1029.316,17459.930591731896,,,890.894725,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 17:34:28.195007,c4-standard-2,europe-west8-c,48cfc10,genx-1_three_zones-no_uc-3-1h,scip-9.2.0,genx-1_three_zones-no_uc +genx-1_three_zones-no_uc,3-1h,cbc,2.10.12,2024.0,ok,optimal,127.41836208800667,343.544,17459.93059173,,,,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 17:49:21.222265,c4-standard-2,europe-west8-c,48cfc10,genx-1_three_zones-no_uc-3-1h,cbc-2.10.12,genx-1_three_zones-no_uc +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332,73-1h,gurobi,12.0.0,2024.0,ok,optimal,3.28265303200169,193.16,238370.85406695248,0.0,0.0,3.0648088455200195,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 17:51:29.985029,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332,73-1h,highs,1.9.0,2024.0,ok,optimal,29.21845667700109,287.124,238370.85406695056,7.266914343001024e-14,0.0,29.145914316177368,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 17:51:33.789576,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332,73-1h,scip,9.2.0,2024.0,ok,optimal,14.967520887992578,359.732,238370.8540722172,0.0,1.843381744761681e-05,14.907969,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 17:52:03.518042,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332,73-1h,cbc,2.10.12,2024.0,ok,optimal,484.3648503049917,155.504,238370.85406695,0.0,,484.24,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 17:52:19.020549,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332,73-1h,gurobi,12.0.0,2024.0,ok,optimal,2.7017198679968715,186.108,222003.30673421395,0.0,3.932891480518886e-16,2.525643110275269,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 18:00:23.878140,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332,73-1h,highs,1.9.0,2024.0,ok,optimal,18.263488163996957,437.1,222003.3067342134,4.1744385725905886e-14,0.0,18.21958565711975,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 18:00:27.074259,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332,73-1h,scip,9.2.0,2024.0,ok,optimal,62.682463887002086,406.876,222003.30673421407,0.0,0.0,62.647076,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 18:00:45.819481,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332,73-1h,cbc,2.10.12,2024.0,ok,optimal,60.734407237003325,146.74,222003.30673421,0.0,,60.65,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 18:01:49.011209,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332,73-1h,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,736.46,,,,3600.0,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 18:03:18.869715,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332,73-1h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1420.884,,,,3600.0,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 19:06:20.049847,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332,73-1h,scip,10.0.0,2025.0,TO,Timeout,3600.0,1821.168,,,,3600.0,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 20:09:21.358928,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day332 +DCOPF-Carolinas_uc_6M,997-1h,gurobi,13.0.0,2025.0,ok,optimal,221.73801885799912,805.26,9293841.830767842,0.0,9.996984334041578e-05,220.8424370288849,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 21:12:22.933683,c4-standard-2,europe-west8-c,48cfc10,DCOPF-Carolinas_uc_6M-997-1h,gurobi-13.0.0,DCOPF-Carolinas_uc_6M +DCOPF-Carolinas_uc_6M,997-1h,highs,1.12.0,2025.0,TO,Timeout,3600.0,2866.468,,,,3600.0,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 21:16:06.321646,c4-standard-2,europe-west8-c,48cfc10,DCOPF-Carolinas_uc_6M-997-1h,highs-1.12.0,DCOPF-Carolinas_uc_6M +DCOPF-Carolinas_uc_6M,997-1h,scip,10.0.0,2025.0,ok,optimal,3016.389615742999,2570.284,9293847.03960514,1.0913936421275139e-10,9.803835986456303e-05,3015.247577,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 22:19:07.435403,c4-standard-2,europe-west8-c,48cfc10,DCOPF-Carolinas_uc_6M-997-1h,scip-10.0.0,DCOPF-Carolinas_uc_6M +SWITCH-3zone-toy-stochastic-PySP,3-6ts,gurobi,13.0.0,2025.0,ok,optimal,0.1634574729978339,182.06,134640056.6600334,0.0,0.0,0.0030062198638916,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 23:09:25.806860,c4-standard-2,europe-west8-c,48cfc10,SWITCH-3zone-toy-stochastic-PySP-3-6ts,gurobi-13.0.0,SWITCH-3zone-toy-stochastic-PySP +SWITCH-3zone-toy-stochastic-PySP,3-6ts,highs,1.12.0,2025.0,ok,optimal,0.0097743710066424,170.052,134640056.66003343,0.0,0.0,0.0047755241394042,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 23:09:26.606351,c4-standard-2,europe-west8-c,48cfc10,SWITCH-3zone-toy-stochastic-PySP-3-6ts,highs-1.12.0,SWITCH-3zone-toy-stochastic-PySP +SWITCH-3zone-toy-stochastic-PySP,3-6ts,scip,10.0.0,2025.0,ok,optimal,0.0129988620028598,182.376,134640056.66003346,0.0,0.0,0.006657,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 23:09:27.227342,c4-standard-2,europe-west8-c,48cfc10,SWITCH-3zone-toy-stochastic-PySP-3-6ts,scip-10.0.0,SWITCH-3zone-toy-stochastic-PySP +OEMOF-diesel-genset-nonconvex-investment,1-240ts,gurobi,13.0.0,2025.0,ok,optimal,15.82257642399054,222.028,1225.360980625714,0.0,9.776751903014411e-05,15.796075105667114,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 23:09:27.860500,c4-standard-2,europe-west8-c,48cfc10,OEMOF-diesel-genset-nonconvex-investment-1-240ts,gurobi-13.0.0,OEMOF-diesel-genset-nonconvex-investment +OEMOF-diesel-genset-nonconvex-investment,1-240ts,highs,1.12.0,2025.0,ok,optimal,33.19320287001028,222.144,1225.461653772261,1.177425677187888e-10,9.990017116023649e-05,33.16791868209839,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 23:09:44.336901,c4-standard-2,europe-west8-c,48cfc10,OEMOF-diesel-genset-nonconvex-investment-1-240ts,highs-1.12.0,OEMOF-diesel-genset-nonconvex-investment +OEMOF-diesel-genset-nonconvex-investment,1-240ts,scip,10.0.0,2025.0,ok,optimal,13.19393124600174,267.092,1225.360980625712,4.218847493575595e-15,9.88370037681696e-05,13.166655,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 23:10:18.179954,c4-standard-2,europe-west8-c,48cfc10,OEMOF-diesel-genset-nonconvex-investment-1-240ts,scip-10.0.0,OEMOF-diesel-genset-nonconvex-investment +genx-1_three_zones-no_uc,3-1h,gurobi,13.0.0,2025.0,ok,optimal,127.02004440399467,456.536,17459.930593410314,,,126.3975579738617,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 23:10:32.037051,c4-standard-2,europe-west8-c,48cfc10,genx-1_three_zones-no_uc-3-1h,gurobi-13.0.0,genx-1_three_zones-no_uc +genx-1_three_zones-no_uc,3-1h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,30.302177289006067,279.024,17459.930592,,,30.302177289006067,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 23:12:40.271083,c4-standard-2,europe-west8-c,48cfc10,genx-1_three_zones-no_uc-3-1h,highs-hipo-1.12.0-hipo,genx-1_three_zones-no_uc +genx-1_three_zones-no_uc,3-1h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,47.22999958100263,164.956,17459.930593,,,47.22999958100263,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 23:13:11.194449,c4-standard-2,europe-west8-c,48cfc10,genx-1_three_zones-no_uc-3-1h,highs-ipx-1.12.0-hipo,genx-1_three_zones-no_uc +genx-1_three_zones-no_uc,3-1h,highs,1.12.0,2025.0,ok,optimal,127.2534609830036,525.236,17459.930591732253,,,126.58934044837952,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 23:13:59.053734,c4-standard-2,europe-west8-c,48cfc10,genx-1_three_zones-no_uc-3-1h,highs-1.12.0,genx-1_three_zones-no_uc +genx-1_three_zones-no_uc,3-1h,scip,10.0.0,2025.0,ok,optimal,891.9530831680022,1060.424,17459.930591731896,,,891.353682,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 23:19:08.310820,c4-standard-2,europe-west8-c,48cfc10,genx-1_three_zones-no_uc-3-1h,scip-10.0.0,genx-1_three_zones-no_uc +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332,73-1h,gurobi,13.0.0,2025.0,ok,optimal,1.551293552009156,219.852,238370.8540669524,0.0,0.0,1.371981859207153,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 23:34:01.673137,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332,73-1h,highs,1.12.0,2025.0,ok,optimal,23.912098890010384,334.068,238370.8540669502,5.403308390564106e-13,0.0,23.867517948150635,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 23:34:03.900572,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332,73-1h,scip,10.0.0,2025.0,ok,optimal,14.980284214994754,385.384,238370.8540722172,0.0,1.843381744761681e-05,14.916783,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 23:34:28.478486,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332,73-1h,gurobi,13.0.0,2025.0,ok,optimal,1.9905897519929567,210.464,222003.30673421395,0.0,5.243855307358516e-16,1.966108083724976,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 23:34:44.158630,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332,73-1h,highs,1.12.0,2025.0,ok,optimal,16.14904199600278,316.016,222003.30673421387,7.771561172376097e-16,4.0670256775337926e-05,16.119792222976685,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 23:34:46.799132,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332,73-1h,scip,10.0.0,2025.0,ok,optimal,63.14429511099297,431.636,222003.30673421407,0.0,0.0,63.106051,3600.0,benchmark-instance-s-m-07,20251215-run-S-M,2025-12-16 23:35:03.606681,c4-standard-2,europe-west8-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day332 +genx-8_three_zones_w_colocated_VRE_storage_electrolyzers,3-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,241.388,,,,3600.0,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-15 17:31:40.225597,c4-standard-2,us-west3-a,48cfc10,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers-3-1h,glpk-5.0,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,145.972,,,,3600.0,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-15 18:35:09.033320,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29 +SWITCH-hydrogen,3-6ts,glpk,5.0,2020.0,ER,,,125.692,,,,,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-15 19:38:37.223394,c4-standard-2,us-west3-a,48cfc10,SWITCH-hydrogen-3-6ts,glpk-5.0,SWITCH-hydrogen +OEMOF-house-with-nonconvex-investment,1-365ts,glpk,5.0,2020.0,TO,Timeout,3600.0,123.292,,,,3600.0,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-15 19:38:37.721032,c4-standard-2,us-west3-a,48cfc10,OEMOF-house-with-nonconvex-investment-1-365ts,glpk-5.0,OEMOF-house-with-nonconvex-investment +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314,73-1h,glpk,5.0,2020.0,ok,unknown,1862.678395445,606.088,289911.8718,,,,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-15 20:42:07.195777,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314 +pypsa-power+ely+battery-ucgas-mod,1-1h,glpk,5.0,2020.0,ok,optimal,184.11380408399964,301.328,79990723060.0,,,,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-15 21:13:10.368571,c4-standard-2,us-west3-a,48cfc10,pypsa-power+ely+battery-ucgas-mod-1-1h,glpk-5.0,pypsa-power+ely+battery-ucgas-mod +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332,73-1h,glpk,5.0,2020.0,ok,unknown,245.4936126020002,133.256,221968.1041,,,,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-15 21:16:14.963400,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332 +genx-7_three_zones_w_colocated_VRE_storage,3-24h,glpk,5.0,2020.0,ok,unknown,0.6647408099997847,128.228,443334.4306,,,,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-15 21:20:20.934400,c4-standard-2,us-west3-a,48cfc10,genx-7_three_zones_w_colocated_VRE_storage-3-24h,glpk-5.0,genx-7_three_zones_w_colocated_VRE_storage +times-etimeseu-france-elec+heat-co2-single_stage,1-64ts,glpk,5.0,2020.0,warning,unknown,0.0056715199989412,127.088,,,,,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-15 21:20:22.077501,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-co2-single_stage-1-64ts,glpk-5.0,times-etimeseu-france-elec+heat-co2-single_stage +times-etimeseu-france-elec+heat-single_stage,1-64ts,glpk,5.0,2020.0,warning,unknown,0.0050969129988516,126.792,,,,,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-15 21:20:22.551854,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-single_stage-1-64ts,glpk-5.0,times-etimeseu-france-elec+heat-single_stage +temoa-utopia,1-6ts,glpk,5.0,2020.0,ER,,,126.608,,,,,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-15 21:20:23.021245,c4-standard-2,us-west3-a,48cfc10,temoa-utopia-1-6ts,glpk-5.0,temoa-utopia +genx-8_three_zones_w_colocated_VRE_storage_electrolyzers,3-1h,gurobi,10.0.0,2022.0,ok,optimal,793.0518377070002,916.316,21204230232888.88,,,791.5732378959656,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-15 21:21:08.691834,c4-standard-2,us-west3-a,48cfc10,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers-3-1h,gurobi-10.0.0,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers +genx-8_three_zones_w_colocated_VRE_storage_electrolyzers,3-1h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,2714.268,,,,3600.0,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-15 21:37:51.958541,c4-standard-2,us-west3-a,48cfc10,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers-3-1h,highs-1.5.0.dev0,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers +genx-8_three_zones_w_colocated_VRE_storage_electrolyzers,3-1h,scip,8.0.3,2022.0,TO,Timeout,3600.0,2096.776,,,,3600.0,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-15 22:41:20.655891,c4-standard-2,us-west3-a,48cfc10,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers-3-1h,scip-8.0.3,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29,73-1h,gurobi,10.0.0,2022.0,ok,optimal,878.6581304889987,437.736,2086569.4765676323,,,878.165689945221,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-15 23:44:49.597528,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29,73-1h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,833.892,,,,3600.0,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-15 23:59:29.124676,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29,73-1h,scip,8.0.3,2022.0,TO,Timeout,3600.0,1699.74,,,,3600.0,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 01:02:58.465599,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29 +SWITCH-hydrogen,3-6ts,gurobi,10.0.0,2022.0,ok,optimal,0.298988949998602,157.696,188714938.7949839,,,0.0058708190917968,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:06:27.685611,c4-standard-2,us-west3-a,48cfc10,SWITCH-hydrogen-3-6ts,gurobi-10.0.0,SWITCH-hydrogen +SWITCH-hydrogen,3-6ts,highs,1.5.0.dev0,2022.0,ok,optimal,0.0120651840006758,148.436,188714938.79498395,,,0.003939151763916,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:06:28.580581,c4-standard-2,us-west3-a,48cfc10,SWITCH-hydrogen-3-6ts,highs-1.5.0.dev0,SWITCH-hydrogen +SWITCH-hydrogen,3-6ts,scip,8.0.3,2022.0,ok,optimal,0.0204061029980948,162.4,188714938.79498383,,,0.012097,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:06:29.178468,c4-standard-2,us-west3-a,48cfc10,SWITCH-hydrogen-3-6ts,scip-8.0.3,SWITCH-hydrogen +OEMOF-house-with-nonconvex-investment,1-365ts,gurobi,10.0.0,2022.0,ok,optimal,1.6668174049991649,174.124,10566.886465925116,,,1.6492900848388672,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:06:29.785820,c4-standard-2,us-west3-a,48cfc10,OEMOF-house-with-nonconvex-investment-1-365ts,gurobi-10.0.0,OEMOF-house-with-nonconvex-investment +OEMOF-house-with-nonconvex-investment,1-365ts,highs,1.5.0.dev0,2022.0,ok,optimal,5.455558745001326,194.096,10566.886465925118,,,5.4366419315338135,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:06:32.052728,c4-standard-2,us-west3-a,48cfc10,OEMOF-house-with-nonconvex-investment-1-365ts,highs-1.5.0.dev0,OEMOF-house-with-nonconvex-investment +OEMOF-house-with-nonconvex-investment,1-365ts,scip,8.0.3,2022.0,ok,optimal,5.150730252000358,231.964,10566.886465925068,,,5.131762,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:06:38.132255,c4-standard-2,us-west3-a,48cfc10,OEMOF-house-with-nonconvex-investment-1-365ts,scip-8.0.3,OEMOF-house-with-nonconvex-investment +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314,73-1h,gurobi,10.0.0,2022.0,ok,optimal,9.089622303999931,208.512,289911.871777454,,,9.015384197235107,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:06:43.908192,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314,73-1h,highs,1.5.0.dev0,2022.0,ok,optimal,48.73904845099969,323.808,289911.87177745113,,,48.56324005126953,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:06:53.753309,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314,73-1h,scip,8.0.3,2022.0,ok,optimal,158.76254871399942,482.516,289911.87163205753,,,158.639486,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:07:43.264654,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314 +pypsa-power+ely+battery-ucgas-mod,1-1h,gurobi,10.0.0,2022.0,ok,optimal,19.00974004300224,527.7,79991181956.196,,,18.3170018196106,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:10:22.798522,c4-standard-2,us-west3-a,48cfc10,pypsa-power+ely+battery-ucgas-mod-1-1h,gurobi-10.0.0,pypsa-power+ely+battery-ucgas-mod +pypsa-power+ely+battery-ucgas-mod,1-1h,highs,1.5.0.dev0,2022.0,ok,optimal,125.1701110799986,684.696,79991181956.1961,,,124.06081867218018,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:10:43.346769,c4-standard-2,us-west3-a,48cfc10,pypsa-power+ely+battery-ucgas-mod-1-1h,highs-1.5.0.dev0,pypsa-power+ely+battery-ucgas-mod +pypsa-power+ely+battery-ucgas-mod,1-1h,scip,8.0.3,2022.0,ok,optimal,230.85836547800136,1235.908,79991181956.1961,,,229.703803,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:12:50.043851,c4-standard-2,us-west3-a,48cfc10,pypsa-power+ely+battery-ucgas-mod-1-1h,scip-8.0.3,pypsa-power+ely+battery-ucgas-mod +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332,73-1h,gurobi,10.0.0,2022.0,ok,optimal,6.092909817001782,196.928,221968.1040850238,,,5.785482883453369,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:16:42.863712,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332,73-1h,highs,1.5.0.dev0,2022.0,ok,optimal,24.753240483998525,322.004,221968.1040850234,,,24.690897703170776,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:16:49.616742,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332,73-1h,scip,8.0.3,2022.0,ok,optimal,65.57848001599996,415.628,221968.1040850238,,,65.497827,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:17:15.025565,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332 +genx-7_three_zones_w_colocated_VRE_storage,3-24h,gurobi,10.0.0,2022.0,ok,optimal,0.1425356279978586,165.328,443334.4305876119,,,0.1206810474395752,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:18:21.277444,c4-standard-2,us-west3-a,48cfc10,genx-7_three_zones_w_colocated_VRE_storage-3-24h,gurobi-10.0.0,genx-7_three_zones_w_colocated_VRE_storage +genx-7_three_zones_w_colocated_VRE_storage,3-24h,highs,1.5.0.dev0,2022.0,ok,optimal,0.1860808390010788,160.884,443334.430587612,,,0.1601746082305908,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:18:22.028608,c4-standard-2,us-west3-a,48cfc10,genx-7_three_zones_w_colocated_VRE_storage-3-24h,highs-1.5.0.dev0,genx-7_three_zones_w_colocated_VRE_storage +genx-7_three_zones_w_colocated_VRE_storage,3-24h,scip,8.0.3,2022.0,ok,optimal,1.0255660520015226,191.928,443337.472426686,,,0.999943,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:18:22.809230,c4-standard-2,us-west3-a,48cfc10,genx-7_three_zones_w_colocated_VRE_storage-3-24h,scip-8.0.3,genx-7_three_zones_w_colocated_VRE_storage +times-etimeseu-france-elec+heat-co2-single_stage,1-64ts,gurobi,10.0.0,2022.0,ok,optimal,0.1649692880018847,180.2,48230.35317510068,,,0.0625548362731933,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:18:24.449361,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-co2-single_stage-1-64ts,gurobi-10.0.0,times-etimeseu-france-elec+heat-co2-single_stage +times-etimeseu-france-elec+heat-co2-single_stage,1-64ts,highs,1.5.0.dev0,2022.0,ok,optimal,0.2066760119996615,176.78,48230.3531751006,,,0.1136763095855712,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:18:25.262393,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-co2-single_stage-1-64ts,highs-1.5.0.dev0,times-etimeseu-france-elec+heat-co2-single_stage +times-etimeseu-france-elec+heat-co2-single_stage,1-64ts,scip,8.0.3,2022.0,ok,optimal,0.6902926990005653,284.172,48230.353175100616,,,0.583994,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:18:26.126365,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-co2-single_stage-1-64ts,scip-8.0.3,times-etimeseu-france-elec+heat-co2-single_stage +times-etimeseu-france-elec+heat-single_stage,1-64ts,gurobi,10.0.0,2022.0,ok,optimal,0.162801706999744,180.484,48230.35317510065,,,0.0603461265563964,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:18:27.501106,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-single_stage-1-64ts,gurobi-10.0.0,times-etimeseu-france-elec+heat-single_stage +times-etimeseu-france-elec+heat-single_stage,1-64ts,highs,1.5.0.dev0,2022.0,ok,optimal,0.1816923029982717,177.676,48230.35317510058,,,0.0906755924224853,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:18:28.313209,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-single_stage-1-64ts,highs-1.5.0.dev0,times-etimeseu-france-elec+heat-single_stage +times-etimeseu-france-elec+heat-single_stage,1-64ts,scip,8.0.3,2022.0,ok,optimal,0.7409577770013129,286.64,48230.353175100594,,,0.6345029999999999,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:18:29.146216,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-single_stage-1-64ts,scip-8.0.3,times-etimeseu-france-elec+heat-single_stage +temoa-utopia,1-6ts,gurobi,10.0.0,2022.0,ok,optimal,0.0217602359989541,156.636,36535.63125749815,,,0.0067989826202392,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:18:30.573102,c4-standard-2,us-west3-a,48cfc10,temoa-utopia-1-6ts,gurobi-10.0.0,temoa-utopia +temoa-utopia,1-6ts,highs,1.5.0.dev0,2022.0,ok,optimal,0.0651383159965917,150.608,36535.63125749814,,,0.052689790725708,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:18:31.186934,c4-standard-2,us-west3-a,48cfc10,temoa-utopia-1-6ts,highs-1.5.0.dev0,temoa-utopia +temoa-utopia,1-6ts,scip,8.0.3,2022.0,ok,optimal,0.0278597470023669,166.808,36535.63125749816,,,0.016346,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:18:31.840773,c4-standard-2,us-west3-a,48cfc10,temoa-utopia-1-6ts,scip-8.0.3,temoa-utopia +genx-8_three_zones_w_colocated_VRE_storage_electrolyzers,3-1h,gurobi,11.0.0,2023.0,ok,optimal,860.1579257670019,937.284,21204230235710.95,,,858.9673309326172,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:21:54.547743,c4-standard-2,us-west3-a,48cfc10,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers-3-1h,gurobi-11.0.0,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers +genx-8_three_zones_w_colocated_VRE_storage_electrolyzers,3-1h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,2731.68,,,,3600.0,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 02:39:44.467393,c4-standard-2,us-west3-a,48cfc10,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers-3-1h,highs-1.6.0.dev0,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers +genx-8_three_zones_w_colocated_VRE_storage_electrolyzers,3-1h,scip,8.1.0,2023.0,TO,Timeout,3600.0,2110.188,,,,3600.0,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 03:43:12.046539,c4-standard-2,us-west3-a,48cfc10,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers-3-1h,scip-8.1.0,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers +genx-8_three_zones_w_colocated_VRE_storage_electrolyzers,3-1h,cbc,2.10.11,2023.0,ok,optimal,3013.215939372996,1520.576,21204230382698.984,,,3011.93,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 04:46:41.975364,c4-standard-2,us-west3-a,48cfc10,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers-3-1h,cbc-2.10.11,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29,73-1h,gurobi,11.0.0,2023.0,ok,optimal,595.3694209129972,458.992,2086569.4792646128,,,594.9641988277435,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 05:36:56.724175,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29,73-1h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,876.66,,,,3600.0,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 05:50:21.227726,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29,73-1h,scip,8.1.0,2023.0,TO,Timeout,3600.0,1716.492,,,,3600.0,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 06:53:51.008986,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29,73-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,177.136,,,,3600.0,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 07:57:19.613089,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29 +SWITCH-hydrogen,3-6ts,gurobi,11.0.0,2023.0,ok,optimal,0.2569402680019266,168.04,188714938.7949839,,,0.0058269500732421,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:00:48.413655,c4-standard-2,us-west3-a,48cfc10,SWITCH-hydrogen-3-6ts,gurobi-11.0.0,SWITCH-hydrogen +SWITCH-hydrogen,3-6ts,highs,1.6.0.dev0,2023.0,ok,optimal,0.0116476339971995,159.336,188714938.79498395,,,0.0040352344512939,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:00:49.397045,c4-standard-2,us-west3-a,48cfc10,SWITCH-hydrogen-3-6ts,highs-1.6.0.dev0,SWITCH-hydrogen +SWITCH-hydrogen,3-6ts,scip,8.1.0,2023.0,ok,optimal,0.0205360399995697,173.06,188714938.79498383,,,0.0124669999999999,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:00:50.118519,c4-standard-2,us-west3-a,48cfc10,SWITCH-hydrogen-3-6ts,scip-8.1.0,SWITCH-hydrogen +SWITCH-hydrogen,3-6ts,cbc,2.10.11,2023.0,ok,optimal,0.0260938119972706,157.132,188714938.7949839,,,,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:00:50.851970,c4-standard-2,us-west3-a,48cfc10,SWITCH-hydrogen-3-6ts,cbc-2.10.11,SWITCH-hydrogen +OEMOF-house-with-nonconvex-investment,1-365ts,gurobi,11.0.0,2023.0,ok,optimal,2.7540003230024013,183.264,10566.886465925112,,,2.738858938217163,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:00:51.588092,c4-standard-2,us-west3-a,48cfc10,OEMOF-house-with-nonconvex-investment-1-365ts,gurobi-11.0.0,OEMOF-house-with-nonconvex-investment +OEMOF-house-with-nonconvex-investment,1-365ts,highs,1.6.0.dev0,2023.0,ok,optimal,5.605109998999978,209.592,10566.886465925118,,,5.586972951889038,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:00:55.083516,c4-standard-2,us-west3-a,48cfc10,OEMOF-house-with-nonconvex-investment-1-365ts,highs-1.6.0.dev0,OEMOF-house-with-nonconvex-investment +OEMOF-house-with-nonconvex-investment,1-365ts,scip,8.1.0,2023.0,ok,optimal,5.184015222002927,241.036,10566.886465925068,,,5.16556,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:01:01.431722,c4-standard-2,us-west3-a,48cfc10,OEMOF-house-with-nonconvex-investment-1-365ts,scip-8.1.0,OEMOF-house-with-nonconvex-investment +OEMOF-house-with-nonconvex-investment,1-365ts,cbc,2.10.11,2023.0,ok,optimal,6.155084525998973,159.556,10566.88646593,,,6.12,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:01:07.370890,c4-standard-2,us-west3-a,48cfc10,OEMOF-house-with-nonconvex-investment-1-365ts,cbc-2.10.11,OEMOF-house-with-nonconvex-investment +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314,73-1h,gurobi,11.0.0,2023.0,ok,optimal,9.380333436005458,220.804,289911.8717774541,,,9.313361167907717,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:01:14.272028,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314,73-1h,highs,1.6.0.dev0,2023.0,ok,optimal,48.04801837999548,338.12,289911.87177745113,,,47.93781042098999,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:01:24.476840,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314,73-1h,scip,8.1.0,2023.0,ok,optimal,158.32267280000087,506.524,289911.87163205753,,,158.220968,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:02:13.338117,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314,73-1h,cbc,2.10.11,2023.0,ok,optimal,2337.5832009040023,197.168,289911.87177745,,,2337.48,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:04:52.501115,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314 +pypsa-power+ely+battery-ucgas-mod,1-1h,gurobi,11.0.0,2023.0,ok,optimal,19.066004567001077,531.636,79991181956.19598,,,18.230149030685425,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:43:50.888482,c4-standard-2,us-west3-a,48cfc10,pypsa-power+ely+battery-ucgas-mod-1-1h,gurobi-11.0.0,pypsa-power+ely+battery-ucgas-mod +pypsa-power+ely+battery-ucgas-mod,1-1h,highs,1.6.0.dev0,2023.0,ok,optimal,123.77121757500572,617.316,79991181956.1961,,,122.8607132434845,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:44:11.409491,c4-standard-2,us-west3-a,48cfc10,pypsa-power+ely+battery-ucgas-mod-1-1h,highs-1.6.0.dev0,pypsa-power+ely+battery-ucgas-mod +pypsa-power+ely+battery-ucgas-mod,1-1h,scip,8.1.0,2023.0,ok,optimal,232.6820683249971,1236.744,79991181956.1961,,,231.670909,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:46:16.605352,c4-standard-2,us-west3-a,48cfc10,pypsa-power+ely+battery-ucgas-mod-1-1h,scip-8.1.0,pypsa-power+ely+battery-ucgas-mod +pypsa-power+ely+battery-ucgas-mod,1-1h,cbc,2.10.11,2023.0,ok,optimal,123.46942594899885,659.364,79990763473.80032,,,122.58,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:50:11.198617,c4-standard-2,us-west3-a,48cfc10,pypsa-power+ely+battery-ucgas-mod-1-1h,cbc-2.10.11,pypsa-power+ely+battery-ucgas-mod +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332,73-1h,gurobi,11.0.0,2023.0,ok,optimal,6.541551109003194,211.984,221968.1040850238,,,6.265594005584717,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:52:16.119696,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332,73-1h,highs,1.6.0.dev0,2023.0,ok,optimal,23.85888399900432,338.188,221968.1040850234,,,23.81954789161682,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:52:23.416741,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332,73-1h,scip,8.1.0,2023.0,ok,optimal,65.68316771900572,418.792,221968.1040850238,,,65.625754,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:52:48.026896,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332,73-1h,cbc,2.10.11,2023.0,ok,optimal,65.28585350300273,165.272,221968.10408502,,,65.22,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:53:54.493566,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332 +genx-7_three_zones_w_colocated_VRE_storage,3-24h,gurobi,11.0.0,2023.0,ok,optimal,0.1474947910028277,174.056,443334.4305876119,,,0.1295030117034912,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:55:00.527271,c4-standard-2,us-west3-a,48cfc10,genx-7_three_zones_w_colocated_VRE_storage-3-24h,gurobi-11.0.0,genx-7_three_zones_w_colocated_VRE_storage +genx-7_three_zones_w_colocated_VRE_storage,3-24h,highs,1.6.0.dev0,2023.0,ok,optimal,0.1753799470025114,172.38,443334.430587612,,,0.1582145690917968,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:55:01.401460,c4-standard-2,us-west3-a,48cfc10,genx-7_three_zones_w_colocated_VRE_storage-3-24h,highs-1.6.0.dev0,genx-7_three_zones_w_colocated_VRE_storage +genx-7_three_zones_w_colocated_VRE_storage,3-24h,scip,8.1.0,2023.0,ok,optimal,1.0266127809954924,200.54,443337.472426686,,,0.999904,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:55:02.294489,c4-standard-2,us-west3-a,48cfc10,genx-7_three_zones_w_colocated_VRE_storage-3-24h,scip-8.1.0,genx-7_three_zones_w_colocated_VRE_storage +genx-7_three_zones_w_colocated_VRE_storage,3-24h,cbc,2.10.11,2023.0,ok,optimal,1.3530062019999605,158.408,443334.43058761,,,1.32,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:55:04.049851,c4-standard-2,us-west3-a,48cfc10,genx-7_three_zones_w_colocated_VRE_storage-3-24h,cbc-2.10.11,genx-7_three_zones_w_colocated_VRE_storage +times-etimeseu-france-elec+heat-co2-single_stage,1-64ts,gurobi,11.0.0,2023.0,ok,optimal,0.1446595239976886,185.44,48230.35317510068,,,0.0630950927734375,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:55:06.123116,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-co2-single_stage-1-64ts,gurobi-11.0.0,times-etimeseu-france-elec+heat-co2-single_stage +times-etimeseu-france-elec+heat-co2-single_stage,1-64ts,highs,1.6.0.dev0,2023.0,ok,optimal,0.1765080600016517,184.676,48230.3531751006,,,0.112231969833374,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:55:07.017203,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-co2-single_stage-1-64ts,highs-1.6.0.dev0,times-etimeseu-france-elec+heat-co2-single_stage +times-etimeseu-france-elec+heat-co2-single_stage,1-64ts,scip,8.1.0,2023.0,ok,optimal,0.6777498109950102,291.868,48230.353175100616,,,0.587815,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:55:07.938454,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-co2-single_stage-1-64ts,scip-8.1.0,times-etimeseu-france-elec+heat-co2-single_stage +times-etimeseu-france-elec+heat-co2-single_stage,1-64ts,cbc,2.10.11,2023.0,ER,,,158.452,,,,,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:55:09.396174,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-co2-single_stage-1-64ts,cbc-2.10.11,times-etimeseu-france-elec+heat-co2-single_stage +times-etimeseu-france-elec+heat-single_stage,1-64ts,gurobi,11.0.0,2023.0,ok,optimal,0.1426928229993791,189.5,48230.35317510065,,,0.0618560314178466,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:55:10.117436,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-single_stage-1-64ts,gurobi-11.0.0,times-etimeseu-france-elec+heat-single_stage +times-etimeseu-france-elec+heat-single_stage,1-64ts,highs,1.6.0.dev0,2023.0,ok,optimal,0.1515388889965834,185.612,48230.35317510058,,,0.0885853767395019,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:55:11.013270,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-single_stage-1-64ts,highs-1.6.0.dev0,times-etimeseu-france-elec+heat-single_stage +times-etimeseu-france-elec+heat-single_stage,1-64ts,scip,8.1.0,2023.0,ok,optimal,0.743365440001071,294.68,48230.353175100594,,,0.652982,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:55:11.908246,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-single_stage-1-64ts,scip-8.1.0,times-etimeseu-france-elec+heat-single_stage +times-etimeseu-france-elec+heat-single_stage,1-64ts,cbc,2.10.11,2023.0,ER,,,158.008,,,,,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:55:13.432020,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-single_stage-1-64ts,cbc-2.10.11,times-etimeseu-france-elec+heat-single_stage +temoa-utopia,1-6ts,gurobi,11.0.0,2023.0,ok,optimal,0.0194546679995255,166.208,36535.63125749815,,,0.0067780017852783,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:55:14.156021,c4-standard-2,us-west3-a,48cfc10,temoa-utopia-1-6ts,gurobi-11.0.0,temoa-utopia +temoa-utopia,1-6ts,highs,1.6.0.dev0,2023.0,ok,optimal,0.0614055260011809,161.504,36535.63125749814,,,0.049567699432373,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:55:14.887746,c4-standard-2,us-west3-a,48cfc10,temoa-utopia-1-6ts,highs-1.6.0.dev0,temoa-utopia +temoa-utopia,1-6ts,scip,8.1.0,2023.0,ok,optimal,0.028143588999228,175.9,36535.63125749816,,,0.0168159999999999,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:55:15.676720,c4-standard-2,us-west3-a,48cfc10,temoa-utopia-1-6ts,scip-8.1.0,temoa-utopia +temoa-utopia,1-6ts,cbc,2.10.11,2023.0,ok,optimal,0.0368052699996042,157.876,36535.63125748,,,,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:55:16.433117,c4-standard-2,us-west3-a,48cfc10,temoa-utopia-1-6ts,cbc-2.10.11,temoa-utopia +genx-8_three_zones_w_colocated_VRE_storage_electrolyzers,3-1h,gurobi,12.0.0,2024.0,ok,optimal,1052.833605709995,1245.028,21204230232888.824,0.0,2.3817660471666885e-10,1051.655599117279,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 09:55:49.310268,c4-standard-2,us-west3-a,48cfc10,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers-3-1h,gurobi-12.0.0,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers +genx-8_three_zones_w_colocated_VRE_storage_electrolyzers,3-1h,highs,1.9.0,2024.0,TO,Timeout,3600.0,3038.348,,,,3600.0,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 10:16:53.193438,c4-standard-2,us-west3-a,48cfc10,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers-3-1h,highs-1.9.0,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers +genx-8_three_zones_w_colocated_VRE_storage_electrolyzers,3-1h,scip,9.2.0,2024.0,TO,Timeout,3600.0,2093.512,,,,3600.0,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 11:20:21.591464,c4-standard-2,us-west3-a,48cfc10,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers-3-1h,scip-9.2.0,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers +genx-8_three_zones_w_colocated_VRE_storage_electrolyzers,3-1h,cbc,2.10.12,2024.0,ok,optimal,2936.6689725130127,1513.192,21204230382698.984,0.0,0.0,2933.51,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 12:23:50.208052,c4-standard-2,us-west3-a,48cfc10,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers-3-1h,cbc-2.10.12,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29,73-1h,gurobi,12.0.0,2024.0,ok,optimal,734.1015359799931,422.004,2086569.479375356,0.0,9.95578852044614e-05,733.6514768600464,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 13:12:49.321261,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29,73-1h,highs,1.9.0,2024.0,TO,Timeout,3600.0,882.44,,,,3600.0,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 13:28:33.933246,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29,73-1h,scip,9.2.0,2024.0,TO,Timeout,3600.0,1685.868,,,,3600.0,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 14:32:03.433009,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29,73-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,159.652,,,,3600.0,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 15:35:31.753701,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29 +SWITCH-hydrogen,3-6ts,gurobi,12.0.0,2024.0,ok,optimal,0.2637986689951503,151.46,188714938.7949839,,,0.0045020580291748,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 16:39:00.027143,c4-standard-2,us-west3-a,48cfc10,SWITCH-hydrogen-3-6ts,gurobi-12.0.0,SWITCH-hydrogen +SWITCH-hydrogen,3-6ts,highs,1.9.0,2024.0,ok,optimal,0.01253931800602,142.232,188714938.79498395,,,0.0041139125823974,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 16:39:00.812757,c4-standard-2,us-west3-a,48cfc10,SWITCH-hydrogen-3-6ts,highs-1.9.0,SWITCH-hydrogen +SWITCH-hydrogen,3-6ts,scip,9.2.0,2024.0,ok,optimal,0.0203584369883174,156.412,188714938.79498383,,,0.0121479999999999,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 16:39:01.308713,c4-standard-2,us-west3-a,48cfc10,SWITCH-hydrogen-3-6ts,scip-9.2.0,SWITCH-hydrogen +SWITCH-hydrogen,3-6ts,cbc,2.10.12,2024.0,ok,optimal,0.0312546830100473,141.876,188714938.7949839,,,,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 16:39:01.822518,c4-standard-2,us-west3-a,48cfc10,SWITCH-hydrogen-3-6ts,cbc-2.10.12,SWITCH-hydrogen +OEMOF-house-with-nonconvex-investment,1-365ts,gurobi,12.0.0,2024.0,ok,optimal,2.354008466994856,169.604,10566.945884280196,0.0,9.488647708666463e-05,2.339116096496582,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 16:39:02.343265,c4-standard-2,us-west3-a,48cfc10,OEMOF-house-with-nonconvex-investment-1-365ts,gurobi-12.0.0,OEMOF-house-with-nonconvex-investment +OEMOF-house-with-nonconvex-investment,1-365ts,highs,1.9.0,2024.0,ok,optimal,5.499462592997588,186.684,10566.88646592512,0.0,9.97768149436638e-05,5.480053186416626,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 16:39:05.216008,c4-standard-2,us-west3-a,48cfc10,OEMOF-house-with-nonconvex-investment-1-365ts,highs-1.9.0,OEMOF-house-with-nonconvex-investment +OEMOF-house-with-nonconvex-investment,1-365ts,scip,9.2.0,2024.0,ok,optimal,5.140540329011856,226.376,10566.886465925068,8.437694987151191e-15,7.045312808848395e-05,5.122141,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 16:39:11.222452,c4-standard-2,us-west3-a,48cfc10,OEMOF-house-with-nonconvex-investment-1-365ts,scip-9.2.0,OEMOF-house-with-nonconvex-investment +OEMOF-house-with-nonconvex-investment,1-365ts,cbc,2.10.12,2024.0,ok,optimal,6.164802753992262,148.596,10566.88646593,0.0,,6.11,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 16:39:16.895460,c4-standard-2,us-west3-a,48cfc10,OEMOF-house-with-nonconvex-investment-1-365ts,cbc-2.10.12,OEMOF-house-with-nonconvex-investment +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314,73-1h,gurobi,12.0.0,2024.0,ok,optimal,6.703529680991778,196.72,289911.87177745404,0.0,0.0,6.637184858322144,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 16:39:23.571027,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314,73-1h,highs,1.9.0,2024.0,ok,optimal,54.49151600900223,297.24,289911.8717774538,2.933209231059664e-13,0.0,54.300814390182495,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 16:39:30.955139,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314,73-1h,scip,9.2.0,2024.0,ok,optimal,157.80277926000417,492.28,289911.87163205753,5.876986375330517e-08,0.0,157.700594,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 16:40:26.135017,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314,73-1h,cbc,2.10.12,2024.0,ok,optimal,2337.8072099220008,191.464,289911.87177745,0.0,0.0,2337.53,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 16:43:04.638624,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314 +pypsa-power+ely+battery-ucgas-mod,1-1h,gurobi,12.0.0,2024.0,ok,optimal,15.737964549989556,517.776,79991181956.19597,0.0,5.772469116968184e-06,14.872719049453735,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:22:03.119394,c4-standard-2,us-west3-a,48cfc10,pypsa-power+ely+battery-ucgas-mod-1-1h,gurobi-12.0.0,pypsa-power+ely+battery-ucgas-mod +pypsa-power+ely+battery-ucgas-mod,1-1h,highs,1.9.0,2024.0,ok,optimal,127.46764785599952,695.052,79991181956.1961,0.0,5.772469118875732e-06,126.30761694908142,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:22:20.450044,c4-standard-2,us-west3-a,48cfc10,pypsa-power+ely+battery-ucgas-mod-1-1h,highs-1.9.0,pypsa-power+ely+battery-ucgas-mod +pypsa-power+ely+battery-ucgas-mod,1-1h,scip,9.2.0,2024.0,ok,optimal,231.26080952100165,1221.14,79991181956.1961,0.0,5.772502441230841e-06,230.250107,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:24:29.558514,c4-standard-2,us-west3-a,48cfc10,pypsa-power+ely+battery-ucgas-mod-1-1h,scip-9.2.0,pypsa-power+ely+battery-ucgas-mod +pypsa-power+ely+battery-ucgas-mod,1-1h,cbc,2.10.12,2024.0,ok,optimal,124.34880194700963,656.924,79990763473.80032,0.0,0.0,122.44,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:28:22.876957,c4-standard-2,us-west3-a,48cfc10,pypsa-power+ely+battery-ucgas-mod-1-1h,cbc-2.10.12,pypsa-power+ely+battery-ucgas-mod +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332,73-1h,gurobi,12.0.0,2024.0,ok,optimal,4.327099963993533,193.348,221968.10408502375,0.0,0.0,4.045547008514404,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:30:28.845582,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332,73-1h,highs,1.9.0,2024.0,ok,optimal,35.89953843399417,342.604,221968.1040850237,5.218048215738236e-15,4.592821342141951e-05,35.83086895942688,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:30:33.752767,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332,73-1h,scip,9.2.0,2024.0,ok,optimal,65.64776786000584,403.912,221968.1040850238,0.0,0.0,65.58912,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:31:10.223300,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332,73-1h,cbc,2.10.12,2024.0,ok,optimal,65.35096005800006,154.376,221968.10408502,0.0,,65.22,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:32:16.492610,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332 +genx-7_three_zones_w_colocated_VRE_storage,3-24h,gurobi,12.0.0,2024.0,ok,optimal,0.1496892099967226,160.164,443334.4305869118,0.0,5.689386967240527e-06,0.1316721439361572,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:33:22.402683,c4-standard-2,us-west3-a,48cfc10,genx-7_three_zones_w_colocated_VRE_storage-3-24h,gurobi-12.0.0,genx-7_three_zones_w_colocated_VRE_storage +genx-7_three_zones_w_colocated_VRE_storage,3-24h,highs,1.9.0,2024.0,ok,optimal,0.1751874059991678,153.732,443334.430587612,0.0,5.6893869610606685e-06,0.1462733745574951,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:33:23.071929,c4-standard-2,us-west3-a,48cfc10,genx-7_three_zones_w_colocated_VRE_storage-3-24h,highs-1.9.0,genx-7_three_zones_w_colocated_VRE_storage +genx-7_three_zones_w_colocated_VRE_storage,3-24h,scip,9.2.0,2024.0,ok,optimal,1.0342710800032364,185.7,443337.472426686,0.0,7.154415732867402e-06,1.007276,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:33:23.757540,c4-standard-2,us-west3-a,48cfc10,genx-7_three_zones_w_colocated_VRE_storage-3-24h,scip-9.2.0,genx-7_three_zones_w_colocated_VRE_storage +genx-7_three_zones_w_colocated_VRE_storage,3-24h,cbc,2.10.12,2024.0,ok,optimal,1.379283554997528,147.86,443334.43058761,0.0,0.0,1.32,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:33:25.301941,c4-standard-2,us-west3-a,48cfc10,genx-7_three_zones_w_colocated_VRE_storage-3-24h,cbc-2.10.12,genx-7_three_zones_w_colocated_VRE_storage +times-etimeseu-france-elec+heat-co2-single_stage,1-64ts,gurobi,12.0.0,2024.0,ok,optimal,0.152720854996005,174.032,48230.35317510068,,,0.0701038837432861,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:33:27.198402,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-co2-single_stage-1-64ts,gurobi-12.0.0,times-etimeseu-france-elec+heat-co2-single_stage +times-etimeseu-france-elec+heat-co2-single_stage,1-64ts,highs,1.9.0,2024.0,ok,optimal,0.2264371050114277,170.124,48230.3531751006,,,0.1192188262939453,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:33:27.975308,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-co2-single_stage-1-64ts,highs-1.9.0,times-etimeseu-france-elec+heat-co2-single_stage +times-etimeseu-france-elec+heat-co2-single_stage,1-64ts,scip,9.2.0,2024.0,ok,optimal,0.67259023799852,275.904,48230.353175100616,,,0.581409,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:33:28.843052,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-co2-single_stage-1-64ts,scip-9.2.0,times-etimeseu-france-elec+heat-co2-single_stage +times-etimeseu-france-elec+heat-co2-single_stage,1-64ts,cbc,2.10.12,2024.0,ER,,,140.72,,,,,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:33:30.167704,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-co2-single_stage-1-64ts,cbc-2.10.12,times-etimeseu-france-elec+heat-co2-single_stage +times-etimeseu-france-elec+heat-single_stage,1-64ts,gurobi,12.0.0,2024.0,ok,optimal,0.1398179009993327,171.568,48230.35317510065,,,0.0586280822753906,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:33:30.672496,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-single_stage-1-64ts,gurobi-12.0.0,times-etimeseu-france-elec+heat-single_stage +times-etimeseu-france-elec+heat-single_stage,1-64ts,highs,1.9.0,2024.0,ok,optimal,0.198570186010329,167.988,48230.35317510058,,,0.0945169925689697,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:33:31.441671,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-single_stage-1-64ts,highs-1.9.0,times-etimeseu-france-elec+heat-single_stage +times-etimeseu-france-elec+heat-single_stage,1-64ts,scip,9.2.0,2024.0,ok,optimal,0.7250064560066676,278.86,48230.353175100594,,,0.6358809999999999,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:33:32.256398,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-single_stage-1-64ts,scip-9.2.0,times-etimeseu-france-elec+heat-single_stage +times-etimeseu-france-elec+heat-single_stage,1-64ts,cbc,2.10.12,2024.0,ER,,,140.684,,,,,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:33:33.626950,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-single_stage-1-64ts,cbc-2.10.12,times-etimeseu-france-elec+heat-single_stage +temoa-utopia,1-6ts,gurobi,12.0.0,2024.0,ok,optimal,0.0191041739890351,149.76,36535.63125749814,,,0.0061898231506347,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:33:34.123823,c4-standard-2,us-west3-a,48cfc10,temoa-utopia-1-6ts,gurobi-12.0.0,temoa-utopia +temoa-utopia,1-6ts,highs,1.9.0,2024.0,ok,optimal,0.0192319409979973,144.284,36535.63125749816,,,0.006072998046875,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:33:34.651029,c4-standard-2,us-west3-a,48cfc10,temoa-utopia-1-6ts,highs-1.9.0,temoa-utopia +temoa-utopia,1-6ts,scip,9.2.0,2024.0,ok,optimal,0.0275496980029856,159.836,36535.63125749816,,,0.016305,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:33:35.167651,c4-standard-2,us-west3-a,48cfc10,temoa-utopia-1-6ts,scip-9.2.0,temoa-utopia +temoa-utopia,1-6ts,cbc,2.10.12,2024.0,ok,optimal,0.0468585780035937,147.184,36535.63125748,,,,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:33:35.694554,c4-standard-2,us-west3-a,48cfc10,temoa-utopia-1-6ts,cbc-2.10.12,temoa-utopia +genx-8_three_zones_w_colocated_VRE_storage_electrolyzers,3-1h,gurobi,13.0.0,2025.0,ok,optimal,828.6305438209965,940.016,21204230232888.902,0.0,1.478261190372363e-10,827.4271140098572,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:34:08.770334,c4-standard-2,us-west3-a,48cfc10,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers-3-1h,gurobi-13.0.0,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers +genx-8_three_zones_w_colocated_VRE_storage_electrolyzers,3-1h,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,3600.0,162.912,,,,3600.0,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 17:51:29.083585,c4-standard-2,us-west3-a,48cfc10,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers-3-1h,highs-hipo-1.12.0-hipo,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers +genx-8_three_zones_w_colocated_VRE_storage_electrolyzers,3-1h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,3600.0,163.32,,,,3600.0,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 18:54:57.573654,c4-standard-2,us-west3-a,48cfc10,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers-3-1h,highs-ipx-1.12.0-hipo,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers +genx-8_three_zones_w_colocated_VRE_storage_electrolyzers,3-1h,highs,1.12.0,2025.0,TO,Timeout,3600.0,2250.58,,,,3600.0,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 19:58:26.109764,c4-standard-2,us-west3-a,48cfc10,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers-3-1h,highs-1.12.0,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers +genx-8_three_zones_w_colocated_VRE_storage_electrolyzers,3-1h,scip,10.0.0,2025.0,TO,Timeout,3600.0,2121.004,,,,3600.0,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 21:01:55.645547,c4-standard-2,us-west3-a,48cfc10,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers-3-1h,scip-10.0.0,genx-8_three_zones_w_colocated_VRE_storage_electrolyzers +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29,73-1h,gurobi,13.0.0,2025.0,ok,optimal,803.9758010819933,450.748,2086569.479384537,0.0,9.819285076666524e-05,803.5138700008392,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 22:05:24.223287,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29,73-1h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1077.34,,,,3600.0,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 22:18:49.178294,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29,73-1h,scip,10.0.0,2025.0,TO,Timeout,3600.0,1724.032,,,,3600.0,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-16 23:22:16.986008,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day29 +SWITCH-hydrogen,3-6ts,gurobi,13.0.0,2025.0,ok,optimal,0.2874819209973793,179.512,188714938.7949839,,,0.0043120384216308,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:25:44.760816,c4-standard-2,us-west3-a,48cfc10,SWITCH-hydrogen-3-6ts,gurobi-13.0.0,SWITCH-hydrogen +SWITCH-hydrogen,3-6ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,0.1128127109986962,164.316,188714938.88,,,0.1128127109986962,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:25:45.782896,c4-standard-2,us-west3-a,48cfc10,SWITCH-hydrogen-3-6ts,highs-hipo-1.12.0-hipo,SWITCH-hydrogen +SWITCH-hydrogen,3-6ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,0.0279823640012182,163.78,188714938.85,,,0.0279823640012182,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:25:46.598494,c4-standard-2,us-west3-a,48cfc10,SWITCH-hydrogen-3-6ts,highs-ipx-1.12.0-hipo,SWITCH-hydrogen +SWITCH-hydrogen,3-6ts,highs,1.12.0,2025.0,ok,optimal,0.0126739179977448,169.412,188714938.79498392,,,0.0045568943023681,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:25:47.344507,c4-standard-2,us-west3-a,48cfc10,SWITCH-hydrogen-3-6ts,highs-1.12.0,SWITCH-hydrogen +SWITCH-hydrogen,3-6ts,scip,10.0.0,2025.0,ok,optimal,0.0213398439955199,183.464,188714938.79498383,,,0.0123749999999999,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:25:48.082513,c4-standard-2,us-west3-a,48cfc10,SWITCH-hydrogen-3-6ts,scip-10.0.0,SWITCH-hydrogen +OEMOF-house-with-nonconvex-investment,1-365ts,gurobi,13.0.0,2025.0,ok,optimal,2.4254079060046934,196.644,10566.886465925112,0.0,9.834299905729234e-05,2.4099109172821045,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:25:48.831288,c4-standard-2,us-west3-a,48cfc10,OEMOF-house-with-nonconvex-investment-1-365ts,gurobi-13.0.0,OEMOF-house-with-nonconvex-investment +OEMOF-house-with-nonconvex-investment,1-365ts,highs,1.12.0,2025.0,ok,optimal,1.2238075860077515,195.048,10566.88646592512,9.68341485577922e-15,2.510614932915821e-05,1.2064313888549805,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:25:51.998585,c4-standard-2,us-west3-a,48cfc10,OEMOF-house-with-nonconvex-investment-1-365ts,highs-1.12.0,OEMOF-house-with-nonconvex-investment +OEMOF-house-with-nonconvex-investment,1-365ts,scip,10.0.0,2025.0,ok,optimal,5.156029609002871,253.212,10566.886465925068,8.437694987151191e-15,7.045312808848395e-05,5.13541,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:25:53.965862,c4-standard-2,us-west3-a,48cfc10,OEMOF-house-with-nonconvex-investment-1-365ts,scip-10.0.0,OEMOF-house-with-nonconvex-investment +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314,73-1h,gurobi,13.0.0,2025.0,ok,optimal,6.062845385997207,221.732,289911.8717774541,0.0,0.0,5.995406150817871,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:25:59.881222,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314,73-1h,highs,1.12.0,2025.0,ok,optimal,54.43366038399108,300.564,289911.87177693925,5.7537260831596966e-11,4.064394521048813e-05,54.314897537231445,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:26:06.792159,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314,73-1h,scip,10.0.0,2025.0,ok,optimal,158.12900820100913,514.644,289911.87163205753,5.876986375330517e-08,0.0,158.025458,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:27:02.067233,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day314 +pypsa-power+ely+battery-ucgas-mod,1-1h,gurobi,13.0.0,2025.0,ok,optimal,15.37302409899712,539.992,79991181956.19597,0.0,5.772469116968184e-06,14.778608083724976,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:29:41.063058,c4-standard-2,us-west3-a,48cfc10,pypsa-power+ely+battery-ucgas-mod-1-1h,gurobi-13.0.0,pypsa-power+ely+battery-ucgas-mod +pypsa-power+ely+battery-ucgas-mod,1-1h,highs,1.12.0,2025.0,ok,optimal,111.69929526800117,495.54,79991181956.19612,0.0,5.772469119066488e-06,110.75614786148073,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:29:58.073218,c4-standard-2,us-west3-a,48cfc10,pypsa-power+ely+battery-ucgas-mod-1-1h,highs-1.12.0,pypsa-power+ely+battery-ucgas-mod +pypsa-power+ely+battery-ucgas-mod,1-1h,scip,10.0.0,2025.0,ok,optimal,230.6230731709948,1248.584,79991181956.1961,0.0,5.772502441230841e-06,229.573018,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:31:51.315024,c4-standard-2,us-west3-a,48cfc10,pypsa-power+ely+battery-ucgas-mod-1-1h,scip-10.0.0,pypsa-power+ely+battery-ucgas-mod +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332,73-1h,gurobi,13.0.0,2025.0,ok,optimal,4.948205318010878,221.26,221968.103942129,0.0,0.0,4.6787049770355225,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:35:43.999703,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332,73-1h,highs,1.12.0,2025.0,ok,optimal,19.474143458995968,420.696,221968.10408502372,7.771561172376097e-16,0.0,19.43067693710327,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:35:49.735197,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332,73-1h,scip,10.0.0,2025.0,ok,optimal,66.17240519500047,431.192,221968.1040850238,0.0,0.0,66.111504,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:36:09.981594,c4-standard-2,us-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day332 +genx-7_three_zones_w_colocated_VRE_storage,3-24h,gurobi,13.0.0,2025.0,ok,optimal,0.1478097810031613,186.616,443334.430586904,0.0,5.689386949384487e-06,0.1296870708465576,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:37:16.968723,c4-standard-2,us-west3-a,48cfc10,genx-7_three_zones_w_colocated_VRE_storage-3-24h,gurobi-13.0.0,genx-7_three_zones_w_colocated_VRE_storage +genx-7_three_zones_w_colocated_VRE_storage,3-24h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,0.2664480090024881,163.852,443334.430588,,,0.2664480090024881,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:37:17.884958,c4-standard-2,us-west3-a,48cfc10,genx-7_three_zones_w_colocated_VRE_storage-3-24h,highs-hipo-1.12.0-hipo,genx-7_three_zones_w_colocated_VRE_storage +genx-7_three_zones_w_colocated_VRE_storage,3-24h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,0.2715754179953364,163.688,443334.430588,,,0.2715754179953364,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:37:18.879059,c4-standard-2,us-west3-a,48cfc10,genx-7_three_zones_w_colocated_VRE_storage-3-24h,highs-ipx-1.12.0-hipo,genx-7_three_zones_w_colocated_VRE_storage +genx-7_three_zones_w_colocated_VRE_storage,3-24h,highs,1.12.0,2025.0,ok,optimal,0.2436668290029047,179.892,443334.4305876119,0.0,5.68938696158585e-06,0.2242586612701416,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:37:19.884639,c4-standard-2,us-west3-a,48cfc10,genx-7_three_zones_w_colocated_VRE_storage-3-24h,highs-1.12.0,genx-7_three_zones_w_colocated_VRE_storage +genx-7_three_zones_w_colocated_VRE_storage,3-24h,scip,10.0.0,2025.0,ok,optimal,1.0322816670086468,213.084,443337.472426686,0.0,7.154415732867402e-06,1.002509,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:37:20.871391,c4-standard-2,us-west3-a,48cfc10,genx-7_three_zones_w_colocated_VRE_storage-3-24h,scip-10.0.0,genx-7_three_zones_w_colocated_VRE_storage +times-etimeseu-france-elec+heat-co2-single_stage,1-64ts,gurobi,13.0.0,2025.0,ok,optimal,0.1599219350027851,200.976,48230.35317510065,,,0.0776979923248291,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:37:22.659263,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-co2-single_stage-1-64ts,gurobi-13.0.0,times-etimeseu-france-elec+heat-co2-single_stage +times-etimeseu-france-elec+heat-co2-single_stage,1-64ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,0.9158804149919888,163.964,48230.353175,,,0.9158804149919888,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:37:23.625882,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-co2-single_stage-1-64ts,highs-hipo-1.12.0-hipo,times-etimeseu-france-elec+heat-co2-single_stage +times-etimeseu-france-elec+heat-co2-single_stage,1-64ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,0.3172122239921009,163.816,48230.353175,,,0.3172122239921009,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:37:25.270604,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-co2-single_stage-1-64ts,highs-ipx-1.12.0-hipo,times-etimeseu-france-elec+heat-co2-single_stage +times-etimeseu-france-elec+heat-co2-single_stage,1-64ts,highs,1.12.0,2025.0,ok,optimal,0.1988990640093106,195.652,48230.3531751006,,,0.1240260601043701,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:37:26.320407,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-co2-single_stage-1-64ts,highs-1.12.0,times-etimeseu-france-elec+heat-co2-single_stage +times-etimeseu-france-elec+heat-co2-single_stage,1-64ts,scip,10.0.0,2025.0,ok,optimal,0.6915723779966356,302.048,48230.353175100616,,,0.593196,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:37:27.311380,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-co2-single_stage-1-64ts,scip-10.0.0,times-etimeseu-france-elec+heat-co2-single_stage +times-etimeseu-france-elec+heat-single_stage,1-64ts,gurobi,13.0.0,2025.0,ok,optimal,0.1422806420014239,199.476,48230.35317510064,,,0.059687852859497,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:37:28.823952,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-single_stage-1-64ts,gurobi-13.0.0,times-etimeseu-france-elec+heat-single_stage +times-etimeseu-france-elec+heat-single_stage,1-64ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,0.8304058630019426,163.8,48230.353176,,,0.8304058630019426,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:37:29.759131,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-single_stage-1-64ts,highs-hipo-1.12.0-hipo,times-etimeseu-france-elec+heat-single_stage +times-etimeseu-france-elec+heat-single_stage,1-64ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,0.259298838005634,163.92,48230.353175,,,0.259298838005634,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:37:31.325478,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-single_stage-1-64ts,highs-ipx-1.12.0-hipo,times-etimeseu-france-elec+heat-single_stage +times-etimeseu-france-elec+heat-single_stage,1-64ts,highs,1.12.0,2025.0,ok,optimal,0.172925656006555,196.396,48230.35317510058,,,0.1013436317443847,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:37:32.317262,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-single_stage-1-64ts,highs-1.12.0,times-etimeseu-france-elec+heat-single_stage +times-etimeseu-france-elec+heat-single_stage,1-64ts,scip,10.0.0,2025.0,ok,optimal,0.7398963470041053,304.608,48230.353175100594,,,0.642762,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:37:33.269752,c4-standard-2,us-west3-a,48cfc10,times-etimeseu-france-elec+heat-single_stage-1-64ts,scip-10.0.0,times-etimeseu-france-elec+heat-single_stage +temoa-utopia,1-6ts,gurobi,13.0.0,2025.0,ok,optimal,0.019326000008732,176.564,36535.63125749814,,,0.0062432289123535,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:37:34.820984,c4-standard-2,us-west3-a,48cfc10,temoa-utopia-1-6ts,gurobi-13.0.0,temoa-utopia +temoa-utopia,1-6ts,highs-hipo,1.12.0-hipo,2025.0,warning,Unknown,0.099804113007849,163.892,36535.631258,,,0.099804113007849,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:37:35.585736,c4-standard-2,us-west3-a,48cfc10,temoa-utopia-1-6ts,highs-hipo-1.12.0-hipo,temoa-utopia +temoa-utopia,1-6ts,highs-ipx,1.12.0-hipo,2025.0,warning,Unknown,0.043210274001467,163.568,36535.631257,,,0.043210274001467,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:37:36.404562,c4-standard-2,us-west3-a,48cfc10,temoa-utopia-1-6ts,highs-ipx-1.12.0-hipo,temoa-utopia +temoa-utopia,1-6ts,highs,1.12.0,2025.0,ok,optimal,0.020041352006956,170.752,36535.63125749814,,,0.0073788166046142,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:37:37.160552,c4-standard-2,us-west3-a,48cfc10,temoa-utopia-1-6ts,highs-1.12.0,temoa-utopia +temoa-utopia,1-6ts,scip,10.0.0,2025.0,ok,optimal,0.0295759909931803,186.64,36535.63125749816,,,0.0169,3600.0,benchmark-instance-s-m-13,20251215-run-S-M,2025-12-17 00:37:37.908083,c4-standard-2,us-west3-a,48cfc10,temoa-utopia-1-6ts,scip-10.0.0,temoa-utopia +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,137.444,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-15 17:30:46.707090,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314 +genx-10_IEEE_9_bus_DC_OPF,9-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,502.056,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-15 18:34:30.323600,c4-standard-2,europe-west3-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-9-1h,glpk-5.0,genx-10_IEEE_9_bus_DC_OPF +SWITCH-rps-simple,3-6ts,glpk,5.0,2020.0,ER,,,124.86,,,,,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-15 19:38:14.687093,c4-standard-2,europe-west3-b,48cfc10,SWITCH-rps-simple-3-6ts,glpk-5.0,SWITCH-rps-simple +OEMOF-offset-diesel-genset-nonconvex-investment,1-8760ts,glpk,5.0,2020.0,TO,Timeout,3600.0,122.756,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-15 19:38:15.205874,c4-standard-2,europe-west3-b,48cfc10,OEMOF-offset-diesel-genset-nonconvex-investment-1-8760ts,glpk-5.0,OEMOF-offset-diesel-genset-nonconvex-investment +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,157.12,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-15 20:42:00.056986,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29 +genx-2_three_zones_w_electrolyzer-no_uc,3-1h,glpk,5.0,2020.0,ok,optimal,2855.4801665820014,316.696,19613.22288,,,,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-15 21:45:43.356360,c4-standard-2,europe-west3-b,48cfc10,genx-2_three_zones_w_electrolyzer-no_uc-3-1h,glpk-5.0,genx-2_three_zones_w_electrolyzer-no_uc +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314,73-1h,gurobi,10.0.0,2022.0,TO,Timeout,3600.0,583.628,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-15 22:34:01.985663,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314,73-1h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1210.12,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-15 23:37:44.918068,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314,73-1h,scip,8.0.3,2022.0,TO,Timeout,3600.0,1404.316,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 00:41:26.507924,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314 +genx-10_IEEE_9_bus_DC_OPF,9-1h,gurobi,10.0.0,2022.0,ok,optimal,45.21040815100059,1775.696,1151700.2005400015,,,41.483410120010376,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 01:45:09.050462,c4-standard-2,europe-west3-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-9-1h,gurobi-10.0.0,genx-10_IEEE_9_bus_DC_OPF +genx-10_IEEE_9_bus_DC_OPF,9-1h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,3628.54,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 01:46:00.435542,c4-standard-2,europe-west3-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-9-1h,highs-1.5.0.dev0,genx-10_IEEE_9_bus_DC_OPF +genx-10_IEEE_9_bus_DC_OPF,9-1h,scip,8.0.3,2022.0,ok,optimal,2416.6902964559995,4400.28,1151700.20054,,,2408.835828,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 02:49:42.157581,c4-standard-2,europe-west3-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-9-1h,scip-8.0.3,genx-10_IEEE_9_bus_DC_OPF +SWITCH-rps-simple,3-6ts,gurobi,10.0.0,2022.0,ok,optimal,0.1603048730030423,158.888,140343019.69266728,,,0.0049619674682617,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 03:30:07.112309,c4-standard-2,europe-west3-b,48cfc10,SWITCH-rps-simple-3-6ts,gurobi-10.0.0,SWITCH-rps-simple +SWITCH-rps-simple,3-6ts,highs,1.5.0.dev0,2022.0,ok,optimal,0.0097770159991341,147.82,140343019.69266728,,,0.0031895637512207,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 03:30:07.984714,c4-standard-2,europe-west3-b,48cfc10,SWITCH-rps-simple-3-6ts,highs-1.5.0.dev0,SWITCH-rps-simple +SWITCH-rps-simple,3-6ts,scip,8.0.3,2022.0,ok,optimal,0.0197045460008666,161.716,140343019.69266728,,,0.011368,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 03:30:08.613520,c4-standard-2,europe-west3-b,48cfc10,SWITCH-rps-simple-3-6ts,scip-8.0.3,SWITCH-rps-simple +OEMOF-offset-diesel-genset-nonconvex-investment,1-8760ts,gurobi,10.0.0,2022.0,ok,optimal,61.09613705899392,181.78,623.7156027544579,,,61.07941603660584,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 03:30:09.259786,c4-standard-2,europe-west3-b,48cfc10,OEMOF-offset-diesel-genset-nonconvex-investment-1-8760ts,gurobi-10.0.0,OEMOF-offset-diesel-genset-nonconvex-investment +OEMOF-offset-diesel-genset-nonconvex-investment,1-8760ts,highs,1.5.0.dev0,2022.0,ok,optimal,541.1492963530036,221.832,623.7528509370126,,,541.1325507164001,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 03:31:11.005898,c4-standard-2,europe-west3-b,48cfc10,OEMOF-offset-diesel-genset-nonconvex-investment-1-8760ts,highs-1.5.0.dev0,OEMOF-offset-diesel-genset-nonconvex-investment +OEMOF-offset-diesel-genset-nonconvex-investment,1-8760ts,scip,8.0.3,2022.0,ok,optimal,383.9262475060023,352.696,623.7156027544592,,,383.909586,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 03:40:12.802844,c4-standard-2,europe-west3-b,48cfc10,OEMOF-offset-diesel-genset-nonconvex-investment-1-8760ts,scip-8.0.3,OEMOF-offset-diesel-genset-nonconvex-investment +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29,73-1h,gurobi,10.0.0,2022.0,ok,optimal,53.12678073799907,272.136,1047440.6488318836,,,52.83984518051148,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 03:50:18.928044,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29,73-1h,highs,1.5.0.dev0,2022.0,ok,optimal,381.73856493600033,579.36,1047440.6488315046,,,381.37037467956543,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 03:51:13.021573,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29,73-1h,scip,8.0.3,2022.0,ok,optimal,734.8496810889992,1064.816,1047440.6488322646,,,734.621999,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 03:57:35.716940,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29 +genx-2_three_zones_w_electrolyzer-no_uc,3-1h,gurobi,10.0.0,2022.0,ok,optimal,131.5209071520003,575.308,19613.222882728605,,,123.78925704956056,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 04:09:51.594365,c4-standard-2,europe-west3-b,48cfc10,genx-2_three_zones_w_electrolyzer-no_uc-3-1h,gurobi-10.0.0,genx-2_three_zones_w_electrolyzer-no_uc +genx-2_three_zones_w_electrolyzer-no_uc,3-1h,highs,1.5.0.dev0,2022.0,ok,optimal,145.28865102800046,631.168,19613.22287909236,,,143.98191475868225,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 04:12:04.828172,c4-standard-2,europe-west3-b,48cfc10,genx-2_three_zones_w_electrolyzer-no_uc-3-1h,highs-1.5.0.dev0,genx-2_three_zones_w_electrolyzer-no_uc +genx-2_three_zones_w_electrolyzer-no_uc,3-1h,scip,8.0.3,2022.0,ok,optimal,242.3670187520038,1415.756,19613.222879092045,,,241.2271,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 04:14:31.879913,c4-standard-2,europe-west3-b,48cfc10,genx-2_three_zones_w_electrolyzer-no_uc-3-1h,scip-8.0.3,genx-2_three_zones_w_electrolyzer-no_uc +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314,73-1h,gurobi,11.0.0,2023.0,TO,Timeout,3600.0,589.228,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 04:22:06.116144,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314,73-1h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,1201.916,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 05:25:48.512291,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314,73-1h,scip,8.1.0,2023.0,TO,Timeout,3600.0,1415.884,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 06:29:27.770379,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314,73-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,168.24,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 07:33:08.932314,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314 +genx-10_IEEE_9_bus_DC_OPF,9-1h,gurobi,11.0.0,2023.0,ok,optimal,27.875404286001867,1965.128,1151700.20054,,,24.88855004310608,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 08:36:49.707443,c4-standard-2,europe-west3-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-9-1h,gurobi-11.0.0,genx-10_IEEE_9_bus_DC_OPF +genx-10_IEEE_9_bus_DC_OPF,9-1h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,3902.396,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 08:37:21.744856,c4-standard-2,europe-west3-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-9-1h,highs-1.6.0.dev0,genx-10_IEEE_9_bus_DC_OPF +genx-10_IEEE_9_bus_DC_OPF,9-1h,scip,8.1.0,2023.0,ok,optimal,2386.106619168997,4393.224,1151700.20054,,,2379.608765,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 09:41:03.683630,c4-standard-2,europe-west3-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-9-1h,scip-8.1.0,genx-10_IEEE_9_bus_DC_OPF +genx-10_IEEE_9_bus_DC_OPF,9-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,532.34,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 10:20:55.817383,c4-standard-2,europe-west3-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-9-1h,cbc-2.10.11,genx-10_IEEE_9_bus_DC_OPF +SWITCH-rps-simple,3-6ts,gurobi,11.0.0,2023.0,ok,optimal,0.2477234389953082,167.532,140343019.69266728,,,0.0434558391571044,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 11:24:36.449870,c4-standard-2,europe-west3-b,48cfc10,SWITCH-rps-simple-3-6ts,gurobi-11.0.0,SWITCH-rps-simple +SWITCH-rps-simple,3-6ts,highs,1.6.0.dev0,2023.0,ok,optimal,0.0207471090034232,157.612,140343019.69266728,,,0.0134744644165039,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 11:24:38.458800,c4-standard-2,europe-west3-b,48cfc10,SWITCH-rps-simple-3-6ts,highs-1.6.0.dev0,SWITCH-rps-simple +SWITCH-rps-simple,3-6ts,scip,8.1.0,2023.0,ok,optimal,0.0190218400020967,171.156,140343019.69266728,,,0.0112299999999999,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 11:24:39.222807,c4-standard-2,europe-west3-b,48cfc10,SWITCH-rps-simple-3-6ts,scip-8.1.0,SWITCH-rps-simple +SWITCH-rps-simple,3-6ts,cbc,2.10.11,2023.0,ok,optimal,0.0843548939956235,156.024,140343019.69266725,,,0.03,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 11:24:39.986930,c4-standard-2,europe-west3-b,48cfc10,SWITCH-rps-simple-3-6ts,cbc-2.10.11,SWITCH-rps-simple +OEMOF-offset-diesel-genset-nonconvex-investment,1-8760ts,gurobi,11.0.0,2023.0,ok,optimal,64.68455065699527,190.248,623.7156027544564,,,64.667729139328,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 11:24:40.808131,c4-standard-2,europe-west3-b,48cfc10,OEMOF-offset-diesel-genset-nonconvex-investment-1-8760ts,gurobi-11.0.0,OEMOF-offset-diesel-genset-nonconvex-investment +OEMOF-offset-diesel-genset-nonconvex-investment,1-8760ts,highs,1.6.0.dev0,2023.0,ok,optimal,549.3815304210002,237.604,623.7528509370126,,,549.3663609027863,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 11:25:46.259505,c4-standard-2,europe-west3-b,48cfc10,OEMOF-offset-diesel-genset-nonconvex-investment-1-8760ts,highs-1.6.0.dev0,OEMOF-offset-diesel-genset-nonconvex-investment +OEMOF-offset-diesel-genset-nonconvex-investment,1-8760ts,scip,8.1.0,2023.0,ok,optimal,384.3680740459968,361.5,623.7156027544592,,,384.352054,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 11:34:56.402204,c4-standard-2,europe-west3-b,48cfc10,OEMOF-offset-diesel-genset-nonconvex-investment-1-8760ts,scip-8.1.0,OEMOF-offset-diesel-genset-nonconvex-investment +OEMOF-offset-diesel-genset-nonconvex-investment,1-8760ts,cbc,2.10.11,2023.0,TO,Timeout,3600.0,154.372,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 11:41:21.543474,c4-standard-2,europe-west3-b,48cfc10,OEMOF-offset-diesel-genset-nonconvex-investment-1-8760ts,cbc-2.10.11,OEMOF-offset-diesel-genset-nonconvex-investment +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29,73-1h,gurobi,11.0.0,2023.0,ok,optimal,48.97322107899527,274.712,1047440.6488344624,,,48.56974792480469,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 12:45:02.080410,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29,73-1h,highs,1.6.0.dev0,2023.0,ok,optimal,372.7516721790016,601.328,1047440.6488315046,,,372.5222368240357,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 12:45:52.009338,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29,73-1h,scip,8.1.0,2023.0,ok,optimal,733.7014228820044,1073.068,1047440.6488322646,,,733.500131,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 12:52:05.691901,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29,73-1h,cbc,2.10.11,2023.0,ok,optimal,906.9759035379976,333.412,1047440.64883185,,,906.78,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 13:04:20.427457,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29 +genx-2_three_zones_w_electrolyzer-no_uc,3-1h,gurobi,11.0.0,2023.0,ok,optimal,128.8858295030077,568.508,19613.22287945323,,,127.52399921417236,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 13:19:28.339884,c4-standard-2,europe-west3-b,48cfc10,genx-2_three_zones_w_electrolyzer-no_uc-3-1h,gurobi-11.0.0,genx-2_three_zones_w_electrolyzer-no_uc +genx-2_three_zones_w_electrolyzer-no_uc,3-1h,highs,1.6.0.dev0,2023.0,ok,optimal,141.60602819699852,643.936,19613.22287909236,,,140.50906205177307,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 13:21:38.844167,c4-standard-2,europe-west3-b,48cfc10,genx-2_three_zones_w_electrolyzer-no_uc-3-1h,highs-1.6.0.dev0,genx-2_three_zones_w_electrolyzer-no_uc +genx-2_three_zones_w_electrolyzer-no_uc,3-1h,scip,8.1.0,2023.0,ok,optimal,241.1392788880039,1413.344,19613.222879092045,,,240.18225,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 13:24:02.028878,c4-standard-2,europe-west3-b,48cfc10,genx-2_three_zones_w_electrolyzer-no_uc-3-1h,scip-8.1.0,genx-2_three_zones_w_electrolyzer-no_uc +genx-2_three_zones_w_electrolyzer-no_uc,3-1h,cbc,2.10.11,2023.0,ok,optimal,154.03275611100253,369.704,19613.22287684,,,,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 13:28:05.140156,c4-standard-2,europe-west3-b,48cfc10,genx-2_three_zones_w_electrolyzer-no_uc-3-1h,cbc-2.10.11,genx-2_three_zones_w_electrolyzer-no_uc +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314,73-1h,gurobi,12.0.0,2024.0,TO,Timeout,3600.0,557.556,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 13:31:19.297875,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314,73-1h,highs,1.9.0,2024.0,TO,Timeout,3600.0,1112.496,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 14:35:00.130727,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314,73-1h,scip,9.2.0,2024.0,TO,Timeout,3600.0,1396.284,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 15:38:40.954328,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314,73-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,150.884,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 16:42:22.165215,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314 +genx-10_IEEE_9_bus_DC_OPF,9-1h,gurobi,12.0.0,2024.0,ok,optimal,28.503911330000847,1956.624,1151700.2005396802,0.0,0.0,25.19941806793213,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 17:46:02.931076,c4-standard-2,europe-west3-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-9-1h,gurobi-12.0.0,genx-10_IEEE_9_bus_DC_OPF +genx-10_IEEE_9_bus_DC_OPF,9-1h,highs,1.9.0,2024.0,TO,Timeout,3600.0,3956.692,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 17:46:38.666729,c4-standard-2,europe-west3-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-9-1h,highs-1.9.0,genx-10_IEEE_9_bus_DC_OPF +genx-10_IEEE_9_bus_DC_OPF,9-1h,scip,9.2.0,2024.0,ok,optimal,2397.2538860679924,4408.264,1151700.20054,0.0,0.0,2390.719136,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 18:50:20.485589,c4-standard-2,europe-west3-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-9-1h,scip-9.2.0,genx-10_IEEE_9_bus_DC_OPF +genx-10_IEEE_9_bus_DC_OPF,9-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,515.96,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 19:30:27.257469,c4-standard-2,europe-west3-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-9-1h,cbc-2.10.12,genx-10_IEEE_9_bus_DC_OPF +SWITCH-rps-simple,3-6ts,gurobi,12.0.0,2024.0,ok,optimal,0.2749276810063747,152.48,140343019.69266728,0.0,0.0,0.0438008308410644,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 20:34:09.398642,c4-standard-2,europe-west3-b,48cfc10,SWITCH-rps-simple-3-6ts,gurobi-12.0.0,SWITCH-rps-simple +SWITCH-rps-simple,3-6ts,highs,1.9.0,2024.0,ok,optimal,0.0235505500022554,141.904,140343019.69266728,0.0,0.0,0.0159456729888916,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 20:34:10.717987,c4-standard-2,europe-west3-b,48cfc10,SWITCH-rps-simple-3-6ts,highs-1.9.0,SWITCH-rps-simple +SWITCH-rps-simple,3-6ts,scip,9.2.0,2024.0,ok,optimal,0.1094271729962201,155.18,140343019.69266728,0.0,0.0,0.02291,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 20:34:11.270368,c4-standard-2,europe-west3-b,48cfc10,SWITCH-rps-simple-3-6ts,scip-9.2.0,SWITCH-rps-simple +SWITCH-rps-simple,3-6ts,cbc,2.10.12,2024.0,ok,optimal,0.0768713020079303,140.956,140343019.69266725,0.0,,0.03,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 20:34:11.904703,c4-standard-2,europe-west3-b,48cfc10,SWITCH-rps-simple-3-6ts,cbc-2.10.12,SWITCH-rps-simple +OEMOF-offset-diesel-genset-nonconvex-investment,1-8760ts,gurobi,12.0.0,2024.0,ok,optimal,62.04532308700436,178.264,623.7156027544579,0.0,9.91485594407914e-05,62.029268980026245,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 20:34:12.506947,c4-standard-2,europe-west3-b,48cfc10,OEMOF-offset-diesel-genset-nonconvex-investment-1-8760ts,gurobi-12.0.0,OEMOF-offset-diesel-genset-nonconvex-investment +OEMOF-offset-diesel-genset-nonconvex-investment,1-8760ts,highs,1.9.0,2024.0,ok,optimal,875.7681011670065,243.6,623.7156027541764,0.0,9.995073018794184e-05,875.7505078315735,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 20:35:15.098178,c4-standard-2,europe-west3-b,48cfc10,OEMOF-offset-diesel-genset-nonconvex-investment-1-8760ts,highs-1.9.0,OEMOF-offset-diesel-genset-nonconvex-investment +OEMOF-offset-diesel-genset-nonconvex-investment,1-8760ts,scip,9.2.0,2024.0,ok,optimal,382.1992126679979,343.668,623.7156027544592,1.5178267952823734e-15,0.0,382.182853,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 20:49:51.392822,c4-standard-2,europe-west3-b,48cfc10,OEMOF-offset-diesel-genset-nonconvex-investment-1-8760ts,scip-9.2.0,OEMOF-offset-diesel-genset-nonconvex-investment +OEMOF-offset-diesel-genset-nonconvex-investment,1-8760ts,cbc,2.10.12,2024.0,TO,Timeout,3600.0,136.568,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 20:56:14.130665,c4-standard-2,europe-west3-b,48cfc10,OEMOF-offset-diesel-genset-nonconvex-investment-1-8760ts,cbc-2.10.12,OEMOF-offset-diesel-genset-nonconvex-investment +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29,73-1h,gurobi,12.0.0,2024.0,ok,optimal,36.12526781500492,253.764,1047440.648820426,0.0,8.298764806096229e-05,35.677021980285645,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 21:59:55.675913,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29,73-1h,highs,1.9.0,2024.0,ok,optimal,438.1795857609977,574.04,1047440.6488319138,1.1102230246251563e-16,9.925005524212052e-05,437.76307344436646,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 22:00:32.724370,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29,73-1h,scip,9.2.0,2024.0,ok,optimal,729.0981146979902,1057.004,1047440.6488322646,0.0,0.0,728.897086,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 22:07:51.821979,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29,73-1h,cbc,2.10.12,2024.0,ok,optimal,899.4947056949895,330.104,1047440.64883185,0.0,,898.94,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 22:20:01.885450,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29 +genx-2_three_zones_w_electrolyzer-no_uc,3-1h,gurobi,12.0.0,2024.0,ok,optimal,105.7669694119977,559.388,19613.222881754195,,,104.43210005760191,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 22:35:02.270950,c4-standard-2,europe-west3-b,48cfc10,genx-2_three_zones_w_electrolyzer-no_uc-3-1h,gurobi-12.0.0,genx-2_three_zones_w_electrolyzer-no_uc +genx-2_three_zones_w_electrolyzer-no_uc,3-1h,highs,1.9.0,2024.0,ok,optimal,143.61127225900418,635.14,19613.22287909236,,,142.22199630737305,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 22:36:50.216512,c4-standard-2,europe-west3-b,48cfc10,genx-2_three_zones_w_electrolyzer-no_uc-3-1h,highs-1.9.0,genx-2_three_zones_w_electrolyzer-no_uc +genx-2_three_zones_w_electrolyzer-no_uc,3-1h,scip,9.2.0,2024.0,ok,optimal,240.4312716669956,1398.788,19613.222879092045,,,239.481924,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 22:39:16.111327,c4-standard-2,europe-west3-b,48cfc10,genx-2_three_zones_w_electrolyzer-no_uc-3-1h,scip-9.2.0,genx-2_three_zones_w_electrolyzer-no_uc +genx-2_three_zones_w_electrolyzer-no_uc,3-1h,cbc,2.10.12,2024.0,ok,optimal,154.96652103700035,397.9,19613.22287684,,,,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 22:43:19.060858,c4-standard-2,europe-west3-b,48cfc10,genx-2_three_zones_w_electrolyzer-no_uc-3-1h,cbc-2.10.12,genx-2_three_zones_w_electrolyzer-no_uc +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314,73-1h,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,572.096,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 22:46:30.963193,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314,73-1h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1213.408,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-16 23:50:10.787976,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314,73-1h,scip,10.0.0,2025.0,TO,Timeout,3600.0,1423.924,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-17 00:53:49.687243,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day314 +genx-10_IEEE_9_bus_DC_OPF,9-1h,gurobi,13.0.0,2025.0,ok,optimal,42.431953117004014,1996.02,1151700.2005397468,0.0,0.0,39.19697999954224,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-17 01:57:28.584514,c4-standard-2,europe-west3-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-9-1h,gurobi-13.0.0,genx-10_IEEE_9_bus_DC_OPF +genx-10_IEEE_9_bus_DC_OPF,9-1h,highs,1.12.0,2025.0,TO,Timeout,3600.0,2718.264,,,,3600.0,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-17 01:58:16.197636,c4-standard-2,europe-west3-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-9-1h,highs-1.12.0,genx-10_IEEE_9_bus_DC_OPF +genx-10_IEEE_9_bus_DC_OPF,9-1h,scip,10.0.0,2025.0,ok,optimal,2407.9490702969924,4411.648,1151700.20054,0.0,0.0,2400.890102,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-17 03:01:55.733046,c4-standard-2,europe-west3-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-9-1h,scip-10.0.0,genx-10_IEEE_9_bus_DC_OPF +SWITCH-rps-simple,3-6ts,gurobi,13.0.0,2025.0,ok,optimal,0.1588529270084109,181.856,140343019.69266728,0.0,0.0,0.0047512054443359,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-17 03:42:10.772307,c4-standard-2,europe-west3-b,48cfc10,SWITCH-rps-simple-3-6ts,gurobi-13.0.0,SWITCH-rps-simple +SWITCH-rps-simple,3-6ts,highs,1.12.0,2025.0,ok,optimal,0.0165572489931946,169.592,140343019.69266728,0.0,0.0,0.0068216323852539,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-17 03:42:11.773146,c4-standard-2,europe-west3-b,48cfc10,SWITCH-rps-simple-3-6ts,highs-1.12.0,SWITCH-rps-simple +SWITCH-rps-simple,3-6ts,scip,10.0.0,2025.0,ok,optimal,0.0200558079959591,183.22,140343019.69266728,0.0,0.0,0.011587,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-17 03:42:12.547527,c4-standard-2,europe-west3-b,48cfc10,SWITCH-rps-simple-3-6ts,scip-10.0.0,SWITCH-rps-simple +OEMOF-offset-diesel-genset-nonconvex-investment,1-8760ts,gurobi,13.0.0,2025.0,ok,optimal,39.20460666199506,207.276,623.7156027544577,0.0,9.6837529812578e-05,39.18841910362244,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-17 03:42:13.326108,c4-standard-2,europe-west3-b,48cfc10,OEMOF-offset-diesel-genset-nonconvex-investment-1-8760ts,gurobi-13.0.0,OEMOF-offset-diesel-genset-nonconvex-investment +OEMOF-offset-diesel-genset-nonconvex-investment,1-8760ts,highs,1.12.0,2025.0,ok,optimal,733.5547720959876,270.732,623.7156027544571,2.97280683887021e-13,9.988314419856584e-05,733.5390636920929,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-17 03:42:53.314032,c4-standard-2,europe-west3-b,48cfc10,OEMOF-offset-diesel-genset-nonconvex-investment-1-8760ts,highs-1.12.0,OEMOF-offset-diesel-genset-nonconvex-investment +OEMOF-offset-diesel-genset-nonconvex-investment,1-8760ts,scip,10.0.0,2025.0,ok,optimal,381.4808397230081,372.132,623.7156027544592,1.5178267952823734e-15,0.0,381.462527,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-17 03:55:07.633163,c4-standard-2,europe-west3-b,48cfc10,OEMOF-offset-diesel-genset-nonconvex-investment-1-8760ts,scip-10.0.0,OEMOF-offset-diesel-genset-nonconvex-investment +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29,73-1h,gurobi,13.0.0,2025.0,ok,optimal,67.53143552700931,320.552,1047440.648400986,0.0,6.278008665832278e-05,67.23491287231445,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-17 04:05:11.567002,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29,73-1h,highs,1.12.0,2025.0,ok,optimal,399.302548275009,608.284,1047440.648831672,1.5020248845374436e-12,9.88503748362566e-05,399.0516555309296,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-17 04:06:20.105786,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29,73-1h,scip,10.0.0,2025.0,ok,optimal,728.2866948709998,1083.804,1047440.6488322646,0.0,0.0,728.078024,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-17 04:13:00.400316,c4-standard-2,europe-west3-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day29 +genx-2_three_zones_w_electrolyzer-no_uc,3-1h,gurobi,13.0.0,2025.0,ok,optimal,101.89560621099372,590.808,19613.22288160002,,,100.62870502471924,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-17 04:25:09.761908,c4-standard-2,europe-west3-b,48cfc10,genx-2_three_zones_w_electrolyzer-no_uc-3-1h,gurobi-13.0.0,genx-2_three_zones_w_electrolyzer-no_uc +genx-2_three_zones_w_electrolyzer-no_uc,3-1h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,118.11894473699796,410.7,19613.222879,,,118.11894473699796,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-17 04:26:53.450181,c4-standard-2,europe-west3-b,48cfc10,genx-2_three_zones_w_electrolyzer-no_uc-3-1h,highs-hipo-1.12.0-hipo,genx-2_three_zones_w_electrolyzer-no_uc +genx-2_three_zones_w_electrolyzer-no_uc,3-1h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,172.4892202379997,235.44,19613.22288,,,172.4892202379997,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-17 04:28:52.326908,c4-standard-2,europe-west3-b,48cfc10,genx-2_three_zones_w_electrolyzer-no_uc-3-1h,highs-ipx-1.12.0-hipo,genx-2_three_zones_w_electrolyzer-no_uc +genx-2_three_zones_w_electrolyzer-no_uc,3-1h,highs,1.12.0,2025.0,ok,optimal,141.40889186399,665.576,19613.22287909139,,,140.24873566627502,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-17 04:31:45.567629,c4-standard-2,europe-west3-b,48cfc10,genx-2_three_zones_w_electrolyzer-no_uc-3-1h,highs-1.12.0,genx-2_three_zones_w_electrolyzer-no_uc +genx-2_three_zones_w_electrolyzer-no_uc,3-1h,scip,10.0.0,2025.0,ok,optimal,240.2650477049901,1431.968,19613.222879092045,,,239.261351,3600.0,benchmark-instance-s-m-10,20251215-run-S-M,2025-12-17 04:34:08.694842,c4-standard-2,europe-west3-b,48cfc10,genx-2_three_zones_w_electrolyzer-no_uc-3-1h,scip-10.0.0,genx-2_three_zones_w_electrolyzer-no_uc +genx-1_three_zones,3-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,191.18,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-15 17:30:57.841744,c4-standard-2,europe-west9-b,48cfc10,genx-1_three_zones-3-1h,glpk-5.0,genx-1_three_zones +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,131.576,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-15 18:34:01.476482,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332 +OEMOF-v1-invest-optimize-all-technologies,1-8760ts,glpk,5.0,2020.0,ER,,,157.06,,,,,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-15 19:37:04.684709,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v1-invest-optimize-all-technologies-1-8760ts,glpk-5.0,OEMOF-v1-invest-optimize-all-technologies +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332,73-1h,glpk,5.0,2020.0,warning,infeasible_or_unbounded,0.5773473460003515,157.84,,,,,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-15 19:37:31.587546,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,127.696,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-15 19:37:32.579515,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314 +pypsa-power+ely+battery-ucgas,1-1h,glpk,5.0,2020.0,ok,optimal,157.38891903999863,300.992,79990720210.0,,,,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-15 20:40:36.076704,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely+battery-ucgas-1-1h,glpk-5.0,pypsa-power+ely+battery-ucgas +pypsa-power+ely-co2,1-1h,glpk,5.0,2020.0,ok,optimal,97.941517285999,245.548,84667526620.0,,,,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-15 20:43:13.883802,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-1-1h,glpk-5.0,pypsa-power+ely-co2 +genx-10_IEEE_9_bus_DC_OPF-no_uc,9-1h,glpk,5.0,2020.0,warning,unknown,0.0584553610005968,237.884,,,,,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-15 20:44:52.248521,c4-standard-2,europe-west9-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-no_uc-9-1h,glpk-5.0,genx-10_IEEE_9_bus_DC_OPF-no_uc +genx-1_three_zones,3-1h,gurobi,10.0.0,2022.0,TO,Timeout,3600.0,1443.96,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-15 20:46:31.704147,c4-standard-2,europe-west9-b,48cfc10,genx-1_three_zones-3-1h,gurobi-10.0.0,genx-1_three_zones +genx-1_three_zones,3-1h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,3200.696,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-15 21:49:35.395923,c4-standard-2,europe-west9-b,48cfc10,genx-1_three_zones-3-1h,highs-1.5.0.dev0,genx-1_three_zones +genx-1_three_zones,3-1h,scip,8.0.3,2022.0,TO,Timeout,3600.0,1560.032,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-15 22:52:39.002849,c4-standard-2,europe-west9-b,48cfc10,genx-1_three_zones-3-1h,scip-8.0.3,genx-1_three_zones +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332,73-1h,gurobi,10.0.0,2022.0,ok,optimal,403.0889892369996,368.796,880489.4499393078,,,402.8446159362793,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-15 23:55:42.279693,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332,73-1h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1353.368,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 00:02:25.977581,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332,73-1h,scip,8.0.3,2022.0,TO,Timeout,3600.0,1999.544,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 01:05:29.357644,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332 +OEMOF-v1-invest-optimize-all-technologies,1-8760ts,gurobi,10.0.0,2022.0,ok,optimal,0.884713171999465,385.876,112686100.33285016,,,0.1635680198669433,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 02:08:32.915760,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v1-invest-optimize-all-technologies-1-8760ts,gurobi-10.0.0,OEMOF-v1-invest-optimize-all-technologies +OEMOF-v1-invest-optimize-all-technologies,1-8760ts,highs,1.5.0.dev0,2022.0,ok,optimal,1.4612636290003138,393.56,112686100.3328502,,,0.8556711673736572,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 02:08:34.796442,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v1-invest-optimize-all-technologies-1-8760ts,highs-1.5.0.dev0,OEMOF-v1-invest-optimize-all-technologies +OEMOF-v1-invest-optimize-all-technologies,1-8760ts,scip,8.0.3,2022.0,ok,optimal,7.373477321998507,750.4,112686100.33285011,,,6.812462,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 02:08:37.275036,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v1-invest-optimize-all-technologies-1-8760ts,scip-8.0.3,OEMOF-v1-invest-optimize-all-technologies +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332,73-1h,gurobi,10.0.0,2022.0,ok,optimal,72.42618821200085,300.22,893670.8875380402,,,72.30395293235779,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 02:08:45.800041,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332,73-1h,highs,1.5.0.dev0,2022.0,ok,optimal,1776.877761920001,1011.084,893670.8881064572,,,1776.559519290924,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 02:09:59.001355,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332,73-1h,scip,8.0.3,2022.0,ok,optimal,1367.807236683002,1201.964,893670.8877959596,,,1367.61943,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 02:39:36.694112,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314,73-1h,gurobi,10.0.0,2022.0,ok,optimal,16.138399985000433,205.028,289544.032677293,,,15.92957592010498,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 03:02:25.341503,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314,73-1h,highs,1.5.0.dev0,2022.0,ok,optimal,117.02644629499991,294.536,289544.0326772929,,,116.9602916240692,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 03:02:42.047016,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314,73-1h,scip,8.0.3,2022.0,ok,optimal,354.67059730800247,540.976,289544.0326772926,,,354.587815,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 03:04:39.653605,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314 +pypsa-power+ely+battery-ucgas,1-1h,gurobi,10.0.0,2022.0,ok,optimal,16.377129344000423,531.42,79990720209.56836,,,12.11633014678955,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 03:13:37.977978,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely+battery-ucgas-1-1h,gurobi-10.0.0,pypsa-power+ely+battery-ucgas +pypsa-power+ely+battery-ucgas,1-1h,highs,1.5.0.dev0,2022.0,ok,optimal,106.22243613399768,699.476,79990720209.56844,,,105.27853870391846,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 03:13:55.679478,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely+battery-ucgas-1-1h,highs-1.5.0.dev0,pypsa-power+ely+battery-ucgas +pypsa-power+ely+battery-ucgas,1-1h,scip,8.0.3,2022.0,ok,optimal,172.94205273399712,1189.268,79990720209.56842,,,171.975172,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 03:15:43.234310,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely+battery-ucgas-1-1h,scip-8.0.3,pypsa-power+ely+battery-ucgas +pypsa-power+ely-co2,1-1h,gurobi,10.0.0,2022.0,ok,optimal,11.360021233005682,421.976,84667526618.3104,,,10.731858015060425,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 03:18:37.740689,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-1-1h,gurobi-10.0.0,pypsa-power+ely-co2 +pypsa-power+ely-co2,1-1h,highs,1.5.0.dev0,2022.0,ok,optimal,45.54925958200329,490.74,84667526618.30804,,,44.926294803619385,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 03:18:50.118595,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-1-1h,highs-1.5.0.dev0,pypsa-power+ely-co2 +pypsa-power+ely-co2,1-1h,scip,8.0.3,2022.0,ok,optimal,77.77000182899792,792.752,84667526618.30798,,,77.206214,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 03:19:36.664788,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-1-1h,scip-8.0.3,pypsa-power+ely-co2 +genx-10_IEEE_9_bus_DC_OPF-no_uc,9-1h,gurobi,10.0.0,2022.0,ok,optimal,20.51643137099745,2184.872,1149079.0505399832,,,15.506612062454224,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 03:20:55.586541,c4-standard-2,europe-west9-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-no_uc-9-1h,gurobi-10.0.0,genx-10_IEEE_9_bus_DC_OPF-no_uc +genx-10_IEEE_9_bus_DC_OPF-no_uc,9-1h,highs,1.5.0.dev0,2022.0,ok,optimal,19.627130149005097,2346.772,1150959.0505401818,,,13.428508758544922,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 03:21:21.865481,c4-standard-2,europe-west9-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-no_uc-9-1h,highs-1.5.0.dev0,genx-10_IEEE_9_bus_DC_OPF-no_uc +genx-10_IEEE_9_bus_DC_OPF-no_uc,9-1h,scip,8.0.3,2022.0,ER,,,259.096,,,,,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 03:21:47.573199,c4-standard-2,europe-west9-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-no_uc-9-1h,scip-8.0.3,genx-10_IEEE_9_bus_DC_OPF-no_uc +genx-1_three_zones,3-1h,gurobi,11.0.0,2023.0,TO,Timeout,3600.0,1501.668,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 03:24:40.226615,c4-standard-2,europe-west9-b,48cfc10,genx-1_three_zones-3-1h,gurobi-11.0.0,genx-1_three_zones +genx-1_three_zones,3-1h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,3300.752,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 04:27:43.053151,c4-standard-2,europe-west9-b,48cfc10,genx-1_three_zones-3-1h,highs-1.6.0.dev0,genx-1_three_zones +genx-1_three_zones,3-1h,scip,8.1.0,2023.0,TO,Timeout,3600.0,1565.776,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 05:30:46.312724,c4-standard-2,europe-west9-b,48cfc10,genx-1_three_zones-3-1h,scip-8.1.0,genx-1_three_zones +genx-1_three_zones,3-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,222.496,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 06:33:49.538709,c4-standard-2,europe-west9-b,48cfc10,genx-1_three_zones-3-1h,cbc-2.10.11,genx-1_three_zones +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332,73-1h,gurobi,11.0.0,2023.0,ok,optimal,312.699311618002,302.776,880489.4441008847,,,312.43585681915283,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 07:36:53.365398,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332,73-1h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,1268.512,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 07:42:06.752012,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332,73-1h,scip,8.1.0,2023.0,TO,Timeout,3600.0,2008.872,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 08:45:09.432558,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332,73-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,163.092,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 09:48:12.694544,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332 +OEMOF-v1-invest-optimize-all-technologies,1-8760ts,gurobi,11.0.0,2023.0,ok,optimal,0.8151780199987115,407.032,112686100.33285016,,,0.1569240093231201,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 10:51:15.585628,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v1-invest-optimize-all-technologies-1-8760ts,gurobi-11.0.0,OEMOF-v1-invest-optimize-all-technologies +OEMOF-v1-invest-optimize-all-technologies,1-8760ts,highs,1.6.0.dev0,2023.0,ok,optimal,1.4322082409998984,415.736,112686100.3328502,,,0.8329205513000488,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 10:51:17.486547,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v1-invest-optimize-all-technologies-1-8760ts,highs-1.6.0.dev0,OEMOF-v1-invest-optimize-all-technologies +OEMOF-v1-invest-optimize-all-technologies,1-8760ts,scip,8.1.0,2023.0,ok,optimal,7.304339809998055,771.512,112686100.33285011,,,6.830258,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 10:51:20.070244,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v1-invest-optimize-all-technologies-1-8760ts,scip-8.1.0,OEMOF-v1-invest-optimize-all-technologies +OEMOF-v1-invest-optimize-all-technologies,1-8760ts,cbc,2.10.11,2023.0,ok,optimal,1.697268620999239,286.744,112686100.33285016,,,,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 10:51:28.626759,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v1-invest-optimize-all-technologies-1-8760ts,cbc-2.10.11,OEMOF-v1-invest-optimize-all-technologies +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332,73-1h,gurobi,11.0.0,2023.0,ok,optimal,47.49872153099568,273.428,893670.8876215103,,,47.38699102401733,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 10:51:31.361867,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332,73-1h,highs,1.6.0.dev0,2023.0,ok,optimal,1739.3366743460065,1031.016,893670.8881064572,,,1739.1460914611816,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 10:52:19.637793,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332,73-1h,scip,8.1.0,2023.0,ok,optimal,1371.5240458349945,1211.74,893670.8877959596,,,1371.352533,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 11:21:19.767568,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332,73-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,188.636,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 11:44:12.126418,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314,73-1h,gurobi,11.0.0,2023.0,ok,optimal,12.31129656000121,213.12,289544.03267729306,,,12.132303953170776,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 12:47:15.632805,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314,73-1h,highs,1.6.0.dev0,2023.0,ok,optimal,113.86837956299132,308.736,289544.0326772929,,,113.82769203186037,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 12:47:28.608463,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314,73-1h,scip,8.1.0,2023.0,ok,optimal,356.4075213509932,554.008,289544.0326772926,,,356.348848,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 12:49:23.131293,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314,73-1h,cbc,2.10.11,2023.0,ok,optimal,2682.127300652006,173.272,289544.03267729,,,2682.07,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 12:55:20.218350,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314 +pypsa-power+ely+battery-ucgas,1-1h,gurobi,11.0.0,2023.0,ok,optimal,10.4984824580024,531.488,79990720209.56836,,,9.8346688747406,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 13:40:03.001714,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely+battery-ucgas-1-1h,gurobi-11.0.0,pypsa-power+ely+battery-ucgas +pypsa-power+ely+battery-ucgas,1-1h,highs,1.6.0.dev0,2023.0,ok,optimal,105.32571536299656,619.148,79990720209.56844,,,104.53244471549988,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 13:40:14.764887,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely+battery-ucgas-1-1h,highs-1.6.0.dev0,pypsa-power+ely+battery-ucgas +pypsa-power+ely+battery-ucgas,1-1h,scip,8.1.0,2023.0,ok,optimal,173.01109451599768,1186.308,79990720209.56842,,,172.178331,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 13:42:01.302622,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely+battery-ucgas-1-1h,scip-8.1.0,pypsa-power+ely+battery-ucgas +pypsa-power+ely+battery-ucgas,1-1h,cbc,2.10.11,2023.0,ok,optimal,313.547089633008,571.48,79990720209.56766,,,312.78,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 13:48:00.204438,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely+battery-ucgas-1-1h,cbc-2.10.11,pypsa-power+ely+battery-ucgas +pypsa-power+ely-co2,1-1h,gurobi,11.0.0,2023.0,ok,optimal,18.527397927013222,417.432,84667526618.31042,,,17.843631982803345,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 13:53:15.034840,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-1-1h,gurobi-11.0.0,pypsa-power+ely-co2 +pypsa-power+ely-co2,1-1h,highs,1.6.0.dev0,2023.0,ok,optimal,46.3102441910014,479.956,84667526618.30804,,,45.766902446746826,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 13:53:34.621798,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-1-1h,highs-1.6.0.dev0,pypsa-power+ely-co2 +pypsa-power+ely-co2,1-1h,scip,8.1.0,2023.0,ok,optimal,77.89125929999864,792.592,84667526618.30798,,,77.417794,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 13:54:21.966836,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-1-1h,scip-8.1.0,pypsa-power+ely-co2 +pypsa-power+ely-co2,1-1h,cbc,2.10.11,2023.0,ok,optimal,9.546422981002252,280.964,84667526618.31052,,,,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 13:55:41.043824,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-1-1h,cbc-2.10.11,pypsa-power+ely-co2 +genx-10_IEEE_9_bus_DC_OPF-no_uc,9-1h,gurobi,11.0.0,2023.0,ok,optimal,20.55242841799918,2125.752,1149079.0505399832,,,16.47263503074646,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 13:55:51.594811,c4-standard-2,europe-west9-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-no_uc-9-1h,gurobi-11.0.0,genx-10_IEEE_9_bus_DC_OPF-no_uc +genx-10_IEEE_9_bus_DC_OPF-no_uc,9-1h,highs,1.6.0.dev0,2023.0,ok,optimal,18.100229981995653,2333.996,1150959.0505401818,,,12.9433856010437,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 13:56:16.931221,c4-standard-2,europe-west9-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-no_uc-9-1h,highs-1.6.0.dev0,genx-10_IEEE_9_bus_DC_OPF-no_uc +genx-10_IEEE_9_bus_DC_OPF-no_uc,9-1h,scip,8.1.0,2023.0,ER,,,269.12,,,,,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 13:56:39.619140,c4-standard-2,europe-west9-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-no_uc-9-1h,scip-8.1.0,genx-10_IEEE_9_bus_DC_OPF-no_uc +genx-10_IEEE_9_bus_DC_OPF-no_uc,9-1h,cbc,2.10.11,2023.0,ok,optimal,105.42244433199812,1207.232,1149079.05053998,,,,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 13:56:40.360968,c4-standard-2,europe-west9-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-no_uc-9-1h,cbc-2.10.11,genx-10_IEEE_9_bus_DC_OPF-no_uc +genx-1_three_zones,3-1h,gurobi,12.0.0,2024.0,TO,Timeout,3600.0,1385.368,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 13:58:59.250793,c4-standard-2,europe-west9-b,48cfc10,genx-1_three_zones-3-1h,gurobi-12.0.0,genx-1_three_zones +genx-1_three_zones,3-1h,highs,1.9.0,2024.0,TO,Timeout,3600.0,3730.388,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 15:02:02.381585,c4-standard-2,europe-west9-b,48cfc10,genx-1_three_zones-3-1h,highs-1.9.0,genx-1_three_zones +genx-1_three_zones,3-1h,scip,9.2.0,2024.0,TO,Timeout,3600.0,1549.968,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 16:05:06.483124,c4-standard-2,europe-west9-b,48cfc10,genx-1_three_zones-3-1h,scip-9.2.0,genx-1_three_zones +genx-1_three_zones,3-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,206.016,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 17:08:10.257466,c4-standard-2,europe-west9-b,48cfc10,genx-1_three_zones-3-1h,cbc-2.10.12,genx-1_three_zones +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332,73-1h,gurobi,12.0.0,2024.0,ok,optimal,294.1651020349964,291.876,880489.449951099,0.0,9.987228946772084e-05,293.9081130027771,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 18:11:13.612912,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332,73-1h,highs,1.9.0,2024.0,TO,Timeout,3600.0,1122.636,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 18:16:08.362944,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332,73-1h,scip,9.2.0,2024.0,TO,Timeout,3600.0,1992.456,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 19:19:11.567388,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332,73-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,145.184,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 20:22:15.133620,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332 +OEMOF-v1-invest-optimize-all-technologies,1-8760ts,gurobi,12.0.0,2024.0,ok,optimal,1.0753272020083386,390.516,112686100.33285016,,,0.167557954788208,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 21:25:18.803153,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v1-invest-optimize-all-technologies-1-8760ts,gurobi-12.0.0,OEMOF-v1-invest-optimize-all-technologies +OEMOF-v1-invest-optimize-all-technologies,1-8760ts,highs,1.9.0,2024.0,ok,optimal,1.4921355499973288,375.532,112686100.3328502,,,0.8587534427642822,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 21:25:21.045172,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v1-invest-optimize-all-technologies-1-8760ts,highs-1.9.0,OEMOF-v1-invest-optimize-all-technologies +OEMOF-v1-invest-optimize-all-technologies,1-8760ts,scip,9.2.0,2024.0,ok,optimal,7.296760683995672,739.824,112686100.33285011,,,6.823654,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 21:25:23.744703,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v1-invest-optimize-all-technologies-1-8760ts,scip-9.2.0,OEMOF-v1-invest-optimize-all-technologies +OEMOF-v1-invest-optimize-all-technologies,1-8760ts,cbc,2.10.12,2024.0,ok,optimal,2.2556805100030037,311.116,112686100.33285016,,,,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 21:25:32.373296,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v1-invest-optimize-all-technologies-1-8760ts,cbc-2.10.12,OEMOF-v1-invest-optimize-all-technologies +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332,73-1h,gurobi,12.0.0,2024.0,ok,optimal,61.60900828399463,296.912,893670.8881071579,0.0,9.93164882519969e-05,61.49908494949341,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 21:25:35.806342,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332,73-1h,highs,1.9.0,2024.0,ok,optimal,1917.9896011170056,1123.8,893670.8881063311,5.213742476722494e-13,9.757993051460335e-05,1917.6649219989777,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 21:26:38.166045,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332,73-1h,scip,9.2.0,2024.0,ok,optimal,1370.0332582499975,1196.864,893670.8877959596,3.2696650054120375e-08,0.0,1369.865217,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 21:58:36.899409,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332,73-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,170.868,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 22:21:27.741858,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314,73-1h,gurobi,12.0.0,2024.0,ok,optimal,19.089915902004577,207.492,289544.032677293,0.0,4.0206431039345156e-16,18.918862104415894,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 23:24:31.429243,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314,73-1h,highs,1.9.0,2024.0,ok,optimal,98.11445500499394,260.884,289544.03267729253,1.2323505179289094e-13,7.659109459087911e-05,98.04238510131836,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 23:24:51.043835,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314,73-1h,scip,9.2.0,2024.0,ok,optimal,354.9330807380029,539.652,289544.0326772926,4.446406199981499e-15,7.616206480239003e-06,354.872714,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 23:26:29.657789,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314,73-1h,cbc,2.10.12,2024.0,ok,optimal,2664.219127583987,171.656,289544.03267729,0.0,0.0,2664.09,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-16 23:32:25.120849,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314 +pypsa-power+ely+battery-ucgas,1-1h,gurobi,12.0.0,2024.0,ok,optimal,12.837575539000682,518.036,79990720209.56836,0.0,7.248765642513133e-15,12.196474075317385,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 00:16:49.860578,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely+battery-ucgas-1-1h,gurobi-12.0.0,pypsa-power+ely+battery-ucgas +pypsa-power+ely+battery-ucgas,1-1h,highs,1.9.0,2024.0,ok,optimal,107.64485967099608,699.456,79990720209.56844,0.0,0.0,106.65358686447144,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 00:17:04.074843,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely+battery-ucgas-1-1h,highs-1.9.0,pypsa-power+ely+battery-ucgas +pypsa-power+ely+battery-ucgas,1-1h,scip,9.2.0,2024.0,ok,optimal,172.89815163600724,1173.792,79990720209.56842,0.0,0.0,172.075655,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 00:18:53.147255,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely+battery-ucgas-1-1h,scip-9.2.0,pypsa-power+ely+battery-ucgas +pypsa-power+ely+battery-ucgas,1-1h,cbc,2.10.12,2024.0,ok,optimal,313.26830912999867,571.648,79990720209.56766,0.0,,311.6,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 00:24:51.379617,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely+battery-ucgas-1-1h,cbc-2.10.12,pypsa-power+ely+battery-ucgas +pypsa-power+ely-co2,1-1h,gurobi,12.0.0,2024.0,ok,optimal,13.774793085991403,403.836,84667526618.31038,,,13.11122703552246,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 00:30:06.064462,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-1-1h,gurobi-12.0.0,pypsa-power+ely-co2 +pypsa-power+ely-co2,1-1h,highs,1.9.0,2024.0,ok,optimal,46.293246405999525,482.036,84667526618.30804,,,45.61420512199402,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 00:30:20.954050,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-1-1h,highs-1.9.0,pypsa-power+ely-co2 +pypsa-power+ely-co2,1-1h,scip,9.2.0,2024.0,ok,optimal,77.70444772200426,781.056,84667526618.30798,,,77.231666,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 00:31:08.348061,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-1-1h,scip-9.2.0,pypsa-power+ely-co2 +pypsa-power+ely-co2,1-1h,cbc,2.10.12,2024.0,ok,optimal,10.077526723005576,320.944,84667526618.31052,,,,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 00:32:27.330678,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-1-1h,cbc-2.10.12,pypsa-power+ely-co2 +genx-10_IEEE_9_bus_DC_OPF-no_uc,9-1h,gurobi,12.0.0,2024.0,ok,optimal,19.702748285999405,2113.18,1149079.0505399755,,,15.597351789474487,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 00:32:38.515206,c4-standard-2,europe-west9-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-no_uc-9-1h,gurobi-12.0.0,genx-10_IEEE_9_bus_DC_OPF-no_uc +genx-10_IEEE_9_bus_DC_OPF-no_uc,9-1h,highs,1.9.0,2024.0,ok,optimal,14.52329789000214,2293.88,1150959.0505401755,,,7.967008590698242,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 00:33:05.630278,c4-standard-2,europe-west9-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-no_uc-9-1h,highs-1.9.0,genx-10_IEEE_9_bus_DC_OPF-no_uc +genx-10_IEEE_9_bus_DC_OPF-no_uc,9-1h,scip,9.2.0,2024.0,ER,,,251.564,,,,,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 00:33:28.093429,c4-standard-2,europe-west9-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-no_uc-9-1h,scip-9.2.0,genx-10_IEEE_9_bus_DC_OPF-no_uc +genx-10_IEEE_9_bus_DC_OPF-no_uc,9-1h,cbc,2.10.12,2024.0,ok,optimal,110.43240963900462,1482.424,1149079.05053998,,,,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 00:33:28.636574,c4-standard-2,europe-west9-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-no_uc-9-1h,cbc-2.10.12,genx-10_IEEE_9_bus_DC_OPF-no_uc +genx-1_three_zones,3-1h,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,1476.968,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 00:35:56.434668,c4-standard-2,europe-west9-b,48cfc10,genx-1_three_zones-3-1h,gurobi-13.0.0,genx-1_three_zones +genx-1_three_zones,3-1h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1296.244,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 01:39:00.156962,c4-standard-2,europe-west9-b,48cfc10,genx-1_three_zones-3-1h,highs-1.12.0,genx-1_three_zones +genx-1_three_zones,3-1h,scip,10.0.0,2025.0,TO,Timeout,3600.0,1577.46,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 02:42:03.474814,c4-standard-2,europe-west9-b,48cfc10,genx-1_three_zones-3-1h,scip-10.0.0,genx-1_three_zones +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332,73-1h,gurobi,13.0.0,2025.0,ok,optimal,345.04361495199555,335.08,880489.4499591019,0.0,9.770523778746032e-05,341.60171914100647,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 03:45:07.021112,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332,73-1h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1720.484,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 03:50:52.780644,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332,73-1h,scip,10.0.0,2025.0,TO,Timeout,3600.0,2016.612,,,,3600.0,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 04:53:56.521976,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day332 +OEMOF-v1-invest-optimize-all-technologies,1-8760ts,gurobi,13.0.0,2025.0,ok,optimal,0.7928334529860877,416.36,112686100.33285016,,,0.1752340793609619,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 05:57:00.549649,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v1-invest-optimize-all-technologies-1-8760ts,gurobi-13.0.0,OEMOF-v1-invest-optimize-all-technologies +OEMOF-v1-invest-optimize-all-technologies,1-8760ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,21.49607234200812,216.632,112686100.33,,,21.49607234200812,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 05:57:02.518518,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v1-invest-optimize-all-technologies-1-8760ts,highs-hipo-1.12.0-hipo,OEMOF-v1-invest-optimize-all-technologies +OEMOF-v1-invest-optimize-all-technologies,1-8760ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,3.779218383016996,169.504,112686100.39,,,3.779218383016996,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 05:57:24.642068,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v1-invest-optimize-all-technologies-1-8760ts,highs-ipx-1.12.0-hipo,OEMOF-v1-invest-optimize-all-technologies +OEMOF-v1-invest-optimize-all-technologies,1-8760ts,highs,1.12.0,2025.0,ok,optimal,1.5103549060004298,439.688,112686100.33285016,,,0.8570971488952637,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 05:57:29.061335,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v1-invest-optimize-all-technologies-1-8760ts,highs-1.12.0,OEMOF-v1-invest-optimize-all-technologies +OEMOF-v1-invest-optimize-all-technologies,1-8760ts,scip,10.0.0,2025.0,ok,optimal,7.361185982008465,781.96,112686100.33285011,,,6.858985,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 05:57:31.777071,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v1-invest-optimize-all-technologies-1-8760ts,scip-10.0.0,OEMOF-v1-invest-optimize-all-technologies +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332,73-1h,gurobi,13.0.0,2025.0,ok,optimal,75.9047764519928,332.672,893670.8881086225,0.0,8.719023339981052e-05,75.79419207572937,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 05:57:40.458953,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332,73-1h,highs,1.12.0,2025.0,ok,optimal,1312.4484538100078,1156.192,893670.8881054556,9.769962616701378e-15,9.746112240388094e-05,1312.246490240097,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 05:58:57.202949,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332,73-1h,scip,10.0.0,2025.0,ok,optimal,1370.62148798001,1220.816,893670.8877959596,3.2696650054120375e-08,0.0,1370.44565,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 06:20:50.469209,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314,73-1h,gurobi,13.0.0,2025.0,ok,optimal,19.06914137399872,238.752,289544.0326772941,0.0,0.0,18.907830953598022,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 06:43:41.964663,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314,73-1h,highs,1.12.0,2025.0,ok,optimal,158.50123603700197,400.872,289544.0326772928,8.881784197001252e-16,9.053114589943396e-05,158.45605301856995,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 06:44:01.719347,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314,73-1h,scip,10.0.0,2025.0,ok,optimal,356.06194986999617,562.42,289544.0326772926,4.446406199981499e-15,7.616206480239003e-06,355.997535,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 06:46:40.908498,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day314 +pypsa-power+ely+battery-ucgas,1-1h,gurobi,13.0.0,2025.0,ok,optimal,13.253140123997582,542.772,79990720209.56836,0.0,7.248765642513133e-15,12.1266930103302,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 06:52:37.676005,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely+battery-ucgas-1-1h,gurobi-13.0.0,pypsa-power+ely+battery-ucgas +pypsa-power+ely+battery-ucgas,1-1h,highs,1.12.0,2025.0,ok,optimal,105.7531680809916,492.692,79990720209.56845,0.0,0.0,104.92529392242432,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 06:52:52.329665,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely+battery-ucgas-1-1h,highs-1.12.0,pypsa-power+ely+battery-ucgas +pypsa-power+ely+battery-ucgas,1-1h,scip,10.0.0,2025.0,ok,optimal,172.7771782919881,1199.256,79990720209.56842,0.0,0.0,171.915515,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 06:57:43.221621,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely+battery-ucgas-1-1h,scip-10.0.0,pypsa-power+ely+battery-ucgas +pypsa-power+ely-co2,1-1h,gurobi,13.0.0,2025.0,ok,optimal,13.721779068990145,431.444,84667526618.31038,,,12.981060981750488,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 07:00:37.667836,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-1-1h,gurobi-13.0.0,pypsa-power+ely-co2 +pypsa-power+ely-co2,1-1h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,18.31534054799704,222.312,84667526618.0,,,18.31534054799704,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 07:00:52.471268,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-1-1h,highs-hipo-1.12.0-hipo,pypsa-power+ely-co2 +pypsa-power+ely-co2,1-1h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,28.105258686991878,163.492,84667526618.0,,,28.105258686991878,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 07:01:11.437105,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-1-1h,highs-ipx-1.12.0-hipo,pypsa-power+ely-co2 +pypsa-power+ely-co2,1-1h,highs,1.12.0,2025.0,ok,optimal,45.50145749398507,500.792,84667526618.31046,,,44.94770646095276,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 07:01:40.176663,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-1-1h,highs-1.12.0,pypsa-power+ely-co2 +pypsa-power+ely-co2,1-1h,scip,10.0.0,2025.0,ok,optimal,77.55780171402148,804.08,84667526618.30798,,,77.063111,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 07:02:26.716430,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-1-1h,scip-10.0.0,pypsa-power+ely-co2 +genx-10_IEEE_9_bus_DC_OPF-no_uc,9-1h,gurobi,13.0.0,2025.0,ok,optimal,19.5794363009918,2117.976,1149079.0505399832,,,15.54720401763916,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 07:03:45.487362,c4-standard-2,europe-west9-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-no_uc-9-1h,gurobi-13.0.0,genx-10_IEEE_9_bus_DC_OPF-no_uc +genx-10_IEEE_9_bus_DC_OPF-no_uc,9-1h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,45.20414335600799,1049.936,1150959.0505,,,45.20414335600799,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 07:04:10.154036,c4-standard-2,europe-west9-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-no_uc-9-1h,highs-hipo-1.12.0-hipo,genx-10_IEEE_9_bus_DC_OPF-no_uc +genx-10_IEEE_9_bus_DC_OPF-no_uc,9-1h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,24.15740655499394,977.784,1150959.0505,,,24.15740655499394,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 07:04:55.987193,c4-standard-2,europe-west9-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-no_uc-9-1h,highs-ipx-1.12.0-hipo,genx-10_IEEE_9_bus_DC_OPF-no_uc +genx-10_IEEE_9_bus_DC_OPF-no_uc,9-1h,highs,1.12.0,2025.0,ok,optimal,13.416589825996198,2306.56,1150959.0505398668,,,7.969469308853149,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 07:05:20.779662,c4-standard-2,europe-west9-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-no_uc-9-1h,highs-1.12.0,genx-10_IEEE_9_bus_DC_OPF-no_uc +genx-10_IEEE_9_bus_DC_OPF-no_uc,9-1h,scip,10.0.0,2025.0,ER,,,279.128,,,,,3600.0,benchmark-instance-s-m-04,20251215-run-S-M,2025-12-17 07:05:39.153131,c4-standard-2,europe-west9-b,48cfc10,genx-10_IEEE_9_bus_DC_OPF-no_uc-9-1h,scip-10.0.0,genx-10_IEEE_9_bus_DC_OPF-no_uc +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,145.764,,,,3600.0,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-15 17:31:29.955020,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314 +pglib_opf_case2868,2868-NA,glpk,5.0,2020.0,TO,Timeout,3600.0,133.328,,,,3600.0,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-15 18:35:30.180858,c4-standard-2,europe-west3-a,48cfc10,pglib_opf_case2868-2868-NA,glpk-5.0,pglib_opf_case2868 +SWITCH-retrofits,3-6ts,glpk,5.0,2020.0,ER,,,125.58,,,,,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-15 19:39:32.896418,c4-standard-2,europe-west3-a,48cfc10,SWITCH-retrofits-3-6ts,glpk-5.0,SWITCH-retrofits +OEMOF-invest-optimize-all-technologies-using-mp-and-tsam,1-1920ts,glpk,5.0,2020.0,ER,,,147.628,,,,,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-15 19:39:33.463623,c4-standard-2,europe-west3-a,48cfc10,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam-1-1920ts,glpk-5.0,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam +tulipa-1_EU_investment_simple,28-4.3h,glpk,5.0,2020.0,ok,unknown,3026.9443333639992,656.596,3094030666.0,,,,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-15 19:39:39.281020,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-4.3h,glpk-5.0,tulipa-1_EU_investment_simple +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314,73-1h,glpk,5.0,2020.0,warning,infeasible_or_unbounded,0.0929176549998374,125.96,,,,,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-15 20:30:06.759812,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314 +pypsa-power+ely-mod,1-1h,glpk,5.0,2020.0,ok,unknown,91.13194271199971,229.952,31715129950.0,,,,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-15 20:30:07.375832,c4-standard-2,europe-west3-a,48cfc10,pypsa-power+ely-mod-1-1h,glpk-5.0,pypsa-power+ely-mod +tulipa-1_EU_investment_simple,28-24h,glpk,5.0,2020.0,ok,unknown,2.224163620001491,129.848,213320198.2,,,,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-15 20:31:39.029294,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-24h,glpk-5.0,tulipa-1_EU_investment_simple +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314,73-1h,gurobi,10.0.0,2022.0,TO,Timeout,3600.0,584.044,,,,3600.0,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-15 20:32:27.191690,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314,73-1h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1003.744,,,,3600.0,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-15 21:36:28.779418,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314,73-1h,scip,8.0.3,2022.0,TO,Timeout,3600.0,1502.004,,,,3600.0,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-15 22:40:28.503646,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314 +pglib_opf_case2868,2868-NA,gurobi,10.0.0,2022.0,ok,optimal,52.98746793900136,236.972,1966683.7348992007,,,52.72526216506958,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-15 23:44:25.184397,c4-standard-2,europe-west3-a,48cfc10,pglib_opf_case2868-2868-NA,gurobi-10.0.0,pglib_opf_case2868 +pglib_opf_case2868,2868-NA,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,568.588,,,,3600.0,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-15 23:45:18.953877,c4-standard-2,europe-west3-a,48cfc10,pglib_opf_case2868-2868-NA,highs-1.5.0.dev0,pglib_opf_case2868 +pglib_opf_case2868,2868-NA,scip,8.0.3,2022.0,TO,Timeout,3600.0,378.632,,,,3600.0,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 00:49:12.983203,c4-standard-2,europe-west3-a,48cfc10,pglib_opf_case2868-2868-NA,scip-8.0.3,pglib_opf_case2868 +SWITCH-retrofits,3-6ts,gurobi,10.0.0,2022.0,ok,optimal,0.1969675040018046,160.908,140405713.74608132,,,0.0095369815826416,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 01:53:07.830290,c4-standard-2,europe-west3-a,48cfc10,SWITCH-retrofits-3-6ts,gurobi-10.0.0,SWITCH-retrofits +SWITCH-retrofits,3-6ts,highs,1.5.0.dev0,2022.0,ok,optimal,0.0411495100015599,151.188,140405713.74608102,,,0.0288188457489013,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 01:53:08.693868,c4-standard-2,europe-west3-a,48cfc10,SWITCH-retrofits-3-6ts,highs-1.5.0.dev0,SWITCH-retrofits +SWITCH-retrofits,3-6ts,scip,8.0.3,2022.0,ok,optimal,0.0643451470023137,169.748,140405713.7460813,,,0.050588,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 01:53:09.390773,c4-standard-2,europe-west3-a,48cfc10,SWITCH-retrofits-3-6ts,scip-8.0.3,SWITCH-retrofits +OEMOF-invest-optimize-all-technologies-using-mp-and-tsam,1-1920ts,gurobi,10.0.0,2022.0,ok,optimal,1.839050126000075,282.58,1168755874.5556026,,,1.4735620021820068,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 01:53:10.108315,c4-standard-2,europe-west3-a,48cfc10,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam-1-1920ts,gurobi-10.0.0,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam +OEMOF-invest-optimize-all-technologies-using-mp-and-tsam,1-1920ts,highs,1.5.0.dev0,2022.0,ok,optimal,4.256030898999597,298.984,1168755874.5554314,,,3.896502733230591,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 01:53:12.873922,c4-standard-2,europe-west3-a,48cfc10,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam-1-1920ts,highs-1.5.0.dev0,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam +OEMOF-invest-optimize-all-technologies-using-mp-and-tsam,1-1920ts,scip,8.0.3,2022.0,ok,optimal,1.944618722998712,477.376,1168755874.5554311,,,1.695913,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 01:53:18.073443,c4-standard-2,europe-west3-a,48cfc10,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam-1-1920ts,scip-8.0.3,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam +tulipa-1_EU_investment_simple,28-4.3h,gurobi,10.0.0,2022.0,ok,optimal,28.81277868700272,1309.208,3104026345.986785,,,26.88878297805786,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 01:53:21.016753,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-4.3h,gurobi-10.0.0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-4.3h,highs,1.5.0.dev0,2022.0,ok,optimal,579.2113448970013,4518.08,3104026345.986783,,,575.7549803256989,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 01:53:53.525148,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-4.3h,highs-1.5.0.dev0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-4.3h,scip,8.0.3,2022.0,ok,optimal,184.7009920920027,3867.448,3104171624.2663574,,,180.363583,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 02:03:36.805947,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-4.3h,scip-8.0.3,tulipa-1_EU_investment_simple +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314,73-1h,gurobi,10.0.0,2022.0,ok,optimal,8.143676507002965,189.456,250269.69995049405,,,7.915598154067993,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 02:06:46.586460,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314,73-1h,highs,1.5.0.dev0,2022.0,ok,optimal,74.03536858499865,341.204,250269.6999504206,,,73.98440980911255,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 02:06:55.437700,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314,73-1h,scip,8.0.3,2022.0,ok,optimal,161.39190083100038,445.364,250269.69993087923,,,161.348004,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 02:08:10.157595,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314 +pypsa-power+ely-mod,1-1h,gurobi,10.0.0,2022.0,ok,optimal,7.376032116997521,383.984,31715824201.142406,,,6.9274818897247314,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 02:10:52.291497,c4-standard-2,europe-west3-a,48cfc10,pypsa-power+ely-mod-1-1h,gurobi-10.0.0,pypsa-power+ely-mod +pypsa-power+ely-mod,1-1h,highs,1.5.0.dev0,2022.0,ok,optimal,6.2473133630010125,431.672,31715824201.142406,,,5.530292749404907,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 02:11:00.958416,c4-standard-2,europe-west3-a,48cfc10,pypsa-power+ely-mod-1-1h,highs-1.5.0.dev0,pypsa-power+ely-mod +pypsa-power+ely-mod,1-1h,scip,8.0.3,2022.0,ok,optimal,86.50464208500125,865.612,31715824201.1424,,,85.753839,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 02:11:08.510368,c4-standard-2,europe-west3-a,48cfc10,pypsa-power+ely-mod-1-1h,scip-8.0.3,pypsa-power+ely-mod +tulipa-1_EU_investment_simple,28-24h,gurobi,10.0.0,2022.0,ok,optimal,0.5628273149995948,172.948,223319501.4791828,,,0.3658580780029297,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 02:12:36.656272,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-24h,gurobi-10.0.0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-24h,highs,1.5.0.dev0,2022.0,ok,optimal,7.750029980998079,222.932,223314143.5291478,,,7.715865850448608,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 02:12:37.908583,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-24h,highs-1.5.0.dev0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-24h,scip,8.0.3,2022.0,ok,optimal,2.278196274997754,223.872,223327430.0315647,,,2.236724,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 02:12:46.342665,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-24h,scip-8.0.3,tulipa-1_EU_investment_simple +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314,73-1h,gurobi,11.0.0,2023.0,TO,Timeout,3600.0,602.36,,,,3600.0,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 02:16:31.146997,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314,73-1h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,1070.544,,,,3600.0,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 03:20:13.136488,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314,73-1h,scip,8.1.0,2023.0,TO,Timeout,3600.0,1503.228,,,,3600.0,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 04:23:57.005615,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314,73-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,177.404,,,,3600.0,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 05:27:38.186488,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314 +pglib_opf_case2868,2868-NA,gurobi,11.0.0,2023.0,ok,optimal,559.0115553829964,275.864,1966683.7348997483,,,558.6574478149414,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 06:31:19.381907,c4-standard-2,europe-west3-a,48cfc10,pglib_opf_case2868-2868-NA,gurobi-11.0.0,pglib_opf_case2868 +pglib_opf_case2868,2868-NA,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,598.552,,,,3600.0,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 06:40:39.210354,c4-standard-2,europe-west3-a,48cfc10,pglib_opf_case2868-2868-NA,highs-1.6.0.dev0,pglib_opf_case2868 +pglib_opf_case2868,2868-NA,scip,8.1.0,2023.0,TO,Timeout,3600.0,387.592,,,,3600.0,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 07:44:24.161732,c4-standard-2,europe-west3-a,48cfc10,pglib_opf_case2868-2868-NA,scip-8.1.0,pglib_opf_case2868 +pglib_opf_case2868,2868-NA,cbc,2.10.11,2023.0,ok,optimal,327.20539419200213,168.956,1966683.73490107,,,327.08,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 08:48:06.169845,c4-standard-2,europe-west3-a,48cfc10,pglib_opf_case2868-2868-NA,cbc-2.10.11,pglib_opf_case2868 +SWITCH-retrofits,3-6ts,gurobi,11.0.0,2023.0,ok,optimal,0.1631684719977784,170.992,140405713.7460813,,,0.0094099044799804,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 08:53:34.193197,c4-standard-2,europe-west3-a,48cfc10,SWITCH-retrofits-3-6ts,gurobi-11.0.0,SWITCH-retrofits +SWITCH-retrofits,3-6ts,highs,1.6.0.dev0,2023.0,ok,optimal,0.0407157340014237,161.556,140405713.74608102,,,0.0294134616851806,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 08:53:35.128392,c4-standard-2,europe-west3-a,48cfc10,SWITCH-retrofits-3-6ts,highs-1.6.0.dev0,SWITCH-retrofits +SWITCH-retrofits,3-6ts,scip,8.1.0,2023.0,ok,optimal,0.0638423269992927,179.636,140405713.7460813,,,0.0510059999999999,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 08:53:35.934348,c4-standard-2,europe-west3-a,48cfc10,SWITCH-retrofits-3-6ts,scip-8.1.0,SWITCH-retrofits +SWITCH-retrofits,3-6ts,cbc,2.10.11,2023.0,ok,optimal,0.1684144120008568,158.0,140405713.74608126,,,0.14,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 08:53:36.769384,c4-standard-2,europe-west3-a,48cfc10,SWITCH-retrofits-3-6ts,cbc-2.10.11,SWITCH-retrofits +OEMOF-invest-optimize-all-technologies-using-mp-and-tsam,1-1920ts,gurobi,11.0.0,2023.0,ok,optimal,1.536934506999387,289.32,1168755874.5556026,,,1.2313950061798096,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 08:53:37.711340,c4-standard-2,europe-west3-a,48cfc10,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam-1-1920ts,gurobi-11.0.0,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam +OEMOF-invest-optimize-all-technologies-using-mp-and-tsam,1-1920ts,highs,1.6.0.dev0,2023.0,ok,optimal,4.124993465004081,319.456,1168755874.5554314,,,3.790006637573242,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 08:53:40.245236,c4-standard-2,europe-west3-a,48cfc10,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam-1-1920ts,highs-1.6.0.dev0,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam +OEMOF-invest-optimize-all-technologies-using-mp-and-tsam,1-1920ts,scip,8.1.0,2023.0,ok,optimal,1.881324836998829,483.972,1168755874.5554311,,,1.6567539999999998,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 08:53:45.393328,c4-standard-2,europe-west3-a,48cfc10,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam-1-1920ts,scip-8.1.0,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam +OEMOF-invest-optimize-all-technologies-using-mp-and-tsam,1-1920ts,cbc,2.10.11,2023.0,ok,optimal,4.329775764999795,218.64,1168755874.5554314,,,,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 08:53:48.363457,c4-standard-2,europe-west3-a,48cfc10,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam-1-1920ts,cbc-2.10.11,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam +tulipa-1_EU_investment_simple,28-4.3h,gurobi,11.0.0,2023.0,ok,optimal,18.863542762002908,1295.916,3104033766.1693506,,,17.348462104797363,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 08:53:53.688673,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-4.3h,gurobi-11.0.0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-4.3h,highs,1.6.0.dev0,2023.0,ok,optimal,536.4841162740049,4777.844,3104026345.986783,,,534.3270058631897,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 08:54:15.002468,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-4.3h,highs-1.6.0.dev0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-4.3h,scip,8.1.0,2023.0,ok,optimal,175.3487167159983,4083.328,3104171624.2663574,,,171.751791,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 09:03:13.908501,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-4.3h,scip-8.1.0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-4.3h,cbc,2.10.11,2023.0,ok,optimal,2262.965127757001,2268.436,3104270913.4954505,,,2260.78,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 09:06:13.004393,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-4.3h,cbc-2.10.11,tulipa-1_EU_investment_simple +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314,73-1h,gurobi,11.0.0,2023.0,ok,optimal,9.207838947004348,201.48,250269.697947503,,,9.003881931304932,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 09:43:58.441354,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314,73-1h,highs,1.6.0.dev0,2023.0,ok,optimal,71.7606709640022,367.86,250269.6999504206,,,71.72952651977539,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 09:44:08.461011,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314,73-1h,scip,8.1.0,2023.0,ok,optimal,158.39203067700146,454.612,250269.69993087923,,,158.348068,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 09:49:09.990106,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314,73-1h,cbc,2.10.11,2023.0,ok,optimal,1201.2070712439963,158.848,250269.69995049,,,1201.16,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 09:51:49.195686,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314 +pypsa-power+ely-mod,1-1h,gurobi,11.0.0,2023.0,ok,optimal,7.527503459998115,390.12,31715824201.142406,,,6.983925104141235,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 10:11:51.188047,c4-standard-2,europe-west3-a,48cfc10,pypsa-power+ely-mod-1-1h,gurobi-11.0.0,pypsa-power+ely-mod +pypsa-power+ely-mod,1-1h,highs,1.6.0.dev0,2023.0,ok,optimal,5.863882741003181,389.412,31715824201.142406,,,5.295896768569946,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 10:11:59.958924,c4-standard-2,europe-west3-a,48cfc10,pypsa-power+ely-mod-1-1h,highs-1.6.0.dev0,pypsa-power+ely-mod +pypsa-power+ely-mod,1-1h,scip,8.1.0,2023.0,ok,optimal,84.30738901499717,864.644,31715824201.1424,,,83.697335,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 10:12:07.013485,c4-standard-2,europe-west3-a,48cfc10,pypsa-power+ely-mod-1-1h,scip-8.1.0,pypsa-power+ely-mod +pypsa-power+ely-mod,1-1h,cbc,2.10.11,2023.0,ok,optimal,53.73152170600224,440.324,31715204639.26688,,,53.13,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 10:13:32.912789,c4-standard-2,europe-west3-a,48cfc10,pypsa-power+ely-mod-1-1h,cbc-2.10.11,pypsa-power+ely-mod +tulipa-1_EU_investment_simple,28-24h,gurobi,11.0.0,2023.0,ok,optimal,0.3765841569984332,178.828,223319501.47918275,,,0.3519768714904785,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 10:14:27.863618,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-24h,gurobi-11.0.0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-24h,highs,1.6.0.dev0,2023.0,ok,optimal,7.30145181199623,236.772,223314143.5291478,,,7.278712034225464,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 10:14:29.036149,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-24h,highs-1.6.0.dev0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-24h,scip,8.1.0,2023.0,ok,optimal,2.216260781002348,235.06,223327430.0315647,,,2.175714,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 10:14:37.131368,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-24h,scip-8.1.0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-24h,cbc,2.10.11,2023.0,ok,optimal,3.1226807269995334,158.404,223310171.7601738,,,3.08,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 10:14:40.143644,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-24h,cbc-2.10.11,tulipa-1_EU_investment_simple +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314,73-1h,gurobi,12.0.0,2024.0,TO,Timeout,3600.0,587.188,,,,3600.0,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 10:15:21.001569,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314,73-1h,highs,1.9.0,2024.0,TO,Timeout,3600.0,929.616,,,,3600.0,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 11:19:05.668790,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314,73-1h,scip,9.2.0,2024.0,TO,Timeout,3600.0,1485.988,,,,3600.0,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 12:22:51.000478,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314,73-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,159.668,,,,3600.0,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 13:26:43.476844,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314 +pglib_opf_case2868,2868-NA,gurobi,12.0.0,2024.0,ok,optimal,101.79627391000396,244.228,1966778.8677271556,4.5929419201229393e-07,4.836986345574557e-05,101.59137606620789,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 14:30:37.554026,c4-standard-2,europe-west3-a,48cfc10,pglib_opf_case2868-2868-NA,gurobi-12.0.0,pglib_opf_case2868 +pglib_opf_case2868,2868-NA,highs,1.9.0,2024.0,TO,Timeout,3600.0,565.688,,,,3600.0,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 14:32:20.052499,c4-standard-2,europe-west3-a,48cfc10,pglib_opf_case2868-2868-NA,highs-1.9.0,pglib_opf_case2868 +pglib_opf_case2868,2868-NA,scip,9.2.0,2024.0,TO,Timeout,3600.0,369.676,,,,3600.0,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 15:36:14.598221,c4-standard-2,europe-west3-a,48cfc10,pglib_opf_case2868-2868-NA,scip-9.2.0,pglib_opf_case2868 +pglib_opf_case2868,2868-NA,cbc,2.10.12,2024.0,ok,optimal,334.946804916006,165.28,1966683.73490107,0.0,0.0,334.68,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 16:40:09.789251,c4-standard-2,europe-west3-a,48cfc10,pglib_opf_case2868-2868-NA,cbc-2.10.12,pglib_opf_case2868 +SWITCH-retrofits,3-6ts,gurobi,12.0.0,2024.0,ok,optimal,0.1396056009980384,155.212,140405713.7460813,0.0,4.605467967360673e-05,0.0090510845184326,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 16:45:45.431158,c4-standard-2,europe-west3-a,48cfc10,SWITCH-retrofits-3-6ts,gurobi-12.0.0,SWITCH-retrofits +SWITCH-retrofits,3-6ts,highs,1.9.0,2024.0,ok,optimal,0.0430003359942929,145.74,140405713.74608102,0.0,0.0,0.0299346446990966,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 16:45:46.133695,c4-standard-2,europe-west3-a,48cfc10,SWITCH-retrofits-3-6ts,highs-1.9.0,SWITCH-retrofits +SWITCH-retrofits,3-6ts,scip,9.2.0,2024.0,ok,optimal,0.0653255879878997,164.4,140405713.7460813,0.0,0.0,0.051536,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 16:45:46.740473,c4-standard-2,europe-west3-a,48cfc10,SWITCH-retrofits-3-6ts,scip-9.2.0,SWITCH-retrofits +SWITCH-retrofits,3-6ts,cbc,2.10.12,2024.0,ok,optimal,0.1840769940026803,146.724,140405713.74608126,0.0,,0.14,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 16:45:47.353066,c4-standard-2,europe-west3-a,48cfc10,SWITCH-retrofits-3-6ts,cbc-2.10.12,SWITCH-retrofits +OEMOF-invest-optimize-all-technologies-using-mp-and-tsam,1-1920ts,gurobi,12.0.0,2024.0,ok,optimal,1.9041166779934429,275.12,1168755874.5556026,,,1.5903069972991943,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 16:45:48.077293,c4-standard-2,europe-west3-a,48cfc10,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam-1-1920ts,gurobi-12.0.0,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam +OEMOF-invest-optimize-all-technologies-using-mp-and-tsam,1-1920ts,highs,1.9.0,2024.0,ok,optimal,4.34536547800235,291.808,1168755874.5554314,,,3.949340581893921,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 16:45:50.863379,c4-standard-2,europe-west3-a,48cfc10,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam-1-1920ts,highs-1.9.0,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam +OEMOF-invest-optimize-all-technologies-using-mp-and-tsam,1-1920ts,scip,9.2.0,2024.0,ok,optimal,1.93261357099982,469.172,1168755874.5554311,,,1.700201,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 16:45:56.153515,c4-standard-2,europe-west3-a,48cfc10,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam-1-1920ts,scip-9.2.0,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam +OEMOF-invest-optimize-all-technologies-using-mp-and-tsam,1-1920ts,cbc,2.10.12,2024.0,ok,optimal,4.690955896003288,233.212,1168755874.5554314,,,,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 16:45:59.055417,c4-standard-2,europe-west3-a,48cfc10,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam-1-1920ts,cbc-2.10.12,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam +tulipa-1_EU_investment_simple,28-4.3h,gurobi,12.0.0,2024.0,ok,optimal,36.21633687899157,1417.776,3104103860.724514,0.0,4.1201910452247326e-05,34.66468906402588,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 16:46:04.650249,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-4.3h,gurobi-12.0.0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-4.3h,highs,1.9.0,2024.0,ok,optimal,606.8988743990049,4587.824,3104198397.329652,5.115907697472721e-13,8.478994045552863e-05,603.1301071643829,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 16:46:45.053402,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-4.3h,highs-1.9.0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-4.3h,scip,9.2.0,2024.0,ok,optimal,183.9739442699938,3940.796,3104171624.2663574,2.273736754432321e-13,9.45320055122828e-05,180.272563,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 16:56:56.550612,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-4.3h,scip-9.2.0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-4.3h,cbc,2.10.12,2024.0,ok,optimal,2311.233591850003,2279.912,3104270913.4954505,0.0,0.0,2305.26,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 17:00:05.863328,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-4.3h,cbc-2.10.12,tulipa-1_EU_investment_simple +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314,73-1h,gurobi,12.0.0,2024.0,ok,optimal,9.46155737299705,186.768,250269.69995049416,0.0,5.2928865537302365e-05,9.239076852798462,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 17:42:35.588648,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314,73-1h,highs,1.9.0,2024.0,ok,optimal,82.03844013500202,492.12,250269.6999504916,3.083809706563984e-13,5.929168779360234e-05,81.98151564598083,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 17:42:45.655601,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314,73-1h,scip,9.2.0,2024.0,ok,optimal,161.61197719200572,440.1,250269.69993087923,5.1973693349083305e-08,0.0,161.567038,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 17:44:08.297003,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314,73-1h,cbc,2.10.12,2024.0,ok,optimal,1228.974928285999,150.028,250269.69995049,0.0,0.0,1228.87,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 17:46:50.531470,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314 +pypsa-power+ely-mod,1-1h,gurobi,12.0.0,2024.0,ok,optimal,5.789843873004429,377.136,31715824201.142406,0.0,5.316239838795617e-05,5.257544040679932,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 18:07:20.101888,c4-standard-2,europe-west3-a,48cfc10,pypsa-power+ely-mod-1-1h,gurobi-12.0.0,pypsa-power+ely-mod +pypsa-power+ely-mod,1-1h,highs,1.9.0,2024.0,ok,optimal,6.327339896990452,427.48,31715824201.142406,5.2373732372850713e-14,5.3162398390482e-05,5.591774225234985,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 18:07:27.095401,c4-standard-2,europe-west3-a,48cfc10,pypsa-power+ely-mod-1-1h,highs-1.9.0,pypsa-power+ely-mod +pypsa-power+ely-mod,1-1h,scip,9.2.0,2024.0,ok,optimal,85.47132816701196,848.896,31715824201.1424,0.0,5.3165224781101776e-05,84.834251,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 18:07:34.677085,c4-standard-2,europe-west3-a,48cfc10,pypsa-power+ely-mod-1-1h,scip-9.2.0,pypsa-power+ely-mod +pypsa-power+ely-mod,1-1h,cbc,2.10.12,2024.0,ok,optimal,55.7691981310054,438.66,31715204639.26688,0.0,0.0,54.51,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 18:09:01.741366,c4-standard-2,europe-west3-a,48cfc10,pypsa-power+ely-mod-1-1h,cbc-2.10.12,pypsa-power+ely-mod +tulipa-1_EU_investment_simple,28-24h,gurobi,12.0.0,2024.0,ok,optimal,0.3065746630018111,162.74,223311299.67404896,0.0,7.576933498487933e-05,0.2810540199279785,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 18:09:58.749967,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-24h,gurobi-12.0.0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-24h,highs,1.9.0,2024.0,ok,optimal,8.366172766996897,226.596,223317241.5340944,2.842170943040401e-13,7.673794226949795e-05,8.327989339828491,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 18:09:59.642006,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-24h,highs-1.9.0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-24h,scip,9.2.0,2024.0,ok,optimal,2.2643121269939,221.116,223327430.0315647,2.085442929455894e-11,8.583544744270419e-05,2.222585,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 18:10:08.584170,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-24h,scip-9.2.0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-24h,cbc,2.10.12,2024.0,ok,optimal,3.185060630989028,148.224,223310171.7601738,0.0,,3.11,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 18:10:11.437967,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-24h,cbc-2.10.12,tulipa-1_EU_investment_simple +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314,73-1h,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,564.972,,,,3600.0,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 18:10:51.261987,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314,73-1h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1187.144,,,,3600.0,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 19:14:45.228550,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314,73-1h,scip,10.0.0,2025.0,TO,Timeout,3600.0,1520.288,,,,3600.0,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 20:18:37.121542,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day314 +pglib_opf_case2868,2868-NA,gurobi,13.0.0,2025.0,ok,optimal,5.2249207369895885,224.912,1966683.7349006317,0.0,0.0,5.000744104385376,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 21:22:33.602109,c4-standard-2,europe-west3-a,48cfc10,pglib_opf_case2868-2868-NA,gurobi-13.0.0,pglib_opf_case2868 +pglib_opf_case2868,2868-NA,highs,1.12.0,2025.0,TO,Timeout,3600.0,617.04,,,,3600.0,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 21:22:39.739408,c4-standard-2,europe-west3-a,48cfc10,pglib_opf_case2868-2868-NA,highs-1.12.0,pglib_opf_case2868 +pglib_opf_case2868,2868-NA,scip,10.0.0,2025.0,TO,Timeout,3600.0,397.944,,,,3600.0,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 22:26:34.667325,c4-standard-2,europe-west3-a,48cfc10,pglib_opf_case2868-2868-NA,scip-10.0.0,pglib_opf_case2868 +SWITCH-retrofits,3-6ts,gurobi,13.0.0,2025.0,ok,optimal,0.1283809440064942,183.812,140405713.7460813,0.0,4.605467967360673e-05,0.008847951889038,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 23:30:29.392982,c4-standard-2,europe-west3-a,48cfc10,SWITCH-retrofits-3-6ts,gurobi-13.0.0,SWITCH-retrofits +SWITCH-retrofits,3-6ts,highs,1.12.0,2025.0,ok,optimal,0.0476751329988474,173.344,140405713.74608102,0.0,0.0,0.0351195335388183,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 23:30:30.334663,c4-standard-2,europe-west3-a,48cfc10,SWITCH-retrofits-3-6ts,highs-1.12.0,SWITCH-retrofits +SWITCH-retrofits,3-6ts,scip,10.0.0,2025.0,ok,optimal,0.0653347580082481,190.636,140405713.7460813,0.0,0.0,0.0507489999999999,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 23:30:31.190549,c4-standard-2,europe-west3-a,48cfc10,SWITCH-retrofits-3-6ts,scip-10.0.0,SWITCH-retrofits +OEMOF-invest-optimize-all-technologies-using-mp-and-tsam,1-1920ts,gurobi,13.0.0,2025.0,ok,optimal,1.855137439008104,301.116,1168755874.5556026,,,1.5419611930847168,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 23:30:32.050450,c4-standard-2,europe-west3-a,48cfc10,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam-1-1920ts,gurobi-13.0.0,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam +OEMOF-invest-optimize-all-technologies-using-mp-and-tsam,1-1920ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,23.48107725399313,164.4,1168755874.6,,,23.48107725399313,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 23:30:34.967313,c4-standard-2,europe-west3-a,48cfc10,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam-1-1920ts,highs-hipo-1.12.0-hipo,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam +OEMOF-invest-optimize-all-technologies-using-mp-and-tsam,1-1920ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,7.33308099200076,164.088,1168755874.6,,,7.33308099200076,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 23:30:59.240109,c4-standard-2,europe-west3-a,48cfc10,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam-1-1920ts,highs-ipx-1.12.0-hipo,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam +OEMOF-invest-optimize-all-technologies-using-mp-and-tsam,1-1920ts,highs,1.12.0,2025.0,ok,optimal,2.696566951999557,330.944,1168755874.5554314,,,2.325834035873413,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 23:31:07.358224,c4-standard-2,europe-west3-a,48cfc10,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam-1-1920ts,highs-1.12.0,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam +OEMOF-invest-optimize-all-technologies-using-mp-and-tsam,1-1920ts,scip,10.0.0,2025.0,ok,optimal,1.9258307029958812,496.968,1168755874.5554311,,,1.68847,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 23:31:11.110005,c4-standard-2,europe-west3-a,48cfc10,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam-1-1920ts,scip-10.0.0,OEMOF-invest-optimize-all-technologies-using-mp-and-tsam +tulipa-1_EU_investment_simple,28-4.3h,gurobi,13.0.0,2025.0,ok,optimal,35.73677494400181,1391.672,3104103860.724516,0.0,4.097061445598509e-05,34.18549609184265,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 23:31:14.170824,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-4.3h,gurobi-13.0.0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-4.3h,highs,1.12.0,2025.0,ok,optimal,459.5128939670103,4773.744,3104026345.986783,1.7053025658242404e-13,8.995849425871914e-05,456.8279416561127,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 23:31:53.202757,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-4.3h,highs-1.12.0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-4.3h,scip,10.0.0,2025.0,ok,optimal,186.98980441701133,3888.864,3104171624.2663574,2.273736754432321e-13,9.45320055122828e-05,182.97252,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 23:39:35.944678,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-4.3h,scip-10.0.0,tulipa-1_EU_investment_simple +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314,73-1h,gurobi,13.0.0,2025.0,ok,optimal,12.65583155999775,226.576,250269.69994926645,0.0,8.617882937875697e-05,12.466551065444946,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 23:42:47.892357,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314,73-1h,highs,1.12.0,2025.0,ok,optimal,156.46737793101056,548.004,250269.69995049373,6.187184098393865e-14,9.642454814737583e-05,156.42936944961548,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 23:43:01.402486,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314,73-1h,scip,10.0.0,2025.0,ok,optimal,161.49607582100725,464.676,250269.69993087923,5.1973693349083305e-08,0.0,161.448059,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 23:45:38.716345,c4-standard-2,europe-west3-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day314 +pypsa-power+ely-mod,1-1h,gurobi,13.0.0,2025.0,ok,optimal,5.75466010600212,404.54,31715824201.142406,0.0,5.316239838795617e-05,5.256044864654541,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 23:48:21.092290,c4-standard-2,europe-west3-a,48cfc10,pypsa-power+ely-mod-1-1h,gurobi-13.0.0,pypsa-power+ely-mod +pypsa-power+ely-mod,1-1h,highs,1.12.0,2025.0,ok,optimal,6.72748640399368,413.252,31715824201.142406,5.2373732372850713e-14,5.3162398390482e-05,6.115431070327759,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 23:48:28.225661,c4-standard-2,europe-west3-a,48cfc10,pypsa-power+ely-mod-1-1h,highs-1.12.0,pypsa-power+ely-mod +pypsa-power+ely-mod,1-1h,scip,10.0.0,2025.0,ok,optimal,84.909131790002,877.436,31715824201.1424,0.0,5.3165224781101776e-05,84.237608,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 23:48:36.297524,c4-standard-2,europe-west3-a,48cfc10,pypsa-power+ely-mod-1-1h,scip-10.0.0,pypsa-power+ely-mod +tulipa-1_EU_investment_simple,28-24h,gurobi,13.0.0,2025.0,ok,optimal,0.3749310759885702,189.6,223310235.30422255,0.0,7.112018150631671e-05,0.3509731292724609,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 23:50:02.918449,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-24h,gurobi-13.0.0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-24h,highs,1.12.0,2025.0,ok,optimal,7.897010224987753,243.592,223314289.8091698,3.6809780879947495e-10,6.898237690154196e-05,7.8709189891815186,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 23:50:04.135287,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-24h,highs-1.12.0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-24h,scip,10.0.0,2025.0,ok,optimal,2.2616305200062925,248.424,223327430.0315647,2.085442929455894e-11,8.583544744270419e-05,2.217686,3600.0,benchmark-instance-s-m-09,20251215-run-S-M,2025-12-16 23:50:12.855093,c4-standard-2,europe-west3-a,48cfc10,tulipa-1_EU_investment_simple-28-24h,scip-10.0.0,tulipa-1_EU_investment_simple +genx-4_three_zones_w_policies_slack,3-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,204.76,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-15 17:30:41.499685,c4-standard-2,europe-west9-a,48cfc10,genx-4_three_zones_w_policies_slack-3-1h,glpk-5.0,genx-4_three_zones_w_policies_slack +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,137.428,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-15 18:33:46.144113,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29 +OEMOF-simple-dispatch,1-8760ts,glpk,5.0,2020.0,ER,,,159.272,,,,,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-15 19:36:50.353935,c4-standard-2,europe-west9-a,48cfc10,OEMOF-simple-dispatch-1-8760ts,glpk-5.0,OEMOF-simple-dispatch +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,129.22,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-15 19:37:13.562109,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314 +times-nz-tui,2-24ts,glpk,5.0,2020.0,warning,unknown,0.0970601720000559,290.824,,,,,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-15 20:40:16.790914,c4-standard-2,europe-west9-a,48cfc10,times-nz-tui-2-24ts,glpk-5.0,times-nz-tui +tulipa-1_EU_investment_simple,28-52.1h,glpk,5.0,2020.0,ok,unknown,25.45045712499996,163.544,510254679.1,,,,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-15 20:40:17.316298,c4-standard-2,europe-west9-a,48cfc10,tulipa-1_EU_investment_simple-28-52.1h,glpk-5.0,tulipa-1_EU_investment_simple +genx-4_three_zones_w_policies_slack,3-1h,gurobi,10.0.0,2022.0,TO,Timeout,3600.0,1589.64,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-15 20:41:22.686092,c4-standard-2,europe-west9-a,48cfc10,genx-4_three_zones_w_policies_slack-3-1h,gurobi-10.0.0,genx-4_three_zones_w_policies_slack +genx-4_three_zones_w_policies_slack,3-1h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,3117.144,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-15 21:44:27.801730,c4-standard-2,europe-west9-a,48cfc10,genx-4_three_zones_w_policies_slack-3-1h,highs-1.5.0.dev0,genx-4_three_zones_w_policies_slack +genx-4_three_zones_w_policies_slack,3-1h,scip,8.0.3,2022.0,TO,Timeout,3600.0,2196.472,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-15 22:47:32.245570,c4-standard-2,europe-west9-a,48cfc10,genx-4_three_zones_w_policies_slack-3-1h,scip-8.0.3,genx-4_three_zones_w_policies_slack +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29,73-1h,gurobi,10.0.0,2022.0,ok,optimal,615.6089159399999,397.036,1768933.6969285358,,,615.3045301437378,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-15 23:50:36.695515,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29,73-1h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1190.808,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 00:00:52.982028,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29,73-1h,scip,8.0.3,2022.0,TO,Timeout,3600.0,1478.74,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 01:03:56.806306,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29 +OEMOF-simple-dispatch,1-8760ts,gurobi,10.0.0,2022.0,ok,optimal,1.1033925199990335,458.476,10971074.84862532,,,0.0935649871826171,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 02:07:02.212531,c4-standard-2,europe-west9-a,48cfc10,OEMOF-simple-dispatch-1-8760ts,gurobi-10.0.0,OEMOF-simple-dispatch +OEMOF-simple-dispatch,1-8760ts,highs,1.5.0.dev0,2022.0,ok,optimal,1.0098935099995288,457.508,10971074.848618068,,,0.1394901275634765,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 02:07:04.548864,c4-standard-2,europe-west9-a,48cfc10,OEMOF-simple-dispatch-1-8760ts,highs-1.5.0.dev0,OEMOF-simple-dispatch +OEMOF-simple-dispatch,1-8760ts,scip,8.0.3,2022.0,ok,optimal,1.5020930440005031,807.984,10971074.848625014,,,0.5843349999999999,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 02:07:06.856062,c4-standard-2,europe-west9-a,48cfc10,OEMOF-simple-dispatch-1-8760ts,scip-8.0.3,OEMOF-simple-dispatch +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314,73-1h,gurobi,10.0.0,2022.0,ok,optimal,45.20703681899977,239.132,796885.027724022,,,45.147778034210205,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 02:07:09.762024,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314,73-1h,highs,1.5.0.dev0,2022.0,ok,optimal,625.8563398869992,796.392,796885.0277277983,,,625.7735114097595,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 02:07:55.571097,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314,73-1h,scip,8.0.3,2022.0,ok,optimal,1501.8550025910008,1124.004,796885.0277282712,,,1501.762668,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 02:18:22.015129,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314 +times-nz-tui,2-24ts,gurobi,10.0.0,2022.0,ok,optimal,329.35336906100565,677.396,1402087.101123006,,,327.6131751537323,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 02:43:24.520501,c4-standard-2,europe-west9-a,48cfc10,times-nz-tui-2-24ts,gurobi-10.0.0,times-nz-tui +times-nz-tui,2-24ts,highs,1.5.0.dev0,2022.0,ok,optimal,148.00433237600373,846.992,1402087.1200728202,,,145.9225251674652,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 02:48:56.159032,c4-standard-2,europe-west9-a,48cfc10,times-nz-tui-2-24ts,highs-1.5.0.dev0,times-nz-tui +times-nz-tui,2-24ts,scip,8.0.3,2022.0,ok,optimal,3079.630394625994,3070.296,1402087.1141087697,,,3077.766783,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 02:51:26.421885,c4-standard-2,europe-west9-a,48cfc10,times-nz-tui-2-24ts,scip-8.0.3,times-nz-tui +tulipa-1_EU_investment_simple,28-52.1h,gurobi,10.0.0,2022.0,ok,optimal,1.3147240430043894,252.444,520251971.241518,,,1.021876096725464,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 03:45:53.881626,c4-standard-2,europe-west9-a,48cfc10,tulipa-1_EU_investment_simple-28-52.1h,gurobi-10.0.0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-52.1h,highs,1.5.0.dev0,2022.0,ok,optimal,29.477626009000232,573.548,520257276.87008464,,,29.292049646377563,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 03:45:55.881172,c4-standard-2,europe-west9-a,48cfc10,tulipa-1_EU_investment_simple-28-52.1h,highs-1.5.0.dev0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-52.1h,scip,8.0.3,2022.0,ok,optimal,10.51757575699594,506.304,520256206.2552681,,,10.266682,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 03:46:26.050223,c4-standard-2,europe-west9-a,48cfc10,tulipa-1_EU_investment_simple-28-52.1h,scip-8.0.3,tulipa-1_EU_investment_simple +genx-4_three_zones_w_policies_slack,3-1h,gurobi,11.0.0,2023.0,TO,Timeout,3600.0,1641.144,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 03:49:27.766227,c4-standard-2,europe-west9-a,48cfc10,genx-4_three_zones_w_policies_slack-3-1h,gurobi-11.0.0,genx-4_three_zones_w_policies_slack +genx-4_three_zones_w_policies_slack,3-1h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,3158.592,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 04:52:31.819089,c4-standard-2,europe-west9-a,48cfc10,genx-4_three_zones_w_policies_slack-3-1h,highs-1.6.0.dev0,genx-4_three_zones_w_policies_slack +genx-4_three_zones_w_policies_slack,3-1h,scip,8.1.0,2023.0,TO,Timeout,3600.0,2206.3,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 05:55:35.880230,c4-standard-2,europe-west9-a,48cfc10,genx-4_three_zones_w_policies_slack-3-1h,scip-8.1.0,genx-4_three_zones_w_policies_slack +genx-4_three_zones_w_policies_slack,3-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,235.368,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 06:58:39.702241,c4-standard-2,europe-west9-a,48cfc10,genx-4_three_zones_w_policies_slack-3-1h,cbc-2.10.11,genx-4_three_zones_w_policies_slack +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29,73-1h,gurobi,11.0.0,2023.0,ok,optimal,362.5743010849983,384.688,1768933.7020238978,,,362.3093860149384,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 08:01:44.338972,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29,73-1h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,1134.228,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 08:07:47.641679,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29,73-1h,scip,8.1.0,2023.0,TO,Timeout,3600.0,1487.86,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 09:10:52.100756,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29,73-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,168.428,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 10:13:56.044102,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29 +OEMOF-simple-dispatch,1-8760ts,gurobi,11.0.0,2023.0,ok,optimal,0.8985651949988096,481.2,10971074.84862532,,,0.0942680835723877,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 11:17:00.131166,c4-standard-2,europe-west9-a,48cfc10,OEMOF-simple-dispatch-1-8760ts,gurobi-11.0.0,OEMOF-simple-dispatch +OEMOF-simple-dispatch,1-8760ts,highs,1.6.0.dev0,2023.0,ok,optimal,1.0599168019980425,504.58,10971074.848618068,,,0.1823272705078125,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 11:17:02.351084,c4-standard-2,europe-west9-a,48cfc10,OEMOF-simple-dispatch-1-8760ts,highs-1.6.0.dev0,OEMOF-simple-dispatch +OEMOF-simple-dispatch,1-8760ts,scip,8.1.0,2023.0,ok,optimal,1.3613019859985798,833.38,10971074.848625014,,,0.574287,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 11:17:04.923955,c4-standard-2,europe-west9-a,48cfc10,OEMOF-simple-dispatch-1-8760ts,scip-8.1.0,OEMOF-simple-dispatch +OEMOF-simple-dispatch,1-8760ts,cbc,2.10.11,2023.0,ok,optimal,1.0395854959933786,340.764,10971074.84862532,,,,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 11:17:07.792013,c4-standard-2,europe-west9-a,48cfc10,OEMOF-simple-dispatch-1-8760ts,cbc-2.10.11,OEMOF-simple-dispatch +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314,73-1h,gurobi,11.0.0,2023.0,ok,optimal,46.902686138993886,252.108,796885.0222917437,,,46.8559958934784,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 11:17:10.098834,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314,73-1h,highs,1.6.0.dev0,2023.0,ok,optimal,606.3913231359984,814.112,796885.0277277983,,,606.3397014141083,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 11:17:57.668810,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314,73-1h,scip,8.1.0,2023.0,ok,optimal,1496.5191370480024,1130.216,796885.0277282712,,,1496.449085,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 11:28:04.732800,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314,73-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,160.852,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 11:53:01.977583,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314 +times-nz-tui,2-24ts,gurobi,11.0.0,2023.0,ok,optimal,357.6853003629949,676.264,1402087.1011102195,,,356.2434039115906,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 12:56:06.360257,c4-standard-2,europe-west9-a,48cfc10,times-nz-tui-2-24ts,gurobi-11.0.0,times-nz-tui +times-nz-tui,2-24ts,highs,1.6.0.dev0,2023.0,ok,optimal,143.1065026389988,856.204,1402087.1200728202,,,141.7219717502594,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 13:02:05.656529,c4-standard-2,europe-west9-a,48cfc10,times-nz-tui-2-24ts,highs-1.6.0.dev0,times-nz-tui +times-nz-tui,2-24ts,scip,8.1.0,2023.0,ok,optimal,3063.557496169989,3062.06,1402087.1141087697,,,3061.948796,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 13:04:30.333899,c4-standard-2,europe-west9-a,48cfc10,times-nz-tui-2-24ts,scip-8.1.0,times-nz-tui +times-nz-tui,2-24ts,cbc,2.10.11,2023.0,ER,,,321.896,,,,,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 13:58:39.386799,c4-standard-2,europe-west9-a,48cfc10,times-nz-tui-2-24ts,cbc-2.10.11,times-nz-tui +tulipa-1_EU_investment_simple,28-52.1h,gurobi,11.0.0,2023.0,ok,optimal,1.5379701489873696,272.188,520266951.2512312,,,1.2955701351165771,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 13:58:40.123665,c4-standard-2,europe-west9-a,48cfc10,tulipa-1_EU_investment_simple-28-52.1h,gurobi-11.0.0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-52.1h,highs,1.6.0.dev0,2023.0,ok,optimal,27.53481431399996,604.608,520257276.87008464,,,27.410531520843502,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 13:58:42.379720,c4-standard-2,europe-west9-a,48cfc10,tulipa-1_EU_investment_simple-28-52.1h,highs-1.6.0.dev0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-52.1h,scip,8.1.0,2023.0,ok,optimal,10.524650387989825,513.644,520256206.2552681,,,10.307191,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 13:59:10.635253,c4-standard-2,europe-west9-a,48cfc10,tulipa-1_EU_investment_simple-28-52.1h,scip-8.1.0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-52.1h,cbc,2.10.11,2023.0,ok,optimal,11.392787563992895,197.388,520249821.6018073,,,11.22,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 13:59:21.945581,c4-standard-2,europe-west9-a,48cfc10,tulipa-1_EU_investment_simple-28-52.1h,cbc-2.10.11,tulipa-1_EU_investment_simple +genx-4_three_zones_w_policies_slack,3-1h,gurobi,12.0.0,2024.0,TO,Timeout,3600.0,1640.032,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 14:00:00.773248,c4-standard-2,europe-west9-a,48cfc10,genx-4_three_zones_w_policies_slack-3-1h,gurobi-12.0.0,genx-4_three_zones_w_policies_slack +genx-4_three_zones_w_policies_slack,3-1h,highs,1.9.0,2024.0,TO,Timeout,3600.0,3803.756,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 15:03:04.945624,c4-standard-2,europe-west9-a,48cfc10,genx-4_three_zones_w_policies_slack-3-1h,highs-1.9.0,genx-4_three_zones_w_policies_slack +genx-4_three_zones_w_policies_slack,3-1h,scip,9.2.0,2024.0,TO,Timeout,3600.0,2184.728,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 16:06:08.651753,c4-standard-2,europe-west9-a,48cfc10,genx-4_three_zones_w_policies_slack-3-1h,scip-9.2.0,genx-4_three_zones_w_policies_slack +genx-4_three_zones_w_policies_slack,3-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,218.08,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 17:09:13.311451,c4-standard-2,europe-west9-a,48cfc10,genx-4_three_zones_w_policies_slack-3-1h,cbc-2.10.12,genx-4_three_zones_w_policies_slack +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29,73-1h,gurobi,12.0.0,2024.0,ok,optimal,446.838308439008,387.836,1768933.701505115,0.0,9.192980495183612e-05,446.5351779460907,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 18:12:17.209746,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29,73-1h,highs,1.9.0,2024.0,TO,Timeout,3600.0,1610.848,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 18:19:44.709721,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29,73-1h,scip,9.2.0,2024.0,TO,Timeout,3600.0,1493.848,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 19:22:48.393689,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29,73-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,151.244,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 20:25:52.417654,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29 +OEMOF-simple-dispatch,1-8760ts,gurobi,12.0.0,2024.0,ok,optimal,0.9520690749923232,441.968,10971074.84862532,,,0.0971620082855224,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 21:28:56.725303,c4-standard-2,europe-west9-a,48cfc10,OEMOF-simple-dispatch-1-8760ts,gurobi-12.0.0,OEMOF-simple-dispatch +OEMOF-simple-dispatch,1-8760ts,highs,1.9.0,2024.0,ok,optimal,1.134328315994935,462.592,10971074.848618068,,,0.1665875911712646,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 21:28:59.259766,c4-standard-2,europe-west9-a,48cfc10,OEMOF-simple-dispatch-1-8760ts,highs-1.9.0,OEMOF-simple-dispatch +OEMOF-simple-dispatch,1-8760ts,scip,9.2.0,2024.0,ok,optimal,1.410659979999764,795.768,10971074.848625014,,,0.586894,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 21:29:02.105769,c4-standard-2,europe-west9-a,48cfc10,OEMOF-simple-dispatch-1-8760ts,scip-9.2.0,OEMOF-simple-dispatch +OEMOF-simple-dispatch,1-8760ts,cbc,2.10.12,2024.0,ok,optimal,1.8682808360026684,347.832,10971074.84862532,,,,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 21:29:05.306463,c4-standard-2,europe-west9-a,48cfc10,OEMOF-simple-dispatch-1-8760ts,cbc-2.10.12,OEMOF-simple-dispatch +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314,73-1h,gurobi,12.0.0,2024.0,ok,optimal,41.9755984180083,227.18,796885.0269494008,0.0,2.683435041849969e-05,41.92751908302307,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 21:29:08.838180,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314,73-1h,highs,1.9.0,2024.0,ok,optimal,808.2377143070044,932.864,796885.0277279087,2.2721218280387368e-15,9.95514772838169e-05,808.1471192836761,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 21:29:51.363036,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314,73-1h,scip,9.2.0,2024.0,ok,optimal,1497.039985498006,1111.54,796885.0277282712,1.6653345369377348e-15,0.0,1496.966319,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 21:43:20.128778,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314,73-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,143.304,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 22:08:17.753069,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314 +times-nz-tui,2-24ts,gurobi,12.0.0,2024.0,ok,optimal,310.20366150200425,646.176,1402087.105791976,,,308.75346398353577,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 23:11:22.249678,c4-standard-2,europe-west9-a,48cfc10,times-nz-tui-2-24ts,gurobi-12.0.0,times-nz-tui +times-nz-tui,2-24ts,highs,1.9.0,2024.0,ok,optimal,160.4863595830102,831.88,1402087.12007282,,,158.1924934387207,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 23:16:35.362747,c4-standard-2,europe-west9-a,48cfc10,times-nz-tui-2-24ts,highs-1.9.0,times-nz-tui +times-nz-tui,2-24ts,scip,9.2.0,2024.0,ok,optimal,3040.236396586988,3065.628,1402087.1141087697,,,3038.619823,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-16 23:19:18.763863,c4-standard-2,europe-west9-a,48cfc10,times-nz-tui-2-24ts,scip-9.2.0,times-nz-tui +times-nz-tui,2-24ts,cbc,2.10.12,2024.0,ER,,,304.488,,,,,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 00:13:06.006632,c4-standard-2,europe-west9-a,48cfc10,times-nz-tui-2-24ts,cbc-2.10.12,times-nz-tui +tulipa-1_EU_investment_simple,28-52.1h,gurobi,12.0.0,2024.0,ok,optimal,1.3087985040037893,241.768,520252739.30506414,0.0,1.690766034651249e-05,1.0464718341827393,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 00:13:06.549350,c4-standard-2,europe-west9-a,48cfc10,tulipa-1_EU_investment_simple-28-52.1h,gurobi-12.0.0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-52.1h,highs,1.9.0,2024.0,ok,optimal,27.263671854001583,555.584,520255461.06727207,7.728262474415715e-12,1.6326766790540713e-05,27.058743953704838,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 00:13:08.505166,c4-standard-2,europe-west9-a,48cfc10,tulipa-1_EU_investment_simple-28-52.1h,highs-1.9.0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-52.1h,scip,9.2.0,2024.0,ok,optimal,10.511782774992753,496.056,520256206.2552681,2.347633198951371e-11,1.7635768713554457e-05,10.294786,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 00:13:36.404676,c4-standard-2,europe-west9-a,48cfc10,tulipa-1_EU_investment_simple-28-52.1h,scip-9.2.0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-52.1h,cbc,2.10.12,2024.0,ok,optimal,11.535416248996626,194.352,520249821.6018073,0.0,0.0,11.17,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 00:13:47.613045,c4-standard-2,europe-west9-a,48cfc10,tulipa-1_EU_investment_simple-28-52.1h,cbc-2.10.12,tulipa-1_EU_investment_simple +genx-4_three_zones_w_policies_slack,3-1h,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,1766.216,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 00:14:29.433650,c4-standard-2,europe-west9-a,48cfc10,genx-4_three_zones_w_policies_slack-3-1h,gurobi-13.0.0,genx-4_three_zones_w_policies_slack +genx-4_three_zones_w_policies_slack,3-1h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1814.504,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 01:17:33.310375,c4-standard-2,europe-west9-a,48cfc10,genx-4_three_zones_w_policies_slack-3-1h,highs-1.12.0,genx-4_three_zones_w_policies_slack +genx-4_three_zones_w_policies_slack,3-1h,scip,10.0.0,2025.0,TO,Timeout,3600.0,2207.86,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 02:20:38.456374,c4-standard-2,europe-west9-a,48cfc10,genx-4_three_zones_w_policies_slack-3-1h,scip-10.0.0,genx-4_three_zones_w_policies_slack +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29,73-1h,gurobi,13.0.0,2025.0,ok,optimal,458.56562365700665,420.544,1768933.7015456865,0.0,9.564653522599636e-05,458.3026361465454,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 03:23:45.242804,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29,73-1h,highs,1.12.0,2025.0,ok,optimal,2817.091933090007,1230.848,1768933.702023293,8.804299881740934e-13,9.970118151165775e-05,2816.9731373786926,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 03:31:24.579152,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29,73-1h,scip,10.0.0,2025.0,TO,Timeout,3600.0,1503.248,,,,3600.0,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 04:18:22.425677,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day29 +OEMOF-simple-dispatch,1-8760ts,gurobi,13.0.0,2025.0,ok,optimal,0.9087743220006814,490.744,10971074.84862532,,,0.0936729907989502,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 05:21:26.569274,c4-standard-2,europe-west9-a,48cfc10,OEMOF-simple-dispatch-1-8760ts,gurobi-13.0.0,OEMOF-simple-dispatch +OEMOF-simple-dispatch,1-8760ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,1.254559517998132,253.072,10971074.849,,,1.254559517998132,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 05:21:28.906160,c4-standard-2,europe-west9-a,48cfc10,OEMOF-simple-dispatch-1-8760ts,highs-hipo-1.12.0-hipo,OEMOF-simple-dispatch +OEMOF-simple-dispatch,1-8760ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,1.1039820419973694,252.928,10971074.849,,,1.1039820419973694,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 05:21:30.794807,c4-standard-2,europe-west9-a,48cfc10,OEMOF-simple-dispatch-1-8760ts,highs-ipx-1.12.0-hipo,OEMOF-simple-dispatch +OEMOF-simple-dispatch,1-8760ts,highs,1.12.0,2025.0,ok,optimal,1.208661533004488,537.224,10971074.84862532,,,0.2466964721679687,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 05:21:32.527578,c4-standard-2,europe-west9-a,48cfc10,OEMOF-simple-dispatch-1-8760ts,highs-1.12.0,OEMOF-simple-dispatch +OEMOF-simple-dispatch,1-8760ts,scip,10.0.0,2025.0,ok,optimal,1.4115378659917042,843.12,10971074.848625014,,,0.568916,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 05:21:35.308668,c4-standard-2,europe-west9-a,48cfc10,OEMOF-simple-dispatch-1-8760ts,scip-10.0.0,OEMOF-simple-dispatch +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314,73-1h,gurobi,13.0.0,2025.0,ok,optimal,47.37307202599186,256.352,796885.0272374754,0.0,8.061798210734668e-05,47.32517695426941,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 05:21:38.341278,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314,73-1h,highs,1.12.0,2025.0,ok,optimal,789.7839524810115,955.832,796885.02772824,3.552713678800501e-15,9.849037263244442e-05,789.7269415855408,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 05:22:26.422698,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314,73-1h,scip,10.0.0,2025.0,ok,optimal,1495.5926124090038,1141.228,796885.0277282712,1.6653345369377348e-15,0.0,1495.51697,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 05:35:36.899416,c4-standard-2,europe-west9-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day314 +times-nz-tui,2-24ts,gurobi,13.0.0,2025.0,ok,optimal,245.3188606449985,676.312,1402087.1058949227,,,243.90216207504272,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 06:00:33.236349,c4-standard-2,europe-west9-a,48cfc10,times-nz-tui-2-24ts,gurobi-13.0.0,times-nz-tui +times-nz-tui,2-24ts,highs-hipo,1.12.0-hipo,2025.0,warning,Unknown,388.39535798097495,1437.3,1402087.1201,,,388.39535798097495,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 06:04:40.443791,c4-standard-2,europe-west9-a,48cfc10,times-nz-tui-2-24ts,highs-hipo-1.12.0-hipo,times-nz-tui +times-nz-tui,2-24ts,highs-ipx,1.12.0-hipo,2025.0,warning,Unknown,189.64569509698777,418.34,1402087.1201,,,189.64569509698777,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 06:11:09.470966,c4-standard-2,europe-west9-a,48cfc10,times-nz-tui-2-24ts,highs-ipx-1.12.0-hipo,times-nz-tui +times-nz-tui,2-24ts,highs,1.12.0,2025.0,ok,optimal,151.999796641001,874.648,1402087.12007282,,,150.42995405197144,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 06:14:19.748649,c4-standard-2,europe-west9-a,48cfc10,times-nz-tui-2-24ts,highs-1.12.0,times-nz-tui +times-nz-tui,2-24ts,scip,10.0.0,2025.0,ok,optimal,3069.9953578269924,3064.344,1402087.1141087697,,,3068.31677,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 06:16:53.570392,c4-standard-2,europe-west9-a,48cfc10,times-nz-tui-2-24ts,scip-10.0.0,times-nz-tui +tulipa-1_EU_investment_simple,28-52.1h,gurobi,13.0.0,2025.0,ok,optimal,1.4475033420021646,284.78,520252739.3050641,0.0,1.225736504871493e-05,1.211205005645752,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 07:11:10.099318,c4-standard-2,europe-west9-a,48cfc10,tulipa-1_EU_investment_simple-28-52.1h,gurobi-13.0.0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-52.1h,highs,1.12.0,2025.0,ok,optimal,25.580787590995897,606.728,520247747.6800969,1.1368683772161605e-13,2.075705818813797e-06,25.441053867340088,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 07:11:12.479271,c4-standard-2,europe-west9-a,48cfc10,tulipa-1_EU_investment_simple-28-52.1h,highs-1.12.0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-52.1h,scip,10.0.0,2025.0,ok,optimal,10.52923261001706,525.54,520256206.2552681,2.347633198951371e-11,1.7635768713554457e-05,10.301834,3600.0,benchmark-instance-s-m-03,20251215-run-S-M,2025-12-17 07:11:38.817787,c4-standard-2,europe-west9-a,48cfc10,tulipa-1_EU_investment_simple-28-52.1h,scip-10.0.0,tulipa-1_EU_investment_simple +temoa-US_9R_TS_NZ_trunc_4periods,9-12ts,glpk,5.0,2020.0,TO,Timeout,3600.0,829.68,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-16 18:22:23.629946,c4-standard-2,asia-south1-a,48cfc10,temoa-US_9R_TS_NZ_trunc_4periods-9-12ts,glpk-5.0,temoa-US_9R_TS_NZ_trunc_4periods +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,137.388,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-16 19:26:10.499322,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332 +OEMOF-tuple-as-label,1-8760ts,glpk,5.0,2020.0,ER,,,155.568,,,,,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-16 20:29:57.530697,c4-standard-2,asia-south1-a,48cfc10,OEMOF-tuple-as-label-1-8760ts,glpk-5.0,OEMOF-tuple-as-label +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,131.384,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-16 20:29:59.789736,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29 +tulipa-1_EU_investment_simple,28-2.2h,glpk,5.0,2020.0,TO,Timeout,3600.0,375.196,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-16 21:33:46.659464,c4-standard-2,asia-south1-a,48cfc10,tulipa-1_EU_investment_simple-28-2.2h,glpk-5.0,tulipa-1_EU_investment_simple +genx-6_three_zones_w_multistage-no_uc,3-1h,glpk,5.0,2020.0,ok,optimal,383.6183072059994,253.272,16995.00181,,,,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-16 22:37:32.441638,c4-standard-2,asia-south1-a,48cfc10,genx-6_three_zones_w_multistage-no_uc-3-1h,glpk-5.0,genx-6_three_zones_w_multistage-no_uc +temoa-US_9R_TS_NZ_trunc_4periods,9-12ts,gurobi,10.0.0,2022.0,ok,optimal,1718.712405184,2593.972,37165168.47256952,,,1709.2269201278689,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-16 22:45:07.020080,c4-standard-2,asia-south1-a,48cfc10,temoa-US_9R_TS_NZ_trunc_4periods-9-12ts,gurobi-10.0.0,temoa-US_9R_TS_NZ_trunc_4periods +temoa-US_9R_TS_NZ_trunc_4periods,9-12ts,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,2095.46,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-16 23:17:41.902713,c4-standard-2,asia-south1-a,48cfc10,temoa-US_9R_TS_NZ_trunc_4periods-9-12ts,highs-1.5.0.dev0,temoa-US_9R_TS_NZ_trunc_4periods +temoa-US_9R_TS_NZ_trunc_4periods,9-12ts,scip,8.0.3,2022.0,TO,Timeout,3600.0,5475.364,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 00:21:26.709295,c4-standard-2,asia-south1-a,48cfc10,temoa-US_9R_TS_NZ_trunc_4periods-9-12ts,scip-8.0.3,temoa-US_9R_TS_NZ_trunc_4periods +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332,73-1h,gurobi,10.0.0,2022.0,ok,optimal,2556.195753105003,553.652,2009767.253300932,,,2555.4126501083374,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 01:25:12.359419,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332,73-1h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1157.652,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 02:07:49.997482,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332,73-1h,scip,8.0.3,2022.0,TO,Timeout,3600.0,1532.656,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 03:11:42.119228,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332 +OEMOF-tuple-as-label,1-8760ts,gurobi,10.0.0,2022.0,ok,optimal,1.3579387810023036,316.268,1004289.0046605184,,,0.0755190849304199,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 04:15:32.733575,c4-standard-2,asia-south1-a,48cfc10,OEMOF-tuple-as-label-1-8760ts,gurobi-10.0.0,OEMOF-tuple-as-label +OEMOF-tuple-as-label,1-8760ts,highs,1.5.0.dev0,2022.0,ok,optimal,0.740015786002914,314.156,1004289.0046605184,,,0.1995751857757568,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 04:15:35.187275,c4-standard-2,asia-south1-a,48cfc10,OEMOF-tuple-as-label-1-8760ts,highs-1.5.0.dev0,OEMOF-tuple-as-label +OEMOF-tuple-as-label,1-8760ts,scip,8.0.3,2022.0,ok,optimal,0.9917547889999696,552.36,1004289.004660518,,,0.467443,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 04:15:37.032367,c4-standard-2,asia-south1-a,48cfc10,OEMOF-tuple-as-label-1-8760ts,scip-8.0.3,OEMOF-tuple-as-label +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29,73-1h,gurobi,10.0.0,2022.0,ok,optimal,104.88162735799416,245.424,784853.9996691812,,,104.78746795654295,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 04:15:39.211470,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29,73-1h,highs,1.5.0.dev0,2022.0,ok,optimal,1740.2022881449957,906.5,784853.9996691594,,,1740.0663113594055,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 04:17:24.842753,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29,73-1h,scip,8.0.3,2022.0,ok,optimal,1668.1393358610003,1249.696,784853.9996687407,,,1667.99251,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 04:46:25.813324,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29 +tulipa-1_EU_investment_simple,28-2.2h,gurobi,10.0.0,2022.0,ok,optimal,63.27659916900302,2463.156,4312460973.02377,,,58.423052072525024,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 05:18:05.652295,c4-standard-2,asia-south1-a,48cfc10,tulipa-1_EU_investment_simple-28-2.2h,gurobi-10.0.0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-2.2h,highs,1.5.0.dev0,2022.0,OOM,Out of Memory,,,,,,,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 05:19:15.633962,c4-standard-2,asia-south1-a,48cfc10,tulipa-1_EU_investment_simple-28-2.2h,highs-1.5.0.dev0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-2.2h,scip,8.0.3,2022.0,OOM,Out of Memory,,,,,,,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 05:52:59.208810,c4-standard-2,asia-south1-a,48cfc10,tulipa-1_EU_investment_simple-28-2.2h,scip-8.0.3,tulipa-1_EU_investment_simple +genx-6_three_zones_w_multistage-no_uc,3-1h,gurobi,10.0.0,2022.0,ok,optimal,233.90724408700044,467.668,16995.00181074792,,,230.3328559398651,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 06:23:58.490569,c4-standard-2,asia-south1-a,48cfc10,genx-6_three_zones_w_multistage-no_uc-3-1h,gurobi-10.0.0,genx-6_three_zones_w_multistage-no_uc +genx-6_three_zones_w_multistage-no_uc,3-1h,highs,1.5.0.dev0,2022.0,ok,optimal,167.66629709099652,530.776,16995.00181074802,,,166.66051602363586,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 06:27:54.490293,c4-standard-2,asia-south1-a,48cfc10,genx-6_three_zones_w_multistage-no_uc-3-1h,highs-1.5.0.dev0,genx-6_three_zones_w_multistage-no_uc +genx-6_three_zones_w_multistage-no_uc,3-1h,scip,8.0.3,2022.0,ok,optimal,989.9429288949976,1072.452,16995.001810747788,,,988.987038,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 06:30:43.708395,c4-standard-2,asia-south1-a,48cfc10,genx-6_three_zones_w_multistage-no_uc-3-1h,scip-8.0.3,genx-6_three_zones_w_multistage-no_uc +temoa-US_9R_TS_NZ_trunc_4periods,9-12ts,gurobi,11.0.0,2023.0,ok,optimal,2082.416368762999,2537.096,37165168.47256574,,,2072.3648869991302,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 06:51:11.594147,c4-standard-2,asia-south1-a,48cfc10,temoa-US_9R_TS_NZ_trunc_4periods-9-12ts,gurobi-11.0.0,temoa-US_9R_TS_NZ_trunc_4periods +temoa-US_9R_TS_NZ_trunc_4periods,9-12ts,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,2125.46,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 07:29:58.348052,c4-standard-2,asia-south1-a,48cfc10,temoa-US_9R_TS_NZ_trunc_4periods-9-12ts,highs-1.6.0.dev0,temoa-US_9R_TS_NZ_trunc_4periods +temoa-US_9R_TS_NZ_trunc_4periods,9-12ts,scip,8.1.0,2023.0,TO,Timeout,3600.0,5497.236,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 08:33:51.770369,c4-standard-2,asia-south1-a,48cfc10,temoa-US_9R_TS_NZ_trunc_4periods-9-12ts,scip-8.1.0,temoa-US_9R_TS_NZ_trunc_4periods +temoa-US_9R_TS_NZ_trunc_4periods,9-12ts,cbc,2.10.11,2023.0,TO,Timeout,3600.0,861.128,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 09:38:00.793609,c4-standard-2,asia-south1-a,48cfc10,temoa-US_9R_TS_NZ_trunc_4periods-9-12ts,cbc-2.10.11,temoa-US_9R_TS_NZ_trunc_4periods +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332,73-1h,gurobi,11.0.0,2023.0,ok,optimal,2526.8329990290003,549.784,2009767.253300932,,,2526.08491897583,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 10:41:58.088896,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332,73-1h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,1166.96,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 11:24:05.832113,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332,73-1h,scip,8.1.0,2023.0,TO,Timeout,3600.0,1559.996,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 12:27:52.615435,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332,73-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,168.332,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 13:31:39.108737,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332 +OEMOF-tuple-as-label,1-8760ts,gurobi,11.0.0,2023.0,ok,optimal,1.1005074190034063,337.384,1004289.0046605184,,,0.0758070945739746,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 14:35:25.150110,c4-standard-2,asia-south1-a,48cfc10,OEMOF-tuple-as-label-1-8760ts,gurobi-11.0.0,OEMOF-tuple-as-label +OEMOF-tuple-as-label,1-8760ts,highs,1.6.0.dev0,2023.0,ok,optimal,0.8241896249965066,346.916,1004289.0046605184,,,0.2280080318450927,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 14:35:27.421179,c4-standard-2,asia-south1-a,48cfc10,OEMOF-tuple-as-label-1-8760ts,highs-1.6.0.dev0,OEMOF-tuple-as-label +OEMOF-tuple-as-label,1-8760ts,scip,8.1.0,2023.0,ok,optimal,0.889988966009696,569.952,1004289.004660518,,,0.4672389999999999,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 14:35:29.544591,c4-standard-2,asia-south1-a,48cfc10,OEMOF-tuple-as-label-1-8760ts,scip-8.1.0,OEMOF-tuple-as-label +OEMOF-tuple-as-label,1-8760ts,cbc,2.10.11,2023.0,ok,optimal,0.7964570439944509,258.048,1004289.00466052,,,,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 14:35:31.765085,c4-standard-2,asia-south1-a,48cfc10,OEMOF-tuple-as-label-1-8760ts,cbc-2.10.11,OEMOF-tuple-as-label +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29,73-1h,gurobi,11.0.0,2023.0,ok,optimal,90.87020376299915,274.32,784853.9996645348,,,90.79363417625429,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 14:35:33.720452,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29,73-1h,highs,1.6.0.dev0,2023.0,ok,optimal,1667.171968552997,926.7,784853.9996691594,,,1667.0873413085938,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 14:37:05.386434,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29,73-1h,scip,8.1.0,2023.0,ok,optimal,1626.6270525220025,1264.336,784853.9996687407,,,1626.508938,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 15:04:53.380088,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29,73-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,162.796,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 15:35:46.793895,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29 +tulipa-1_EU_investment_simple,28-2.2h,gurobi,11.0.0,2023.0,ok,optimal,69.60015963300248,2435.54,4312886332.854419,,,65.79237794876099,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 16:39:32.516116,c4-standard-2,asia-south1-a,48cfc10,tulipa-1_EU_investment_simple-28-2.2h,gurobi-11.0.0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-2.2h,highs,1.6.0.dev0,2023.0,OOM,Out of Memory,,,,,,,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 16:40:46.602827,c4-standard-2,asia-south1-a,48cfc10,tulipa-1_EU_investment_simple-28-2.2h,highs-1.6.0.dev0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-2.2h,scip,8.1.0,2023.0,OOM,Out of Memory,,,,,,,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 17:08:40.474138,c4-standard-2,asia-south1-a,48cfc10,tulipa-1_EU_investment_simple-28-2.2h,scip-8.1.0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-2.2h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,406.452,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 17:35:03.417688,c4-standard-2,asia-south1-a,48cfc10,tulipa-1_EU_investment_simple-28-2.2h,cbc-2.10.11,tulipa-1_EU_investment_simple +genx-6_three_zones_w_multistage-no_uc,3-1h,gurobi,11.0.0,2023.0,ok,optimal,152.70521855900006,463.704,16995.001810747897,,,151.27288699150083,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 18:38:49.095278,c4-standard-2,asia-south1-a,48cfc10,genx-6_three_zones_w_multistage-no_uc-3-1h,gurobi-11.0.0,genx-6_three_zones_w_multistage-no_uc +genx-6_three_zones_w_multistage-no_uc,3-1h,highs,1.6.0.dev0,2023.0,ok,optimal,160.79502036700433,524.38,16995.00181074802,,,159.94938731193542,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 18:41:23.214857,c4-standard-2,asia-south1-a,48cfc10,genx-6_three_zones_w_multistage-no_uc-3-1h,highs-1.6.0.dev0,genx-6_three_zones_w_multistage-no_uc +genx-6_three_zones_w_multistage-no_uc,3-1h,scip,8.1.0,2023.0,ok,optimal,963.2882332890003,1067.484,16995.001810747788,,,962.484209,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 18:44:05.354507,c4-standard-2,asia-south1-a,48cfc10,genx-6_three_zones_w_multistage-no_uc-3-1h,scip-8.1.0,genx-6_three_zones_w_multistage-no_uc +genx-6_three_zones_w_multistage-no_uc,3-1h,cbc,2.10.11,2023.0,ok,optimal,173.98110747200553,310.644,16995.00181075,,,,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 19:00:10.271164,c4-standard-2,asia-south1-a,48cfc10,genx-6_three_zones_w_multistage-no_uc-3-1h,cbc-2.10.11,genx-6_three_zones_w_multistage-no_uc +temoa-US_9R_TS_NZ_trunc_4periods,9-12ts,gurobi,12.0.0,2024.0,ok,optimal,1817.6245470150025,2446.648,37165168.47228065,,,1807.571442127228,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 19:03:48.078335,c4-standard-2,asia-south1-a,48cfc10,temoa-US_9R_TS_NZ_trunc_4periods-9-12ts,gurobi-12.0.0,temoa-US_9R_TS_NZ_trunc_4periods +temoa-US_9R_TS_NZ_trunc_4periods,9-12ts,highs,1.9.0,2024.0,ok,optimal,3460.7347949950054,2793.66,37165168.47339525,,,3449.084481239319,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 19:38:03.377345,c4-standard-2,asia-south1-a,48cfc10,temoa-US_9R_TS_NZ_trunc_4periods-9-12ts,highs-1.9.0,temoa-US_9R_TS_NZ_trunc_4periods +temoa-US_9R_TS_NZ_trunc_4periods,9-12ts,scip,9.2.0,2024.0,TO,Timeout,3600.0,5478.132,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 20:39:43.052310,c4-standard-2,asia-south1-a,48cfc10,temoa-US_9R_TS_NZ_trunc_4periods-9-12ts,scip-9.2.0,temoa-US_9R_TS_NZ_trunc_4periods +temoa-US_9R_TS_NZ_trunc_4periods,9-12ts,cbc,2.10.12,2024.0,TO,Timeout,3600.0,843.496,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 21:43:28.417465,c4-standard-2,asia-south1-a,48cfc10,temoa-US_9R_TS_NZ_trunc_4periods-9-12ts,cbc-2.10.12,temoa-US_9R_TS_NZ_trunc_4periods +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332,73-1h,gurobi,12.0.0,2024.0,ok,optimal,1928.721637156996,527.308,2009767.247056544,0.0,9.966633808769624e-05,1928.0696721076963,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 22:47:13.889166,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332,73-1h,highs,1.9.0,2024.0,TO,Timeout,3600.0,1316.548,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-17 23:19:23.390059,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332,73-1h,scip,9.2.0,2024.0,TO,Timeout,3600.0,1552.252,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 00:23:07.976757,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332,73-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,151.18,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 01:26:53.599160,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332 +OEMOF-tuple-as-label,1-8760ts,gurobi,12.0.0,2024.0,ok,optimal,1.0694705430069007,307.508,1004289.0046605184,,,0.0770490169525146,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 02:30:39.301171,c4-standard-2,asia-south1-a,48cfc10,OEMOF-tuple-as-label-1-8760ts,gurobi-12.0.0,OEMOF-tuple-as-label +OEMOF-tuple-as-label,1-8760ts,highs,1.9.0,2024.0,ok,optimal,0.7588983290042961,304.328,1004289.0046605184,,,0.2127790451049804,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 02:30:41.631522,c4-standard-2,asia-south1-a,48cfc10,OEMOF-tuple-as-label-1-8760ts,highs-1.9.0,OEMOF-tuple-as-label +OEMOF-tuple-as-label,1-8760ts,scip,9.2.0,2024.0,ok,optimal,0.8798668589879526,542.624,1004289.004660518,,,0.4549809999999999,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 02:30:43.717186,c4-standard-2,asia-south1-a,48cfc10,OEMOF-tuple-as-label-1-8760ts,scip-9.2.0,OEMOF-tuple-as-label +OEMOF-tuple-as-label,1-8760ts,cbc,2.10.12,2024.0,ok,optimal,1.286798228000407,277.436,1004289.00466052,,,,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 02:30:45.939230,c4-standard-2,asia-south1-a,48cfc10,OEMOF-tuple-as-label-1-8760ts,cbc-2.10.12,OEMOF-tuple-as-label +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29,73-1h,gurobi,12.0.0,2024.0,ok,optimal,56.170571927999845,236.16,784853.9996554407,0.0,0.0,56.091856956481934,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 02:30:48.523481,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29,73-1h,highs,1.9.0,2024.0,ok,optimal,1387.658822049998,809.136,784853.99966908,0.0,9.981830093696088e-05,1387.513875246048,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 02:31:45.358040,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29,73-1h,scip,9.2.0,2024.0,ok,optimal,1620.467859190001,1248.772,784853.9996687407,8.327537480992175e-11,6.58427607043673e-05,1620.34988,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 02:54:53.684648,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29,73-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,145.236,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 03:21:54.900126,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29 +tulipa-1_EU_investment_simple,28-2.2h,gurobi,12.0.0,2024.0,ok,optimal,98.68898326299676,2401.092,4312679243.838932,0.0,9.430747749932828e-05,94.29726004600523,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 04:25:41.392787,c4-standard-2,asia-south1-a,48cfc10,tulipa-1_EU_investment_simple-28-2.2h,gurobi-12.0.0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-2.2h,highs,1.9.0,2024.0,OOM,Out of Memory,,,,,,,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 04:27:28.047216,c4-standard-2,asia-south1-a,48cfc10,tulipa-1_EU_investment_simple-28-2.2h,highs-1.9.0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-2.2h,scip,9.2.0,2024.0,OOM,Out of Memory,,,,,,,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 04:59:50.076952,c4-standard-2,asia-south1-a,48cfc10,tulipa-1_EU_investment_simple-28-2.2h,scip-9.2.0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-2.2h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,389.284,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 05:29:58.834084,c4-standard-2,asia-south1-a,48cfc10,tulipa-1_EU_investment_simple-28-2.2h,cbc-2.10.12,tulipa-1_EU_investment_simple +genx-6_three_zones_w_multistage-no_uc,3-1h,gurobi,12.0.0,2024.0,ok,optimal,200.5858987919928,452.04,16995.001810748305,,,199.16801619529724,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 06:33:46.517117,c4-standard-2,asia-south1-a,48cfc10,genx-6_three_zones_w_multistage-no_uc-3-1h,gurobi-12.0.0,genx-6_three_zones_w_multistage-no_uc +genx-6_three_zones_w_multistage-no_uc,3-1h,highs,1.9.0,2024.0,ok,optimal,159.10011009899608,515.248,16995.001810747806,,,158.0327503681183,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 06:37:08.876461,c4-standard-2,asia-south1-a,48cfc10,genx-6_three_zones_w_multistage-no_uc-3-1h,highs-1.9.0,genx-6_three_zones_w_multistage-no_uc +genx-6_three_zones_w_multistage-no_uc,3-1h,scip,9.2.0,2024.0,ok,optimal,963.7794418289996,1056.492,16995.001810747788,,,962.970776,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 06:39:49.793103,c4-standard-2,asia-south1-a,48cfc10,genx-6_three_zones_w_multistage-no_uc-3-1h,scip-9.2.0,genx-6_three_zones_w_multistage-no_uc +genx-6_three_zones_w_multistage-no_uc,3-1h,cbc,2.10.12,2024.0,ok,optimal,174.7246283919958,345.356,16995.00181075,,,,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 06:55:55.514494,c4-standard-2,asia-south1-a,48cfc10,genx-6_three_zones_w_multistage-no_uc-3-1h,cbc-2.10.12,genx-6_three_zones_w_multistage-no_uc +temoa-US_9R_TS_NZ_trunc_4periods,9-12ts,gurobi,13.0.0,2025.0,ok,optimal,1734.7496437319787,2651.256,37165168.47264265,,,1724.965970993042,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 06:59:27.883780,c4-standard-2,asia-south1-a,48cfc10,temoa-US_9R_TS_NZ_trunc_4periods-9-12ts,gurobi-13.0.0,temoa-US_9R_TS_NZ_trunc_4periods +temoa-US_9R_TS_NZ_trunc_4periods,9-12ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,848.4087558590109,2276.756,37165168.473,,,848.4087558590109,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 07:32:19.424521,c4-standard-2,asia-south1-a,48cfc10,temoa-US_9R_TS_NZ_trunc_4periods-9-12ts,highs-hipo-1.12.0-hipo,temoa-US_9R_TS_NZ_trunc_4periods +temoa-US_9R_TS_NZ_trunc_4periods,9-12ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,571.6662972980121,1830.204,37165168.631,,,571.6662972980121,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 07:46:28.606976,c4-standard-2,asia-south1-a,48cfc10,temoa-US_9R_TS_NZ_trunc_4periods-9-12ts,highs-ipx-1.12.0-hipo,temoa-US_9R_TS_NZ_trunc_4periods +temoa-US_9R_TS_NZ_trunc_4periods,9-12ts,highs,1.12.0,2025.0,TO,Timeout,3600.0,2262.268,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 07:56:01.023023,c4-standard-2,asia-south1-a,48cfc10,temoa-US_9R_TS_NZ_trunc_4periods-9-12ts,highs-1.12.0,temoa-US_9R_TS_NZ_trunc_4periods +temoa-US_9R_TS_NZ_trunc_4periods,9-12ts,scip,10.0.0,2025.0,TO,Timeout,3600.0,5497.732,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 08:59:48.780382,c4-standard-2,asia-south1-a,48cfc10,temoa-US_9R_TS_NZ_trunc_4periods-9-12ts,scip-10.0.0,temoa-US_9R_TS_NZ_trunc_4periods +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332,73-1h,gurobi,13.0.0,2025.0,ok,optimal,1727.9972080510051,542.66,2009767.253300932,0.0,9.995256716479788e-05,1727.2783331871033,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 10:03:35.798865,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332,73-1h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1563.212,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 10:32:25.012581,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332,73-1h,scip,10.0.0,2025.0,TO,Timeout,3600.0,1581.128,,,,3600.0,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 11:36:11.517456,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon48_Day332 +OEMOF-tuple-as-label,1-8760ts,gurobi,13.0.0,2025.0,ok,optimal,1.1108724339865148,348.92,1004289.0046605184,,,0.0773000717163086,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 12:39:57.697845,c4-standard-2,asia-south1-a,48cfc10,OEMOF-tuple-as-label-1-8760ts,gurobi-13.0.0,OEMOF-tuple-as-label +OEMOF-tuple-as-label,1-8760ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,1.7817458430072293,163.252,1004289.0047,,,1.7817458430072293,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 12:40:00.124269,c4-standard-2,asia-south1-a,48cfc10,OEMOF-tuple-as-label-1-8760ts,highs-hipo-1.12.0-hipo,OEMOF-tuple-as-label +OEMOF-tuple-as-label,1-8760ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,1.4934939949889667,164.028,1004289.0048,,,1.4934939949889667,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 12:40:02.679607,c4-standard-2,asia-south1-a,48cfc10,OEMOF-tuple-as-label-1-8760ts,highs-ipx-1.12.0-hipo,OEMOF-tuple-as-label +OEMOF-tuple-as-label,1-8760ts,highs,1.12.0,2025.0,ok,optimal,0.9272031209839042,356.516,1004289.0046605184,,,0.2708816528320312,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 12:40:04.944492,c4-standard-2,asia-south1-a,48cfc10,OEMOF-tuple-as-label-1-8760ts,highs-1.12.0,OEMOF-tuple-as-label +OEMOF-tuple-as-label,1-8760ts,scip,10.0.0,2025.0,ok,optimal,0.9458848389913328,579.284,1004289.004660518,,,0.4805709999999999,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 12:40:07.253755,c4-standard-2,asia-south1-a,48cfc10,OEMOF-tuple-as-label-1-8760ts,scip-10.0.0,OEMOF-tuple-as-label +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29,73-1h,gurobi,13.0.0,2025.0,ok,optimal,94.39558973998646,263.524,784853.996612408,5.144995302528525e-07,9.909968106912202e-05,94.31821298599245,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 12:40:09.578809,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29,73-1h,highs,1.12.0,2025.0,ok,optimal,1008.2518913639942,897.62,784853.9996691593,5.218048215738236e-15,9.158817910995704e-05,1008.1609289646148,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 12:41:44.837972,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29,73-1h,scip,10.0.0,2025.0,ok,optimal,1633.450458284991,1273.164,784853.9996687407,8.327537480992175e-11,6.58427607043673e-05,1633.325955,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 12:58:33.918451,c4-standard-2,asia-south1-a,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day29 +tulipa-1_EU_investment_simple,28-2.2h,gurobi,13.0.0,2025.0,ok,optimal,90.10174280998764,2244.0,4312460973.023714,0.0,5.369084521375414e-05,86.20719408988953,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 13:25:48.295553,c4-standard-2,asia-south1-a,48cfc10,tulipa-1_EU_investment_simple-28-2.2h,gurobi-13.0.0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-2.2h,highs,1.12.0,2025.0,OOM,Out of Memory,,,,,,,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 13:27:24.077676,c4-standard-2,asia-south1-a,48cfc10,tulipa-1_EU_investment_simple-28-2.2h,highs-1.12.0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-2.2h,scip,10.0.0,2025.0,OOM,Out of Memory,,,,,,,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 13:56:53.395702,c4-standard-2,asia-south1-a,48cfc10,tulipa-1_EU_investment_simple-28-2.2h,scip-10.0.0,tulipa-1_EU_investment_simple +genx-6_three_zones_w_multistage-no_uc,3-1h,gurobi,13.0.0,2025.0,ok,optimal,180.68787302801505,473.084,16995.001810747974,,,179.25116395950317,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 14:23:16.386357,c4-standard-2,asia-south1-a,48cfc10,genx-6_three_zones_w_multistage-no_uc-3-1h,gurobi-13.0.0,genx-6_three_zones_w_multistage-no_uc +genx-6_three_zones_w_multistage-no_uc,3-1h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,35.83172514400212,283.376,16995.001811,,,35.83172514400212,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 14:26:19.917928,c4-standard-2,asia-south1-a,48cfc10,genx-6_three_zones_w_multistage-no_uc-3-1h,highs-hipo-1.12.0-hipo,genx-6_three_zones_w_multistage-no_uc +genx-6_three_zones_w_multistage-no_uc,3-1h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,61.15120237699011,164.628,16995.001811,,,61.15120237699011,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 14:26:56.518647,c4-standard-2,asia-south1-a,48cfc10,genx-6_three_zones_w_multistage-no_uc-3-1h,highs-ipx-1.12.0-hipo,genx-6_three_zones_w_multistage-no_uc +genx-6_three_zones_w_multistage-no_uc,3-1h,highs,1.12.0,2025.0,ok,optimal,157.91092143399874,529.184,16995.001810747963,,,157.05902910232544,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 14:27:58.425672,c4-standard-2,asia-south1-a,48cfc10,genx-6_three_zones_w_multistage-no_uc-3-1h,highs-1.12.0,genx-6_three_zones_w_multistage-no_uc +genx-6_three_zones_w_multistage-no_uc,3-1h,scip,10.0.0,2025.0,ok,optimal,965.1333971459826,1079.98,16995.001810747788,,,964.297094,3600.0,benchmark-instance-s-m-14,20251216-rerun-2,2025-12-18 14:30:37.804962,c4-standard-2,asia-south1-a,48cfc10,genx-6_three_zones_w_multistage-no_uc-3-1h,scip-10.0.0,genx-6_three_zones_w_multistage-no_uc +SWITCH-China-open-model,32-433ts,gurobi,13.0.0,2025.0,ok,optimal,716.099566616,44037.676,3193471748610.4263,,,593.7976639270782,86400.0,benchmark-instance-l-24,20251216-rerun-2,2025-12-16 18:20:13.721102,c4-highmem-16,europe-west9-a,48cfc10,SWITCH-China-open-model-32-433ts,gurobi-13.0.0,SWITCH-China-open-model +SWITCH-China-open-model,32-433ts,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,86400.0,162.9,,,,86400.0,86400.0,benchmark-instance-l-24,20251216-rerun-2,2025-12-16 18:37:47.101715,c4-highmem-16,europe-west9-a,48cfc10,SWITCH-China-open-model-32-433ts,highs-hipo-1.12.0-hipo,SWITCH-China-open-model +SWITCH-China-open-model,32-433ts,highs-ipx,1.12.0-hipo,2025.0,warning,Unknown,76800.02120384901,29839.16,3193471749900.0,,,76800.02120384901,86400.0,benchmark-instance-l-24,20251216-rerun-2,2025-12-17 18:40:46.552430,c4-highmem-16,europe-west9-a,48cfc10,SWITCH-China-open-model-32-433ts,highs-ipx-1.12.0-hipo,SWITCH-China-open-model +SWITCH-China-open-model,32-433ts,highs,1.12.0,2025.0,TO,Timeout,86400.0,33354.784,,,,86400.0,86400.0,benchmark-instance-l-24,20251216-rerun-2,2025-12-18 16:03:49.554379,c4-highmem-16,europe-west9-a,48cfc10,SWITCH-China-open-model-32-433ts,highs-1.12.0,SWITCH-China-open-model +SWITCH-China-open-model,32-433ts,scip,10.0.0,2025.0,TO,Timeout,86400.0,55938.048,,,,86400.0,86400.0,benchmark-instance-l-24,20251216-rerun-2,2025-12-19 16:06:48.981973,c4-highmem-16,europe-west9-a,48cfc10,SWITCH-China-open-model-32-433ts,scip-10.0.0,SWITCH-China-open-model +SWITCH-China-open-model,32-433ts,cbc,2.10.12,2024.0,TO,Timeout,86400.0,10862.744,,,,86400.0,86400.0,benchmark-instance-l-24,20251216-rerun-2,2025-12-20 16:10:20.081723,c4-highmem-16,europe-west9-a,48cfc10,SWITCH-China-open-model-32-433ts,cbc-2.10.12,SWITCH-China-open-model +genx-5_three_zones_w_piecewise_fuel,3-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,202.948,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-16 18:21:14.223816,c4-standard-2,europe-west9-c,48cfc10,genx-5_three_zones_w_piecewise_fuel-3-1h,glpk-5.0,genx-5_three_zones_w_piecewise_fuel +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,192.784,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-16 19:24:41.489362,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29 +OEMOF-result-object,1-8760ts,glpk,5.0,2020.0,ER,,,148.028,,,,,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-16 20:28:09.096801,c4-standard-2,europe-west9-c,48cfc10,OEMOF-result-object-1-8760ts,glpk-5.0,OEMOF-result-object +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,157.168,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-16 20:28:13.438327,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,129.596,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-16 21:31:40.046446,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29 +pypsa-power+ely+battery-mod,1-1h,glpk,5.0,2020.0,ok,unknown,201.93103525700096,283.612,31714266240.0,,,,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-16 22:35:07.402584,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely+battery-mod-1-1h,glpk-5.0,pypsa-power+ely+battery-mod +times-etimeseu-france-elec+heat-multi_stage,1-64ts,glpk,5.0,2020.0,warning,unknown,0.0265903320014331,166.388,,,,,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-16 22:38:29.813154,c4-standard-2,europe-west9-c,48cfc10,times-etimeseu-france-elec+heat-multi_stage-1-64ts,glpk-5.0,times-etimeseu-france-elec+heat-multi_stage +genx-5_three_zones_w_piecewise_fuel,3-1h,gurobi,10.0.0,2022.0,TO,Timeout,3600.0,1230.664,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-16 22:39:11.789866,c4-standard-2,europe-west9-c,48cfc10,genx-5_three_zones_w_piecewise_fuel-3-1h,gurobi-10.0.0,genx-5_three_zones_w_piecewise_fuel +genx-5_three_zones_w_piecewise_fuel,3-1h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,3156.848,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-16 23:42:39.120768,c4-standard-2,europe-west9-c,48cfc10,genx-5_three_zones_w_piecewise_fuel-3-1h,highs-1.5.0.dev0,genx-5_three_zones_w_piecewise_fuel +genx-5_three_zones_w_piecewise_fuel,3-1h,scip,8.0.3,2022.0,TO,Timeout,3600.0,1617.9,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 00:46:05.501110,c4-standard-2,europe-west9-c,48cfc10,genx-5_three_zones_w_piecewise_fuel-3-1h,scip-8.0.3,genx-5_three_zones_w_piecewise_fuel +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29,73-1h,gurobi,10.0.0,2022.0,ok,optimal,483.8345795569985,455.384,2090675.1347196985,,,483.3785741329193,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 01:49:32.088314,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29,73-1h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1028.796,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 01:57:37.167776,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29,73-1h,scip,8.0.3,2022.0,TO,Timeout,3600.0,1914.752,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 03:01:04.586744,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29 +OEMOF-result-object,1-8760ts,gurobi,10.0.0,2022.0,ok,optimal,0.7432489290004014,307.536,17570075046.756588,,,0.0870471000671386,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 04:04:31.521699,c4-standard-2,europe-west9-c,48cfc10,OEMOF-result-object-1-8760ts,gurobi-10.0.0,OEMOF-result-object +OEMOF-result-object,1-8760ts,highs,1.5.0.dev0,2022.0,ok,optimal,0.7681543970029452,304.804,17570075046.75652,,,0.2811012268066406,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 04:04:33.274802,c4-standard-2,europe-west9-c,48cfc10,OEMOF-result-object-1-8760ts,highs-1.5.0.dev0,OEMOF-result-object +OEMOF-result-object,1-8760ts,scip,8.0.3,2022.0,ok,optimal,2.011490497003251,551.3,17570075046.756535,,,1.542503,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 04:04:35.025763,c4-standard-2,europe-west9-c,48cfc10,OEMOF-result-object-1-8760ts,scip-8.0.3,OEMOF-result-object +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314,73-1h,gurobi,10.0.0,2022.0,ok,optimal,42.55571528900328,254.344,902579.3504088965,,,42.4133288860321,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 04:04:38.118405,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314,73-1h,highs,1.5.0.dev0,2022.0,ok,optimal,417.2579458209948,580.692,902579.3504072418,,,416.9028792381287,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 04:05:21.579641,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314,73-1h,scip,8.0.3,2022.0,ok,optimal,1294.8783702690052,1032.296,902579.350408596,,,1294.669039,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 04:12:19.748821,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29,73-1h,gurobi,10.0.0,2022.0,ok,optimal,98.7602809240052,265.664,784744.6320477482,,,98.52754998207092,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 04:33:55.595542,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29,73-1h,highs,1.5.0.dev0,2022.0,ok,optimal,1025.3713397739994,826.404,784744.6321437921,,,1025.2764585018158,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 04:35:35.025844,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29,73-1h,scip,8.0.3,2022.0,ok,optimal,1739.7962604260028,1267.132,784744.6320975025,,,1739.692171,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 04:52:41.066765,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29 +pypsa-power+ely+battery-mod,1-1h,gurobi,10.0.0,2022.0,ok,optimal,13.841102698999748,492.508,31715824201.142437,,,13.123753786087036,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 05:25:08.837585,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely+battery-mod-1-1h,gurobi-10.0.0,pypsa-power+ely+battery-mod +pypsa-power+ely+battery-mod,1-1h,highs,1.5.0.dev0,2022.0,ok,optimal,42.81054182100343,575.044,31715824201.142395,,,41.89698028564453,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 05:25:24.071920,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely+battery-mod-1-1h,highs-1.5.0.dev0,pypsa-power+ely+battery-mod +pypsa-power+ely+battery-mod,1-1h,scip,8.0.3,2022.0,ok,optimal,191.9952481739965,1173.212,31715824201.1424,,,191.085269,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 05:26:08.269183,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely+battery-mod-1-1h,scip-8.0.3,pypsa-power+ely+battery-mod +times-etimeseu-france-elec+heat-multi_stage,1-64ts,gurobi,10.0.0,2022.0,ok,optimal,5.978178195997316,328.832,423183.4347354729,,,5.358130931854248,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 05:29:22.052538,c4-standard-2,europe-west9-c,48cfc10,times-etimeseu-france-elec+heat-multi_stage-1-64ts,gurobi-10.0.0,times-etimeseu-france-elec+heat-multi_stage +times-etimeseu-france-elec+heat-multi_stage,1-64ts,highs,1.5.0.dev0,2022.0,ok,optimal,19.91534291500284,360.688,423183.4347354723,,,19.221635341644287,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 05:29:29.185366,c4-standard-2,europe-west9-c,48cfc10,times-etimeseu-france-elec+heat-multi_stage-1-64ts,highs-1.5.0.dev0,times-etimeseu-france-elec+heat-multi_stage +times-etimeseu-france-elec+heat-multi_stage,1-64ts,scip,8.0.3,2022.0,ok,optimal,85.27569630599464,1962.724,423183.43473547255,,,84.608388,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 05:29:50.247876,c4-standard-2,europe-west9-c,48cfc10,times-etimeseu-france-elec+heat-multi_stage-1-64ts,scip-8.0.3,times-etimeseu-france-elec+heat-multi_stage +genx-5_three_zones_w_piecewise_fuel,3-1h,gurobi,11.0.0,2023.0,TO,Timeout,3600.0,1234.964,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 05:34:33.477464,c4-standard-2,europe-west9-c,48cfc10,genx-5_three_zones_w_piecewise_fuel-3-1h,gurobi-11.0.0,genx-5_three_zones_w_piecewise_fuel +genx-5_three_zones_w_piecewise_fuel,3-1h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,3176.62,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 06:38:00.513661,c4-standard-2,europe-west9-c,48cfc10,genx-5_three_zones_w_piecewise_fuel-3-1h,highs-1.6.0.dev0,genx-5_three_zones_w_piecewise_fuel +genx-5_three_zones_w_piecewise_fuel,3-1h,scip,8.1.0,2023.0,TO,Timeout,3600.0,1632.54,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 07:41:27.209593,c4-standard-2,europe-west9-c,48cfc10,genx-5_three_zones_w_piecewise_fuel-3-1h,scip-8.1.0,genx-5_three_zones_w_piecewise_fuel +genx-5_three_zones_w_piecewise_fuel,3-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,235.0,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 08:44:53.819258,c4-standard-2,europe-west9-c,48cfc10,genx-5_three_zones_w_piecewise_fuel-3-1h,cbc-2.10.11,genx-5_three_zones_w_piecewise_fuel +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29,73-1h,gurobi,11.0.0,2023.0,ok,optimal,506.0931920700023,463.28,2090675.135799095,,,505.7081038951874,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 09:48:20.658745,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29,73-1h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,1019.784,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 09:56:47.857734,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29,73-1h,scip,8.1.0,2023.0,TO,Timeout,3600.0,1930.736,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 11:00:15.163574,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29,73-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,224.504,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 12:03:43.102359,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29 +OEMOF-result-object,1-8760ts,gurobi,11.0.0,2023.0,ok,optimal,0.6337544169946341,327.72,17570075046.756588,,,0.0845558643341064,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 13:07:09.781711,c4-standard-2,europe-west9-c,48cfc10,OEMOF-result-object-1-8760ts,gurobi-11.0.0,OEMOF-result-object +OEMOF-result-object,1-8760ts,highs,1.6.0.dev0,2023.0,ok,optimal,0.7751051499944879,334.772,17570075046.75652,,,0.2909367084503174,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 13:07:11.520419,c4-standard-2,europe-west9-c,48cfc10,OEMOF-result-object-1-8760ts,highs-1.6.0.dev0,OEMOF-result-object +OEMOF-result-object,1-8760ts,scip,8.1.0,2023.0,ok,optimal,1.95246213999053,572.644,17570075046.756535,,,1.55612,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 13:07:13.422986,c4-standard-2,europe-west9-c,48cfc10,OEMOF-result-object-1-8760ts,scip-8.1.0,OEMOF-result-object +OEMOF-result-object,1-8760ts,cbc,2.10.11,2023.0,ok,optimal,0.7627988000022015,252.268,17570075046.756565,,,,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 13:07:16.582308,c4-standard-2,europe-west9-c,48cfc10,OEMOF-result-object-1-8760ts,cbc-2.10.11,OEMOF-result-object +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314,73-1h,gurobi,11.0.0,2023.0,ok,optimal,34.350268951006,262.304,902579.3504095896,,,34.22081398963928,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 13:07:18.398745,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314,73-1h,highs,1.6.0.dev0,2023.0,ok,optimal,410.3225393430039,607.396,902579.3504072418,,,410.1047174930573,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 13:07:53.657318,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314,73-1h,scip,8.1.0,2023.0,ok,optimal,1295.8047287439986,1039.196,902579.350408596,,,1295.616306,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 13:14:44.877640,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314,73-1h,cbc,2.10.11,2023.0,ok,optimal,3380.6046685939946,303.296,902579.3504074,,,3380.42,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 13:36:21.646816,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29,73-1h,gurobi,11.0.0,2023.0,ok,optimal,88.31783511300455,277.972,784744.6321438244,,,88.12187695503235,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 14:36:09.524424,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29,73-1h,highs,1.6.0.dev0,2023.0,ok,optimal,999.9305779449932,850.728,784744.6321437921,,,999.8708975315094,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 14:37:38.609867,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29,73-1h,scip,8.1.0,2023.0,ok,optimal,1742.0926936210017,1277.124,784744.6320975025,,,1742.012794,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 14:54:19.304794,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29,73-1h,cbc,2.10.11,2023.0,ok,optimal,2161.690769363005,294.56,784744.63214382,,,2161.61,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 15:23:22.217506,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29 +pypsa-power+ely+battery-mod,1-1h,gurobi,11.0.0,2023.0,ok,optimal,13.434262477996526,489.86,31715824201.142437,,,12.783050060272217,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 16:02:51.462156,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely+battery-mod-1-1h,gurobi-11.0.0,pypsa-power+ely+battery-mod +pypsa-power+ely+battery-mod,1-1h,highs,1.6.0.dev0,2023.0,ok,optimal,41.47759235100239,506.96,31715824201.142395,,,40.73607134819031,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 16:03:06.251239,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely+battery-mod-1-1h,highs-1.6.0.dev0,pypsa-power+ely+battery-mod +pypsa-power+ely+battery-mod,1-1h,scip,8.1.0,2023.0,ok,optimal,191.2153887010063,1173.876,31715824201.1424,,,190.405958,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 16:03:49.019653,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely+battery-mod-1-1h,scip-8.1.0,pypsa-power+ely+battery-mod +pypsa-power+ely+battery-mod,1-1h,cbc,2.10.11,2023.0,ok,optimal,159.00549780800063,638.588,31715204639.26688,,,158.26,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 16:07:02.005454,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely+battery-mod-1-1h,cbc-2.10.11,pypsa-power+ely+battery-mod +times-etimeseu-france-elec+heat-multi_stage,1-64ts,gurobi,11.0.0,2023.0,ok,optimal,6.066706206998788,352.208,423183.4347354724,,,5.394176006317139,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 16:09:42.321901,c4-standard-2,europe-west9-c,48cfc10,times-etimeseu-france-elec+heat-multi_stage-1-64ts,gurobi-11.0.0,times-etimeseu-france-elec+heat-multi_stage +times-etimeseu-france-elec+heat-multi_stage,1-64ts,highs,1.6.0.dev0,2023.0,ok,optimal,19.369112857995788,365.652,423183.4347354723,,,18.896499156951904,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 16:09:49.446302,c4-standard-2,europe-west9-c,48cfc10,times-etimeseu-france-elec+heat-multi_stage-1-64ts,highs-1.6.0.dev0,times-etimeseu-france-elec+heat-multi_stage +times-etimeseu-france-elec+heat-multi_stage,1-64ts,scip,8.1.0,2023.0,ok,optimal,84.583421000003,1966.776,423183.43473547255,,,84.01872,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 16:10:09.834637,c4-standard-2,europe-west9-c,48cfc10,times-etimeseu-france-elec+heat-multi_stage-1-64ts,scip-8.1.0,times-etimeseu-france-elec+heat-multi_stage +times-etimeseu-france-elec+heat-multi_stage,1-64ts,cbc,2.10.11,2023.0,ER,,,197.416,,,,,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 16:11:35.655944,c4-standard-2,europe-west9-c,48cfc10,times-etimeseu-france-elec+heat-multi_stage-1-64ts,cbc-2.10.11,times-etimeseu-france-elec+heat-multi_stage +genx-5_three_zones_w_piecewise_fuel,3-1h,gurobi,12.0.0,2024.0,TO,Timeout,3600.0,1256.112,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 16:12:06.615664,c4-standard-2,europe-west9-c,48cfc10,genx-5_three_zones_w_piecewise_fuel-3-1h,gurobi-12.0.0,genx-5_three_zones_w_piecewise_fuel +genx-5_three_zones_w_piecewise_fuel,3-1h,highs,1.9.0,2024.0,TO,Timeout,3600.0,2775.732,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 17:15:33.844819,c4-standard-2,europe-west9-c,48cfc10,genx-5_three_zones_w_piecewise_fuel-3-1h,highs-1.9.0,genx-5_three_zones_w_piecewise_fuel +genx-5_three_zones_w_piecewise_fuel,3-1h,scip,9.2.0,2024.0,TO,Timeout,3600.0,1615.268,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 18:19:01.471325,c4-standard-2,europe-west9-c,48cfc10,genx-5_three_zones_w_piecewise_fuel-3-1h,scip-9.2.0,genx-5_three_zones_w_piecewise_fuel +genx-5_three_zones_w_piecewise_fuel,3-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,217.716,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 19:22:28.468102,c4-standard-2,europe-west9-c,48cfc10,genx-5_three_zones_w_piecewise_fuel-3-1h,cbc-2.10.12,genx-5_three_zones_w_piecewise_fuel +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29,73-1h,gurobi,12.0.0,2024.0,ok,optimal,464.6075985750067,448.856,2090675.1350265655,0.0,9.93075210073621e-05,464.1762359142304,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 20:25:55.622524,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29,73-1h,highs,1.9.0,2024.0,TO,Timeout,3600.0,1152.012,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 20:33:41.472261,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29,73-1h,scip,9.2.0,2024.0,TO,Timeout,3600.0,1914.9,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 21:37:08.101089,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29,73-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,206.636,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 22:40:35.961808,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29 +OEMOF-result-object,1-8760ts,gurobi,12.0.0,2024.0,ok,optimal,0.6972491049964447,300.048,17570075046.756588,,,0.0896990299224853,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 23:44:02.457785,c4-standard-2,europe-west9-c,48cfc10,OEMOF-result-object-1-8760ts,gurobi-12.0.0,OEMOF-result-object +OEMOF-result-object,1-8760ts,highs,1.9.0,2024.0,ok,optimal,0.7863298800075427,300.084,17570075046.75652,,,0.2809751033782959,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 23:44:04.301510,c4-standard-2,europe-west9-c,48cfc10,OEMOF-result-object-1-8760ts,highs-1.9.0,OEMOF-result-object +OEMOF-result-object,1-8760ts,scip,9.2.0,2024.0,ok,optimal,1.9578562130045607,541.92,17570075046.756535,,,1.555341,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 23:44:06.240738,c4-standard-2,europe-west9-c,48cfc10,OEMOF-result-object-1-8760ts,scip-9.2.0,OEMOF-result-object +OEMOF-result-object,1-8760ts,cbc,2.10.12,2024.0,ok,optimal,1.2195050779992016,271.18,17570075046.756565,,,,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 23:44:09.483278,c4-standard-2,europe-west9-c,48cfc10,OEMOF-result-object-1-8760ts,cbc-2.10.12,OEMOF-result-object +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314,73-1h,gurobi,12.0.0,2024.0,ok,optimal,30.77693998599716,254.236,902579.3504102712,0.0,0.0,30.649286031723022,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 23:44:11.838702,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314,73-1h,highs,1.9.0,2024.0,ok,optimal,524.0558623399993,601.72,902579.3504069672,3.4257491934554197e-12,9.931183540904718e-05,523.6746854782104,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 23:44:43.476387,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314,73-1h,scip,9.2.0,2024.0,ok,optimal,1295.4513302820123,1022.796,902579.350408596,2.2769409083358564e-12,0.0,1295.258677,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-17 23:53:28.380037,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314,73-1h,cbc,2.10.12,2024.0,ok,optimal,3382.5623697909905,304.108,902579.3504074,0.0,0.0,3382.01,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 00:15:04.758754,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29,73-1h,gurobi,12.0.0,2024.0,ok,optimal,93.13737345300616,258.936,784744.6300928972,0.0,0.0,92.92217206954956,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 01:14:55.760912,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29,73-1h,highs,1.9.0,2024.0,ok,optimal,914.8821938300098,811.36,784744.6321439007,1.2278314585252116e-14,9.399884185304285e-05,914.7750725746156,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 01:16:29.519747,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29,73-1h,scip,9.2.0,2024.0,ok,optimal,1740.335277050006,1256.404,784744.6320975025,9.545800924512636e-16,0.0,1740.253473,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 01:31:45.004428,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29,73-1h,cbc,2.10.12,2024.0,ok,optimal,2159.285045234996,297.284,784744.63214382,0.0,0.0,2159.1,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 02:00:46.004859,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29 +pypsa-power+ely+battery-mod,1-1h,gurobi,12.0.0,2024.0,ok,optimal,12.236844244005624,477.144,31715824201.142437,0.0,5.316239838879807e-05,11.621657133102415,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 02:40:12.294161,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely+battery-mod-1-1h,gurobi-12.0.0,pypsa-power+ely+battery-mod +pypsa-power+ely+battery-mod,1-1h,highs,1.9.0,2024.0,ok,optimal,42.92343638499733,577.728,31715824201.142395,4.64992990495576e-15,5.316239839012118e-05,41.96549272537232,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 02:40:25.887435,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely+battery-mod-1-1h,highs-1.9.0,pypsa-power+ely+battery-mod +pypsa-power+ely+battery-mod,1-1h,scip,9.2.0,2024.0,ok,optimal,191.9503851979971,1163.44,31715824201.1424,0.0,5.3165224781101776e-05,191.132434,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 02:41:10.223505,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely+battery-mod-1-1h,scip-9.2.0,pypsa-power+ely+battery-mod +pypsa-power+ely+battery-mod,1-1h,cbc,2.10.12,2024.0,ok,optimal,160.5621593419928,634.864,31715204639.26688,0.0,0.0,158.92,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 02:44:23.979188,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely+battery-mod-1-1h,cbc-2.10.12,pypsa-power+ely+battery-mod +times-etimeseu-france-elec+heat-multi_stage,1-64ts,gurobi,12.0.0,2024.0,ok,optimal,5.353248333994998,318.328,423183.4347354724,,,4.680645942687988,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 02:47:05.920885,c4-standard-2,europe-west9-c,48cfc10,times-etimeseu-france-elec+heat-multi_stage-1-64ts,gurobi-12.0.0,times-etimeseu-france-elec+heat-multi_stage +times-etimeseu-france-elec+heat-multi_stage,1-64ts,highs,1.9.0,2024.0,ok,optimal,20.223275363008725,364.876,423183.4347354728,,,19.44196844100952,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 02:47:12.722260,c4-standard-2,europe-west9-c,48cfc10,times-etimeseu-france-elec+heat-multi_stage-1-64ts,highs-1.9.0,times-etimeseu-france-elec+heat-multi_stage +times-etimeseu-france-elec+heat-multi_stage,1-64ts,scip,9.2.0,2024.0,ok,optimal,85.2049357460055,1953.288,423183.43473547255,,,84.631518,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 02:47:34.384245,c4-standard-2,europe-west9-c,48cfc10,times-etimeseu-france-elec+heat-multi_stage-1-64ts,scip-9.2.0,times-etimeseu-france-elec+heat-multi_stage +times-etimeseu-france-elec+heat-multi_stage,1-64ts,cbc,2.10.12,2024.0,ER,,,180.22,,,,,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 02:49:01.220892,c4-standard-2,europe-west9-c,48cfc10,times-etimeseu-france-elec+heat-multi_stage-1-64ts,cbc-2.10.12,times-etimeseu-france-elec+heat-multi_stage +genx-5_three_zones_w_piecewise_fuel,3-1h,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,1216.744,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 02:49:33.455560,c4-standard-2,europe-west9-c,48cfc10,genx-5_three_zones_w_piecewise_fuel-3-1h,gurobi-13.0.0,genx-5_three_zones_w_piecewise_fuel +genx-5_three_zones_w_piecewise_fuel,3-1h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1684.22,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 03:52:59.620267,c4-standard-2,europe-west9-c,48cfc10,genx-5_three_zones_w_piecewise_fuel-3-1h,highs-1.12.0,genx-5_three_zones_w_piecewise_fuel +genx-5_three_zones_w_piecewise_fuel,3-1h,scip,10.0.0,2025.0,TO,Timeout,3600.0,1638.84,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 04:56:26.379231,c4-standard-2,europe-west9-c,48cfc10,genx-5_three_zones_w_piecewise_fuel-3-1h,scip-10.0.0,genx-5_three_zones_w_piecewise_fuel +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29,73-1h,gurobi,13.0.0,2025.0,ok,optimal,638.3940696189966,481.604,2090675.135171308,0.0,9.994187686547538e-05,637.9731101989746,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 05:59:54.189410,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29,73-1h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1136.252,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 06:10:33.769206,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29,73-1h,scip,10.0.0,2025.0,TO,Timeout,3600.0,1938.9,,,,3600.0,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 07:14:01.365390,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day29 +OEMOF-result-object,1-8760ts,gurobi,13.0.0,2025.0,ok,optimal,0.6534196279826574,340.34,17570075046.756588,,,0.0906651020050048,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 08:17:28.164743,c4-standard-2,europe-west9-c,48cfc10,OEMOF-result-object-1-8760ts,gurobi-13.0.0,OEMOF-result-object +OEMOF-result-object,1-8760ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,2.0811310729768597,163.556,17570075047.0,,,2.0811310729768597,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 08:17:29.976748,c4-standard-2,europe-west9-c,48cfc10,OEMOF-result-object-1-8760ts,highs-hipo-1.12.0-hipo,OEMOF-result-object +OEMOF-result-object,1-8760ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,1.7054353590065148,164.032,17570075047.0,,,1.7054353590065148,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 08:17:32.776262,c4-standard-2,europe-west9-c,48cfc10,OEMOF-result-object-1-8760ts,highs-ipx-1.12.0-hipo,OEMOF-result-object +OEMOF-result-object,1-8760ts,highs,1.12.0,2025.0,ok,optimal,0.8403084329911508,351.692,17570075046.756573,,,0.3201122283935547,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 08:17:35.208240,c4-standard-2,europe-west9-c,48cfc10,OEMOF-result-object-1-8760ts,highs-1.12.0,OEMOF-result-object +OEMOF-result-object,1-8760ts,scip,10.0.0,2025.0,ok,optimal,1.9427114709978923,582.804,17570075046.756535,,,1.528731,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 08:17:37.246155,c4-standard-2,europe-west9-c,48cfc10,OEMOF-result-object-1-8760ts,scip-10.0.0,OEMOF-result-object +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314,73-1h,gurobi,13.0.0,2025.0,ok,optimal,36.3760397110018,275.956,902579.3500208372,0.0,9.675648092844038e-05,36.24792695045471,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 08:17:40.469446,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314,73-1h,highs,1.12.0,2025.0,ok,optimal,443.76557445101207,658.888,902579.350407378,7.817435536955898e-14,9.80919733029956e-05,443.5246942043304,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 08:18:17.802193,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314,73-1h,scip,10.0.0,2025.0,ok,optimal,1297.782058968005,1050.604,902579.350408596,2.2769409083358564e-12,0.0,1297.58344,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 08:25:42.510657,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon24_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29,73-1h,gurobi,13.0.0,2025.0,ok,optimal,67.22867889099871,278.272,784744.6321439972,0.0,2.61896130052701e-05,66.98099780082703,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 08:47:21.316082,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29,73-1h,highs,1.12.0,2025.0,ok,optimal,792.7611262249993,843.724,784744.6321438221,1.5787371410169729e-13,9.968679695165869e-05,792.6931648254395,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 08:48:29.357007,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29,73-1h,scip,10.0.0,2025.0,ok,optimal,1735.6318785100011,1284.66,784744.6320975025,9.545800924512636e-16,0.0,1735.547615,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 09:01:42.913917,c4-standard-2,europe-west9-c,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day29 +pypsa-power+ely+battery-mod,1-1h,gurobi,13.0.0,2025.0,ok,optimal,12.232629403995816,506.796,31715824201.142437,0.0,5.316239838879807e-05,11.566174983978271,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 09:34:06.059080,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely+battery-mod-1-1h,gurobi-13.0.0,pypsa-power+ely+battery-mod +pypsa-power+ely+battery-mod,1-1h,highs,1.12.0,2025.0,ok,optimal,42.75250789301936,531.36,31715824201.142395,4.64992990495576e-15,5.316239839012118e-05,41.962942123413086,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 09:34:19.745790,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely+battery-mod-1-1h,highs-1.12.0,pypsa-power+ely+battery-mod +pypsa-power+ely+battery-mod,1-1h,scip,10.0.0,2025.0,ok,optimal,192.19264764600663,1187.756,31715824201.1424,0.0,5.3165224781101776e-05,191.346,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 09:35:03.878576,c4-standard-2,europe-west9-c,48cfc10,pypsa-power+ely+battery-mod-1-1h,scip-10.0.0,pypsa-power+ely+battery-mod +times-etimeseu-france-elec+heat-multi_stage,1-64ts,gurobi,13.0.0,2025.0,ok,optimal,3.9956617209827527,343.876,423183.4347354724,,,3.498706102371216,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 09:38:17.950552,c4-standard-2,europe-west9-c,48cfc10,times-etimeseu-france-elec+heat-multi_stage-1-64ts,gurobi-13.0.0,times-etimeseu-france-elec+heat-multi_stage +times-etimeseu-france-elec+heat-multi_stage,1-64ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,29.08599032901111,275.824,423183.43306,,,29.08599032901111,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 09:38:23.149085,c4-standard-2,europe-west9-c,48cfc10,times-etimeseu-france-elec+heat-multi_stage-1-64ts,highs-hipo-1.12.0-hipo,times-etimeseu-france-elec+heat-multi_stage +times-etimeseu-france-elec+heat-multi_stage,1-64ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,14.25726865499746,164.172,423183.43474,,,14.25726865499746,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 09:38:52.973415,c4-standard-2,europe-west9-c,48cfc10,times-etimeseu-france-elec+heat-multi_stage-1-64ts,highs-ipx-1.12.0-hipo,times-etimeseu-france-elec+heat-multi_stage +times-etimeseu-france-elec+heat-multi_stage,1-64ts,highs,1.12.0,2025.0,ok,optimal,20.28728218798642,394.82,423183.4347354729,,,19.747602939605716,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 09:39:07.957594,c4-standard-2,europe-west9-c,48cfc10,times-etimeseu-france-elec+heat-multi_stage-1-64ts,highs-1.12.0,times-etimeseu-france-elec+heat-multi_stage +times-etimeseu-france-elec+heat-multi_stage,1-64ts,scip,10.0.0,2025.0,ok,optimal,85.28868966398295,1977.124,423183.43473547255,,,84.687988,3600.0,benchmark-instance-s-m-02,20251216-rerun-2,2025-12-18 09:39:29.386622,c4-standard-2,europe-west9-c,48cfc10,times-etimeseu-france-elec+heat-multi_stage-1-64ts,scip-10.0.0,times-etimeseu-france-elec+heat-multi_stage +genx-9_three_zones_w_retrofit,3-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,297.676,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-16 18:21:18.396923,c4-standard-2,europe-west9-b,48cfc10,genx-9_three_zones_w_retrofit-3-1h,glpk-5.0,genx-9_three_zones_w_retrofit +DCOPF-Carolinas_uc_2M,997-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,183.444,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-16 19:24:55.134085,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_uc_2M-997-1h,glpk-5.0,DCOPF-Carolinas_uc_2M +OEMOF-v3-invest-optimize-only-storage-with-fossil-share,1-8760ts,glpk,5.0,2020.0,ER,,,150.368,,,,,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-16 20:28:31.351515,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v3-invest-optimize-only-storage-with-fossil-share-1-8760ts,glpk-5.0,OEMOF-v3-invest-optimize-only-storage-with-fossil-share +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,131.448,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-16 20:28:46.890156,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314 +genx-2_three_zones_w_electrolyzer,3-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,206.552,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-16 21:32:24.783089,c4-standard-2,europe-west9-b,48cfc10,genx-2_three_zones_w_electrolyzer-3-1h,glpk-5.0,genx-2_three_zones_w_electrolyzer +pypsa-power+ely-co2-mod,1-1h,glpk,5.0,2020.0,ok,optimal,139.78598729400073,231.936,84667528380.0,,,,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-16 22:35:56.289376,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-mod-1-1h,glpk-5.0,pypsa-power+ely-co2-mod +DCOPF-Carolinas_6M,997-1h,glpk,5.0,2020.0,ER,,,207.232,,,,,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-16 22:38:16.564915,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_6M-997-1h,glpk-5.0,DCOPF-Carolinas_6M +genx-9_three_zones_w_retrofit,3-1h,gurobi,10.0.0,2022.0,TO,Timeout,3600.0,1852.5,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-16 22:48:22.728184,c4-standard-2,europe-west9-b,48cfc10,genx-9_three_zones_w_retrofit-3-1h,gurobi-10.0.0,genx-9_three_zones_w_retrofit +genx-9_three_zones_w_retrofit,3-1h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,5913.18,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-16 23:51:52.373865,c4-standard-2,europe-west9-b,48cfc10,genx-9_three_zones_w_retrofit-3-1h,highs-1.5.0.dev0,genx-9_three_zones_w_retrofit +genx-9_three_zones_w_retrofit,3-1h,scip,8.0.3,2022.0,TO,Timeout,3600.0,3100.456,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 00:55:25.120299,c4-standard-2,europe-west9-b,48cfc10,genx-9_three_zones_w_retrofit-3-1h,scip-8.0.3,genx-9_three_zones_w_retrofit +DCOPF-Carolinas_uc_2M,997-1h,gurobi,10.0.0,2022.0,ok,optimal,184.23848293099945,762.044,4463831.29462382,,,182.93292593955996,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 01:58:57.293176,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_uc_2M-997-1h,gurobi-10.0.0,DCOPF-Carolinas_uc_2M +DCOPF-Carolinas_uc_2M,997-1h,highs,1.5.0.dev0,2022.0,ok,optimal,3525.2442276420006,3511.668,4463709.790358684,,,3523.8259360790253,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 02:02:03.322595,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_uc_2M-997-1h,highs-1.5.0.dev0,DCOPF-Carolinas_uc_2M +DCOPF-Carolinas_uc_2M,997-1h,scip,8.0.3,2022.0,ok,optimal,1690.366356765997,2167.36,4463591.522110939,,,1688.913651,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 03:04:19.327078,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_uc_2M-997-1h,scip-8.0.3,DCOPF-Carolinas_uc_2M +OEMOF-v3-invest-optimize-only-storage-with-fossil-share,1-8760ts,gurobi,10.0.0,2022.0,ok,optimal,6.998566276997735,332.876,31926875.24757205,,,2.964545965194702,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 03:32:31.727993,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v3-invest-optimize-only-storage-with-fossil-share-1-8760ts,gurobi-10.0.0,OEMOF-v3-invest-optimize-only-storage-with-fossil-share +OEMOF-v3-invest-optimize-only-storage-with-fossil-share,1-8760ts,highs,1.5.0.dev0,2022.0,ok,optimal,9.893928140998469,357.452,31926875.2475728,,,9.350659608840942,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 03:32:39.768556,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v3-invest-optimize-only-storage-with-fossil-share-1-8760ts,highs-1.5.0.dev0,OEMOF-v3-invest-optimize-only-storage-with-fossil-share +OEMOF-v3-invest-optimize-only-storage-with-fossil-share,1-8760ts,scip,8.0.3,2022.0,ER,,,669.216,,,,,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 03:32:50.694632,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v3-invest-optimize-only-storage-with-fossil-share-1-8760ts,scip-8.0.3,OEMOF-v3-invest-optimize-only-storage-with-fossil-share +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314,73-1h,gurobi,10.0.0,2022.0,ok,optimal,72.64847397499398,274.092,796622.7696233211,,,72.55532789230347,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 03:34:08.846345,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314,73-1h,highs,1.5.0.dev0,2022.0,ok,optimal,1437.052391887999,940.284,796622.7803324993,,,1436.92515873909,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 03:35:22.200118,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314,73-1h,scip,8.0.3,2022.0,ok,optimal,2064.428272304001,1267.996,796622.7803334442,,,2064.291321,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 03:59:19.965288,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314 +genx-2_three_zones_w_electrolyzer,3-1h,gurobi,10.0.0,2022.0,ok,optimal,162.82919910599594,688.36,19882.312766392424,,,161.7920229434967,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 04:37:22.165417,c4-standard-2,europe-west9-b,48cfc10,genx-2_three_zones_w_electrolyzer-3-1h,gurobi-10.0.0,genx-2_three_zones_w_electrolyzer +genx-2_three_zones_w_electrolyzer,3-1h,highs,1.5.0.dev0,2022.0,ok,optimal,2020.945545456998,3397.68,19883.16720255582,,,2019.750935792923,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 04:40:06.619564,c4-standard-2,europe-west9-b,48cfc10,genx-2_three_zones_w_electrolyzer-3-1h,highs-1.5.0.dev0,genx-2_three_zones_w_electrolyzer +genx-2_three_zones_w_electrolyzer,3-1h,scip,8.0.3,2022.0,ok,optimal,860.5459594830027,1744.344,19883.444101432,,,859.126539,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 05:13:49.294081,c4-standard-2,europe-west9-b,48cfc10,genx-2_three_zones_w_electrolyzer-3-1h,scip-8.0.3,genx-2_three_zones_w_electrolyzer +pypsa-power+ely-co2-mod,1-1h,gurobi,10.0.0,2022.0,ok,optimal,15.572791781996784,381.42,84668286067.13158,,,14.642575979232788,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 05:28:11.896715,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-mod-1-1h,gurobi-10.0.0,pypsa-power+ely-co2-mod +pypsa-power+ely-co2-mod,1-1h,highs,1.5.0.dev0,2022.0,ok,optimal,54.758129535999615,420.048,84668286067.13148,,,54.0820894241333,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 05:28:28.645937,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-mod-1-1h,highs-1.5.0.dev0,pypsa-power+ely-co2-mod +pypsa-power+ely-co2-mod,1-1h,scip,8.0.3,2022.0,ok,optimal,91.18536139099888,822.56,84668286067.13148,,,90.478416,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 05:29:24.573855,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-mod-1-1h,scip-8.0.3,pypsa-power+ely-co2-mod +DCOPF-Carolinas_6M,997-1h,gurobi,10.0.0,2022.0,ok,optimal,6.414908222999657,592.488,9293706.649787052,,,4.94595193862915,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 05:30:57.166217,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_6M-997-1h,gurobi-10.0.0,DCOPF-Carolinas_6M +DCOPF-Carolinas_6M,997-1h,highs,1.5.0.dev0,2022.0,ok,optimal,12.469230205999338,634.36,9293706.649785886,,,10.995418787002563,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 05:31:05.342446,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_6M-997-1h,highs-1.5.0.dev0,DCOPF-Carolinas_6M +DCOPF-Carolinas_6M,997-1h,scip,8.0.3,2022.0,ok,optimal,99.88859445900016,1260.396,9293706.6498003,,,98.475267,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 05:31:19.779191,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_6M-997-1h,scip-8.0.3,DCOPF-Carolinas_6M +genx-9_three_zones_w_retrofit,3-1h,gurobi,11.0.0,2023.0,TO,Timeout,3600.0,2183.832,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 05:36:30.159036,c4-standard-2,europe-west9-b,48cfc10,genx-9_three_zones_w_retrofit-3-1h,gurobi-11.0.0,genx-9_three_zones_w_retrofit +genx-9_three_zones_w_retrofit,3-1h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,5948.132,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 06:40:06.169379,c4-standard-2,europe-west9-b,48cfc10,genx-9_three_zones_w_retrofit-3-1h,highs-1.6.0.dev0,genx-9_three_zones_w_retrofit +genx-9_three_zones_w_retrofit,3-1h,scip,8.1.0,2023.0,TO,Timeout,3600.0,3108.096,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 07:43:34.384577,c4-standard-2,europe-west9-b,48cfc10,genx-9_three_zones_w_retrofit-3-1h,scip-8.1.0,genx-9_three_zones_w_retrofit +genx-9_three_zones_w_retrofit,3-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,328.856,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 08:47:04.438193,c4-standard-2,europe-west9-b,48cfc10,genx-9_three_zones_w_retrofit-3-1h,cbc-2.10.11,genx-9_three_zones_w_retrofit +DCOPF-Carolinas_uc_2M,997-1h,gurobi,11.0.0,2023.0,ok,optimal,148.66638551500364,795.62,4463728.554647207,,,147.25257897377014,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 09:50:34.039625,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_uc_2M-997-1h,gurobi-11.0.0,DCOPF-Carolinas_uc_2M +DCOPF-Carolinas_uc_2M,997-1h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,4211.952,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 09:53:04.518528,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_uc_2M-997-1h,highs-1.6.0.dev0,DCOPF-Carolinas_uc_2M +DCOPF-Carolinas_uc_2M,997-1h,scip,8.1.0,2023.0,ok,optimal,1747.9352829659983,2253.536,4463591.522110939,,,1746.600561,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 10:56:35.809537,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_uc_2M-997-1h,scip-8.1.0,DCOPF-Carolinas_uc_2M +DCOPF-Carolinas_uc_2M,997-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,214.072,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 11:25:45.957866,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_uc_2M-997-1h,cbc-2.10.11,DCOPF-Carolinas_uc_2M +OEMOF-v3-invest-optimize-only-storage-with-fossil-share,1-8760ts,gurobi,11.0.0,2023.0,ok,optimal,6.572313237003982,350.516,31926875.24757205,,,5.911365032196045,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 12:29:27.431276,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v3-invest-optimize-only-storage-with-fossil-share-1-8760ts,gurobi-11.0.0,OEMOF-v3-invest-optimize-only-storage-with-fossil-share +OEMOF-v3-invest-optimize-only-storage-with-fossil-share,1-8760ts,highs,1.6.0.dev0,2023.0,ok,optimal,9.838755083997968,384.76,31926875.2475728,,,9.270106554031372,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 12:29:35.190371,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v3-invest-optimize-only-storage-with-fossil-share-1-8760ts,highs-1.6.0.dev0,OEMOF-v3-invest-optimize-only-storage-with-fossil-share +OEMOF-v3-invest-optimize-only-storage-with-fossil-share,1-8760ts,scip,8.1.0,2023.0,ER,,,679.584,,,,,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 12:29:46.300792,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v3-invest-optimize-only-storage-with-fossil-share-1-8760ts,scip-8.1.0,OEMOF-v3-invest-optimize-only-storage-with-fossil-share +OEMOF-v3-invest-optimize-only-storage-with-fossil-share,1-8760ts,cbc,2.10.11,2023.0,ok,optimal,5.158040223002899,256.384,31926875.24757211,,,,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 12:31:05.389262,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v3-invest-optimize-only-storage-with-fossil-share-1-8760ts,cbc-2.10.11,OEMOF-v3-invest-optimize-only-storage-with-fossil-share +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314,73-1h,gurobi,11.0.0,2023.0,ok,optimal,64.95029849100683,256.076,796622.780316971,,,64.87149715423584,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 12:31:11.710532,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314,73-1h,highs,1.6.0.dev0,2023.0,ok,optimal,1415.8749581310112,970.044,796622.7803324993,,,1415.7934212684631,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 12:32:17.463433,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314,73-1h,scip,8.1.0,2023.0,ok,optimal,2066.2632398620044,1277.336,796622.7803334442,,,2066.148553,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 12:55:54.129899,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314,73-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,162.572,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 13:34:00.885287,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314 +genx-2_three_zones_w_electrolyzer,3-1h,gurobi,11.0.0,2023.0,ok,optimal,159.25410359598754,677.708,19882.401841032814,,,158.3776409626007,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 14:37:34.371183,c4-standard-2,europe-west9-b,48cfc10,genx-2_three_zones_w_electrolyzer-3-1h,gurobi-11.0.0,genx-2_three_zones_w_electrolyzer +genx-2_three_zones_w_electrolyzer,3-1h,highs,1.6.0.dev0,2023.0,ok,optimal,1949.0665646639973,3473.444,19883.16720255582,,,1948.255652666092,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 14:40:14.996657,c4-standard-2,europe-west9-b,48cfc10,genx-2_three_zones_w_electrolyzer-3-1h,highs-1.6.0.dev0,genx-2_three_zones_w_electrolyzer +genx-2_three_zones_w_electrolyzer,3-1h,scip,8.1.0,2023.0,ok,optimal,861.0090772209951,1752.536,19883.444101432,,,859.80844,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 15:12:45.381330,c4-standard-2,europe-west9-b,48cfc10,genx-2_three_zones_w_electrolyzer-3-1h,scip-8.1.0,genx-2_three_zones_w_electrolyzer +genx-2_three_zones_w_electrolyzer,3-1h,cbc,2.10.11,2023.0,ok,optimal,946.4580657000042,1214.348,19883.30553765,,,945.55,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 15:27:08.188555,c4-standard-2,europe-west9-b,48cfc10,genx-2_three_zones_w_electrolyzer-3-1h,cbc-2.10.11,genx-2_three_zones_w_electrolyzer +pypsa-power+ely-co2-mod,1-1h,gurobi,11.0.0,2023.0,ok,optimal,13.626784847001543,383.36,84668286067.13159,,,13.054906845092772,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 15:46:34.059879,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-mod-1-1h,gurobi-11.0.0,pypsa-power+ely-co2-mod +pypsa-power+ely-co2-mod,1-1h,highs,1.6.0.dev0,2023.0,ok,optimal,54.98467563001032,381.14,84668286067.13148,,,54.40937185287476,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 15:46:48.905580,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-mod-1-1h,highs-1.6.0.dev0,pypsa-power+ely-co2-mod +pypsa-power+ely-co2-mod,1-1h,scip,8.1.0,2023.0,ok,optimal,91.09395524399588,824.336,84668286067.13148,,,90.49547,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 15:47:45.086077,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-mod-1-1h,scip-8.1.0,pypsa-power+ely-co2-mod +pypsa-power+ely-co2-mod,1-1h,cbc,2.10.11,2023.0,ok,optimal,46.06935445399722,414.356,84668259518.29695,,,45.49,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 15:49:17.618684,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-mod-1-1h,cbc-2.10.11,pypsa-power+ely-co2-mod +DCOPF-Carolinas_6M,997-1h,gurobi,11.0.0,2023.0,ok,optimal,6.118034805011121,613.256,9293706.649785869,,,4.8771679401397705,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 15:50:04.879231,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_6M-997-1h,gurobi-11.0.0,DCOPF-Carolinas_6M +DCOPF-Carolinas_6M,997-1h,highs,1.6.0.dev0,2023.0,ok,optimal,12.111687175987754,661.008,9293706.649785886,,,10.672200202941896,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 15:50:12.834934,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_6M-997-1h,highs-1.6.0.dev0,DCOPF-Carolinas_6M +DCOPF-Carolinas_6M,997-1h,scip,8.1.0,2023.0,ok,optimal,99.96487699600402,1283.36,9293706.6498003,,,98.731453,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 15:50:27.056421,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_6M-997-1h,scip-8.1.0,DCOPF-Carolinas_6M +DCOPF-Carolinas_6M,997-1h,cbc,2.10.11,2023.0,ok,optimal,23.58307169000909,394.832,9293706.64978586,,,,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 15:52:09.129148,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_6M-997-1h,cbc-2.10.11,DCOPF-Carolinas_6M +genx-9_three_zones_w_retrofit,3-1h,gurobi,12.0.0,2024.0,TO,Timeout,3600.0,1889.536,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 15:53:12.095191,c4-standard-2,europe-west9-b,48cfc10,genx-9_three_zones_w_retrofit-3-1h,gurobi-12.0.0,genx-9_three_zones_w_retrofit +genx-9_three_zones_w_retrofit,3-1h,highs,1.9.0,2024.0,TO,Timeout,3600.0,4232.908,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 16:56:50.021277,c4-standard-2,europe-west9-b,48cfc10,genx-9_three_zones_w_retrofit-3-1h,highs-1.9.0,genx-9_three_zones_w_retrofit +genx-9_three_zones_w_retrofit,3-1h,scip,9.2.0,2024.0,TO,Timeout,3600.0,3087.16,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 18:00:18.970076,c4-standard-2,europe-west9-b,48cfc10,genx-9_three_zones_w_retrofit-3-1h,scip-9.2.0,genx-9_three_zones_w_retrofit +genx-9_three_zones_w_retrofit,3-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,311.7,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 19:03:50.580239,c4-standard-2,europe-west9-b,48cfc10,genx-9_three_zones_w_retrofit-3-1h,cbc-2.10.12,genx-9_three_zones_w_retrofit +DCOPF-Carolinas_uc_2M,997-1h,gurobi,12.0.0,2024.0,ok,optimal,114.50257539800076,731.44,4463807.772626111,0.0,9.928261958133235e-05,113.37179017066956,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 20:07:26.953583,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_uc_2M-997-1h,gurobi-12.0.0,DCOPF-Carolinas_uc_2M +DCOPF-Carolinas_uc_2M,997-1h,highs,1.9.0,2024.0,TO,Timeout,3600.0,2408.08,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 20:09:23.300314,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_uc_2M-997-1h,highs-1.9.0,DCOPF-Carolinas_uc_2M +DCOPF-Carolinas_uc_2M,997-1h,scip,9.2.0,2024.0,ok,optimal,1749.1609647970035,2129.224,4463591.522110939,1.8184009853428048e-11,9.868322353733077e-05,1747.842311,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 21:12:55.680034,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_uc_2M-997-1h,scip-9.2.0,DCOPF-Carolinas_uc_2M +DCOPF-Carolinas_uc_2M,997-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,197.14,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 21:42:07.017401,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_uc_2M-997-1h,cbc-2.10.12,DCOPF-Carolinas_uc_2M +OEMOF-v3-invest-optimize-only-storage-with-fossil-share,1-8760ts,gurobi,12.0.0,2024.0,ok,optimal,6.1255438690132,324.9,31926875.247572083,,,5.522173881530762,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 22:45:37.091564,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v3-invest-optimize-only-storage-with-fossil-share-1-8760ts,gurobi-12.0.0,OEMOF-v3-invest-optimize-only-storage-with-fossil-share +OEMOF-v3-invest-optimize-only-storage-with-fossil-share,1-8760ts,highs,1.9.0,2024.0,ok,optimal,9.93315168999834,356.392,31926875.2475728,,,9.36038899421692,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 22:45:44.405876,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v3-invest-optimize-only-storage-with-fossil-share-1-8760ts,highs-1.9.0,OEMOF-v3-invest-optimize-only-storage-with-fossil-share +OEMOF-v3-invest-optimize-only-storage-with-fossil-share,1-8760ts,scip,9.2.0,2024.0,ER,,,664.132,,,,,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 22:45:55.533452,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v3-invest-optimize-only-storage-with-fossil-share-1-8760ts,scip-9.2.0,OEMOF-v3-invest-optimize-only-storage-with-fossil-share +OEMOF-v3-invest-optimize-only-storage-with-fossil-share,1-8760ts,cbc,2.10.12,2024.0,ok,optimal,5.589153270993847,274.1,31926875.24757211,,,,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 22:47:13.732701,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v3-invest-optimize-only-storage-with-fossil-share-1-8760ts,cbc-2.10.12,OEMOF-v3-invest-optimize-only-storage-with-fossil-share +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314,73-1h,gurobi,12.0.0,2024.0,ok,optimal,77.59370279600262,263.24,796622.7779113317,2.940995249962298e-07,3.3320180353231406e-05,77.51308417320251,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 22:47:20.513539,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314,73-1h,highs,1.9.0,2024.0,ok,optimal,1058.500260973,963.672,796622.7803329715,2.3190095343684284e-15,9.9249049599021e-05,1058.3609294891355,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 22:48:38.775202,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314,73-1h,scip,9.2.0,2024.0,ok,optimal,2043.8500138289965,1262.96,796622.7803334442,1.887379141862766e-15,0.0,2043.733434,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 23:06:17.925487,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314,73-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,145.744,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-17 23:40:22.478677,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314 +genx-2_three_zones_w_electrolyzer,3-1h,gurobi,12.0.0,2024.0,ok,optimal,181.46576693298996,673.164,19882.401440492515,0.0,4.7567895334668384e-05,180.5879509449005,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 00:43:55.338715,c4-standard-2,europe-west9-b,48cfc10,genx-2_three_zones_w_electrolyzer-3-1h,gurobi-12.0.0,genx-2_three_zones_w_electrolyzer +genx-2_three_zones_w_electrolyzer,3-1h,highs,1.9.0,2024.0,ok,optimal,2127.566374482005,3453.816,19883.17100942405,2.131628207280301e-14,6.574650866744515e-05,2126.221038341522,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 00:46:58.636049,c4-standard-2,europe-west9-b,48cfc10,genx-2_three_zones_w_electrolyzer-3-1h,highs-1.9.0,genx-2_three_zones_w_electrolyzer +genx-2_three_zones_w_electrolyzer,3-1h,scip,9.2.0,2024.0,ok,optimal,857.4507736530068,1722.264,19883.444101432,0.0,8.557634056617865e-05,856.242382,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 01:22:28.040567,c4-standard-2,europe-west9-b,48cfc10,genx-2_three_zones_w_electrolyzer-3-1h,scip-9.2.0,genx-2_three_zones_w_electrolyzer +genx-2_three_zones_w_electrolyzer,3-1h,cbc,2.10.12,2024.0,ok,optimal,928.0579994660076,1234.544,19883.30553765,0.0,0.0,925.86,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 01:36:47.787512,c4-standard-2,europe-west9-b,48cfc10,genx-2_three_zones_w_electrolyzer-3-1h,cbc-2.10.12,genx-2_three_zones_w_electrolyzer +pypsa-power+ely-co2-mod,1-1h,gurobi,12.0.0,2024.0,ok,optimal,13.65695666699321,372.212,84668286067.13158,0.0,8.969696440117464e-06,12.78540015220642,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 01:55:47.807932,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-mod-1-1h,gurobi-12.0.0,pypsa-power+ely-co2-mod +pypsa-power+ely-co2-mod,1-1h,highs,1.9.0,2024.0,ok,optimal,55.0588916370034,422.708,84668286067.13148,0.0,8.969696433809829e-06,54.35370326042175,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 01:56:02.591638,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-mod-1-1h,highs-1.9.0,pypsa-power+ely-co2-mod +pypsa-power+ely-co2-mod,1-1h,scip,9.2.0,2024.0,ok,optimal,90.13246385299136,810.264,84668286067.13148,0.0,8.96977688890428e-06,89.555735,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 01:56:58.795399,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-mod-1-1h,scip-9.2.0,pypsa-power+ely-co2-mod +pypsa-power+ely-co2-mod,1-1h,cbc,2.10.12,2024.0,ok,optimal,45.82506196398754,413.344,84668259518.29695,0.0,0.0,44.64,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 01:58:30.260200,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-mod-1-1h,cbc-2.10.12,pypsa-power+ely-co2-mod +DCOPF-Carolinas_6M,997-1h,gurobi,12.0.0,2024.0,ok,optimal,6.139032399994903,570.644,9293706.649785845,,,4.974398136138916,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 01:59:17.199218,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_6M-997-1h,gurobi-12.0.0,DCOPF-Carolinas_6M +DCOPF-Carolinas_6M,997-1h,highs,1.9.0,2024.0,ok,optimal,10.849736595992,617.272,9293706.649785886,,,9.3439302444458,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 01:59:25.432599,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_6M-997-1h,highs-1.9.0,DCOPF-Carolinas_6M +DCOPF-Carolinas_6M,997-1h,scip,9.2.0,2024.0,ok,optimal,97.66886348099796,1250.028,9293706.6498003,,,96.478538,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 01:59:38.490538,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_6M-997-1h,scip-9.2.0,DCOPF-Carolinas_6M +DCOPF-Carolinas_6M,997-1h,cbc,2.10.12,2024.0,ok,optimal,24.468878694999148,447.908,9293706.64978586,,,,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 02:01:18.522152,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_6M-997-1h,cbc-2.10.12,DCOPF-Carolinas_6M +genx-9_three_zones_w_retrofit,3-1h,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,2106.964,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 02:02:17.684828,c4-standard-2,europe-west9-b,48cfc10,genx-9_three_zones_w_retrofit-3-1h,gurobi-13.0.0,genx-9_three_zones_w_retrofit +genx-9_three_zones_w_retrofit,3-1h,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,3600.0,162.92,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 03:05:48.829911,c4-standard-2,europe-west9-b,48cfc10,genx-9_three_zones_w_retrofit-3-1h,highs-hipo-1.12.0-hipo,genx-9_three_zones_w_retrofit +genx-9_three_zones_w_retrofit,3-1h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,3600.0,163.248,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 04:09:19.404415,c4-standard-2,europe-west9-b,48cfc10,genx-9_three_zones_w_retrofit-3-1h,highs-ipx-1.12.0-hipo,genx-9_three_zones_w_retrofit +genx-9_three_zones_w_retrofit,3-1h,highs,1.12.0,2025.0,TO,Timeout,3600.0,4777.084,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 05:12:48.677721,c4-standard-2,europe-west9-b,48cfc10,genx-9_three_zones_w_retrofit-3-1h,highs-1.12.0,genx-9_three_zones_w_retrofit +genx-9_three_zones_w_retrofit,3-1h,scip,10.0.0,2025.0,TO,Timeout,3600.0,3116.404,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 06:16:16.463381,c4-standard-2,europe-west9-b,48cfc10,genx-9_three_zones_w_retrofit-3-1h,scip-10.0.0,genx-9_three_zones_w_retrofit +DCOPF-Carolinas_uc_2M,997-1h,gurobi,13.0.0,2025.0,ok,optimal,106.03027210899744,749.612,4463816.604879668,0.0,9.592942374189506e-05,104.90209913253784,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 07:19:45.996410,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_uc_2M-997-1h,gurobi-13.0.0,DCOPF-Carolinas_uc_2M +DCOPF-Carolinas_uc_2M,997-1h,highs,1.12.0,2025.0,TO,Timeout,3600.0,3310.176,,,,3600.0,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 07:21:33.969073,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_uc_2M-997-1h,highs-1.12.0,DCOPF-Carolinas_uc_2M +DCOPF-Carolinas_uc_2M,997-1h,scip,10.0.0,2025.0,ok,optimal,1710.4819421439895,2198.14,4463591.522110939,1.8184009853428048e-11,9.868322353733077e-05,1709.137802,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 08:25:04.006745,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_uc_2M-997-1h,scip-10.0.0,DCOPF-Carolinas_uc_2M +OEMOF-v3-invest-optimize-only-storage-with-fossil-share,1-8760ts,gurobi,13.0.0,2025.0,ok,optimal,6.12039877998177,358.2,31926875.247572083,,,5.486202001571655,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 08:53:36.796515,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v3-invest-optimize-only-storage-with-fossil-share-1-8760ts,gurobi-13.0.0,OEMOF-v3-invest-optimize-only-storage-with-fossil-share +OEMOF-v3-invest-optimize-only-storage-with-fossil-share,1-8760ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,20.99129403400002,188.26,31926875.248,,,20.99129403400002,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 08:53:44.109024,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v3-invest-optimize-only-storage-with-fossil-share-1-8760ts,highs-hipo-1.12.0-hipo,OEMOF-v3-invest-optimize-only-storage-with-fossil-share +OEMOF-v3-invest-optimize-only-storage-with-fossil-share,1-8760ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,12.353909888013732,210.716,31926875.248,,,12.353909888013732,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 08:54:05.829968,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v3-invest-optimize-only-storage-with-fossil-share-1-8760ts,highs-ipx-1.12.0-hipo,OEMOF-v3-invest-optimize-only-storage-with-fossil-share +OEMOF-v3-invest-optimize-only-storage-with-fossil-share,1-8760ts,highs,1.12.0,2025.0,ok,optimal,4.4456376529997215,402.784,31926875.24757298,,,3.8662633895874015,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 08:54:18.910158,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v3-invest-optimize-only-storage-with-fossil-share-1-8760ts,highs-1.12.0,OEMOF-v3-invest-optimize-only-storage-with-fossil-share +OEMOF-v3-invest-optimize-only-storage-with-fossil-share,1-8760ts,scip,10.0.0,2025.0,ER,,,692.26,,,,,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 08:54:24.580949,c4-standard-2,europe-west9-b,48cfc10,OEMOF-v3-invest-optimize-only-storage-with-fossil-share-1-8760ts,scip-10.0.0,OEMOF-v3-invest-optimize-only-storage-with-fossil-share +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314,73-1h,gurobi,13.0.0,2025.0,ok,optimal,55.00032632300281,264.644,796622.7803341962,0.0,9.145967163906768e-05,54.92171502113342,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 08:55:42.971139,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314,73-1h,highs,1.12.0,2025.0,ok,optimal,1366.5779600289825,970.568,796622.7803330648,9.01723140600552e-13,9.89913768657694e-05,1366.4881649017334,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 08:56:38.807863,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314,73-1h,scip,10.0.0,2025.0,ok,optimal,2065.845160724013,1288.688,796622.7803334442,1.887379141862766e-15,0.0,2065.725024,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 09:19:26.203186,c4-standard-2,europe-west9-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon24_Day314 +genx-2_three_zones_w_electrolyzer,3-1h,gurobi,13.0.0,2025.0,ok,optimal,179.37585803499678,693.94,19882.460341264094,0.0,5.053020325652828e-05,178.50794386863708,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 09:57:23.219569,c4-standard-2,europe-west9-b,48cfc10,genx-2_three_zones_w_electrolyzer-3-1h,gurobi-13.0.0,genx-2_three_zones_w_electrolyzer +genx-2_three_zones_w_electrolyzer,3-1h,highs,1.12.0,2025.0,ok,optimal,1396.9992810050026,2154.092,19883.12632802395,1.0658141036401504e-14,6.318802807141236e-05,1396.1053020954132,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 10:00:24.220922,c4-standard-2,europe-west9-b,48cfc10,genx-2_three_zones_w_electrolyzer-3-1h,highs-1.12.0,genx-2_three_zones_w_electrolyzer +genx-2_three_zones_w_electrolyzer,3-1h,scip,10.0.0,2025.0,ok,optimal,855.8372629350051,1746.44,19883.444101432,0.0,8.557634056617865e-05,854.57976,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 10:23:42.777300,c4-standard-2,europe-west9-b,48cfc10,genx-2_three_zones_w_electrolyzer-3-1h,scip-10.0.0,genx-2_three_zones_w_electrolyzer +pypsa-power+ely-co2-mod,1-1h,gurobi,13.0.0,2025.0,ok,optimal,13.17527806200087,399.04,84668286067.13158,0.0,8.969696440117464e-06,12.63516116142273,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 10:38:00.725882,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-mod-1-1h,gurobi-13.0.0,pypsa-power+ely-co2-mod +pypsa-power+ely-co2-mod,1-1h,highs,1.12.0,2025.0,ok,optimal,60.31114981402061,435.776,84668286067.13148,0.0,8.96969643362961e-06,59.73960161209106,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 10:38:15.140229,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-mod-1-1h,highs-1.12.0,pypsa-power+ely-co2-mod +pypsa-power+ely-co2-mod,1-1h,scip,10.0.0,2025.0,ok,optimal,89.48520296899369,836.896,84668286067.13148,0.0,8.96977688890428e-06,88.888521,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 10:39:16.642718,c4-standard-2,europe-west9-b,48cfc10,pypsa-power+ely-co2-mod-1-1h,scip-10.0.0,pypsa-power+ely-co2-mod +DCOPF-Carolinas_6M,997-1h,gurobi,13.0.0,2025.0,ok,optimal,5.919634947000304,620.888,9293706.649785869,,,4.7918219566345215,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 10:40:47.566076,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_6M-997-1h,gurobi-13.0.0,DCOPF-Carolinas_6M +DCOPF-Carolinas_6M,997-1h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,31.57048948502052,385.768,9293706.6498,,,31.57048948502052,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 10:40:55.309784,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_6M-997-1h,highs-hipo-1.12.0-hipo,DCOPF-Carolinas_6M +DCOPF-Carolinas_6M,997-1h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,12.155984150012957,279.024,9293706.6961,,,12.155984150012957,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 10:41:27.609696,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_6M-997-1h,highs-ipx-1.12.0-hipo,DCOPF-Carolinas_6M +DCOPF-Carolinas_6M,997-1h,highs,1.12.0,2025.0,ok,optimal,10.844959542999275,672.512,9293706.64978588,,,9.384034633636476,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 10:41:40.498975,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_6M-997-1h,highs-1.12.0,DCOPF-Carolinas_6M +DCOPF-Carolinas_6M,997-1h,scip,10.0.0,2025.0,ok,optimal,97.68941167899176,1295.208,9293706.6498003,,,96.463681,3600.0,benchmark-instance-s-m-01,20251216-rerun-2,2025-12-18 10:41:53.342131,c4-standard-2,europe-west9-b,48cfc10,DCOPF-Carolinas_6M-997-1h,scip-10.0.0,DCOPF-Carolinas_6M +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,141.58,,,,3600.0,3600.0,benchmark-instance-s-m-06,20251216-rerun-2,2025-12-16 18:21:27.523847,c4-standard-2,europe-west1-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314,73-1h,gurobi,10.0.0,2022.0,TO,Timeout,3600.0,611.368,,,,3600.0,3600.0,benchmark-instance-s-m-06,20251216-rerun-2,2025-12-16 22:55:49.846404,c4-standard-2,europe-west1-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314,73-1h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1322.384,,,,3600.0,3600.0,benchmark-instance-s-m-06,20251216-rerun-2,2025-12-16 23:59:26.759530,c4-standard-2,europe-west1-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314,73-1h,scip,8.0.3,2022.0,TO,Timeout,3600.0,1782.876,,,,3600.0,3600.0,benchmark-instance-s-m-06,20251216-rerun-2,2025-12-17 01:03:13.444078,c4-standard-2,europe-west1-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314,73-1h,gurobi,11.0.0,2023.0,TO,Timeout,3600.0,664.432,,,,3600.0,3600.0,benchmark-instance-s-m-06,20251216-rerun-2,2025-12-17 05:44:58.920765,c4-standard-2,europe-west1-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314,73-1h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,1239.784,,,,3600.0,3600.0,benchmark-instance-s-m-06,20251216-rerun-2,2025-12-17 06:48:17.751051,c4-standard-2,europe-west1-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314,73-1h,scip,8.1.0,2023.0,TO,Timeout,3600.0,1777.652,,,,3600.0,3600.0,benchmark-instance-s-m-06,20251216-rerun-2,2025-12-17 07:51:41.404059,c4-standard-2,europe-west1-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314,73-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,173.056,,,,3600.0,3600.0,benchmark-instance-s-m-06,20251216-rerun-2,2025-12-17 08:55:13.440414,c4-standard-2,europe-west1-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314,73-1h,gurobi,12.0.0,2024.0,TO,Timeout,3600.0,594.9,,,,3600.0,3600.0,benchmark-instance-s-m-06,20251216-rerun-2,2025-12-17 16:06:13.198314,c4-standard-2,europe-west1-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314,73-1h,highs,1.9.0,2024.0,TO,Timeout,3600.0,1241.776,,,,3600.0,3600.0,benchmark-instance-s-m-06,20251216-rerun-2,2025-12-17 17:09:34.371878,c4-standard-2,europe-west1-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314,73-1h,scip,9.2.0,2024.0,TO,Timeout,3600.0,1757.088,,,,3600.0,3600.0,benchmark-instance-s-m-06,20251216-rerun-2,2025-12-17 18:13:26.742821,c4-standard-2,europe-west1-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314,73-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,155.544,,,,3600.0,3600.0,benchmark-instance-s-m-06,20251216-rerun-2,2025-12-17 19:16:53.267065,c4-standard-2,europe-west1-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314,73-1h,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,654.22,,,,3600.0,3600.0,benchmark-instance-s-m-06,20251216-rerun-2,2025-12-18 02:30:19.453598,c4-standard-2,europe-west1-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314,73-1h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1215.912,,,,3600.0,3600.0,benchmark-instance-s-m-06,20251216-rerun-2,2025-12-18 03:33:58.320483,c4-standard-2,europe-west1-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314,73-1h,scip,10.0.0,2025.0,TO,Timeout,3600.0,1794.036,,,,3600.0,3600.0,benchmark-instance-s-m-06,20251216-rerun-2,2025-12-18 04:37:38.666378,c4-standard-2,europe-west1-b,48cfc10,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon48_Day314 +zen-garden-eur-PI,28-10ts,cbc,2.10.12,2024.0,TO,Timeout,86400.0,1788.576,,,,86400.0,86400.0,benchmark-instance-leftovers-00,20251222-leftovers,2025-12-22 15:03:36.811198,c4-highmem-16,us-central1-a,305f3ff,zen-garden-eur-PI-28-10ts,cbc-2.10.12,zen-garden-eur-PI +zen-garden-eur-PI,28-10ts,gurobi,13.0.0,2025.0,ok,optimal,520.7288594439888,10337.508,5825377.405725104,,,496.65637588500977,86400.0,benchmark-instance-leftovers-00,20251222-leftovers,2025-12-23 15:07:51.653165,c4-highmem-16,us-central1-a,305f3ff,zen-garden-eur-PI-28-10ts,gurobi-13.0.0,zen-garden-eur-PI +zen-garden-eur-PI,28-10ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,28989.79990847,8174.1,5825377.4158,,,28989.79990847,86400.0,benchmark-instance-leftovers-00,20251222-leftovers,2025-12-23 15:20:38.016563,c4-highmem-16,us-central1-a,305f3ff,zen-garden-eur-PI-28-10ts,highs-hipo-1.12.0-hipo,zen-garden-eur-PI +zen-garden-eur-PI,28-10ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,31997.223070312,4995.312,5825377.4147,,,31997.223070312,86400.0,benchmark-instance-leftovers-00,20251222-leftovers,2025-12-23 23:27:47.592940,c4-highmem-16,us-central1-a,305f3ff,zen-garden-eur-PI-28-10ts,highs-ipx-1.12.0-hipo,zen-garden-eur-PI +zen-garden-eur-PI,28-10ts,highs,1.12.0,2025.0,TO,Timeout,86400.0,5380.264,,,,86400.0,86400.0,benchmark-instance-leftovers-00,20251222-leftovers,2025-12-24 08:25:03.031672,c4-highmem-16,us-central1-a,305f3ff,zen-garden-eur-PI-28-10ts,highs-1.12.0,zen-garden-eur-PI +zen-garden-eur-PI,28-10ts,scip,10.0.0,2025.0,TO,Timeout,86400.0,21163.948,,,,86400.0,86400.0,benchmark-instance-leftovers-00,20251222-leftovers,2025-12-25 08:28:48.579006,c4-highmem-16,us-central1-a,305f3ff,zen-garden-eur-PI-28-10ts,scip-10.0.0,zen-garden-eur-PI +ethos-fine-multi-regional-7tp,8-168ts,glpk,5.0,2020.0,warning,unknown,0.0161549110000009,147.984,,,,,3600.0,benchmark-instance-leftovers-05,20251222-leftovers,2025-12-22 15:02:27.003627,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-8-168ts,glpk-5.0,ethos-fine-multi-regional-7tp +ethos-fine-multi-regional-7tp,8-168ts,gurobi,10.0.0,2022.0,ok,optimal,3131.926642921,461.084,53.3140148107713,,,3131.21452498436,3600.0,benchmark-instance-leftovers-05,20251222-leftovers,2025-12-22 15:06:53.516152,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-8-168ts,gurobi-10.0.0,ethos-fine-multi-regional-7tp +ethos-fine-multi-regional-7tp,8-168ts,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,731.724,,,,3600.0,3600.0,benchmark-instance-leftovers-05,20251222-leftovers,2025-12-22 16:02:46.463896,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-8-168ts,highs-1.5.0.dev0,ethos-fine-multi-regional-7tp +ethos-fine-multi-regional-7tp,8-168ts,scip,8.0.3,2022.0,TO,Timeout,3600.0,682.988,,,,3600.0,3600.0,benchmark-instance-leftovers-05,20251222-leftovers,2025-12-22 17:06:21.506738,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-8-168ts,scip-8.0.3,ethos-fine-multi-regional-7tp +ethos-fine-multi-regional-7tp,8-168ts,gurobi,11.0.0,2023.0,ok,optimal,2021.3914636080008,462.46,53.31400983622567,,,2020.844556093216,3600.0,benchmark-instance-leftovers-05,20251222-leftovers,2025-12-22 18:13:20.580527,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-8-168ts,gurobi-11.0.0,ethos-fine-multi-regional-7tp +ethos-fine-multi-regional-7tp,8-168ts,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,767.648,,,,3600.0,3600.0,benchmark-instance-leftovers-05,20251222-leftovers,2025-12-22 18:50:38.101947,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-8-168ts,highs-1.6.0.dev0,ethos-fine-multi-regional-7tp +ethos-fine-multi-regional-7tp,8-168ts,scip,8.1.0,2023.0,TO,Timeout,3600.0,690.544,,,,3600.0,3600.0,benchmark-instance-leftovers-05,20251222-leftovers,2025-12-22 19:54:20.409111,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-8-168ts,scip-8.1.0,ethos-fine-multi-regional-7tp +ethos-fine-multi-regional-7tp,8-168ts,cbc,2.10.11,2023.0,TO,Timeout,3600.0,179.268,,,,3600.0,3600.0,benchmark-instance-leftovers-05,20251222-leftovers,2025-12-22 20:57:57.638433,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-8-168ts,cbc-2.10.11,ethos-fine-multi-regional-7tp +ethos-fine-multi-regional-7tp,8-168ts,gurobi,12.0.0,2024.0,ok,optimal,3109.012124284,414.716,53.31401881650922,0.0,8.328613198312597e-05,3108.290172100067,3600.0,benchmark-instance-leftovers-05,20251222-leftovers,2025-12-22 22:02:14.067958,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-8-168ts,gurobi-12.0.0,ethos-fine-multi-regional-7tp +ethos-fine-multi-regional-7tp,8-168ts,highs,1.9.0,2024.0,TO,Timeout,3600.0,867.456,,,,3600.0,3600.0,benchmark-instance-leftovers-05,20251222-leftovers,2025-12-22 22:57:45.989220,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-8-168ts,highs-1.9.0,ethos-fine-multi-regional-7tp +ethos-fine-multi-regional-7tp,8-168ts,scip,9.2.0,2024.0,TO,Timeout,3600.0,673.92,,,,3600.0,3600.0,benchmark-instance-leftovers-05,20251222-leftovers,2025-12-23 00:01:31.132849,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-8-168ts,scip-9.2.0,ethos-fine-multi-regional-7tp +ethos-fine-multi-regional-7tp,8-168ts,cbc,2.10.12,2024.0,TO,Timeout,3600.0,162.152,,,,3600.0,3600.0,benchmark-instance-leftovers-05,20251222-leftovers,2025-12-23 01:05:15.475661,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-8-168ts,cbc-2.10.12,ethos-fine-multi-regional-7tp +ethos-fine-multi-regional-7tp,8-168ts,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,449.84,,,,3600.0,3600.0,benchmark-instance-leftovers-05,20251222-leftovers,2025-12-23 02:09:34.253649,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-8-168ts,gurobi-13.0.0,ethos-fine-multi-regional-7tp +ethos-fine-multi-regional-7tp,8-168ts,highs,1.12.0,2025.0,TO,Timeout,3600.0,1176.988,,,,3600.0,3600.0,benchmark-instance-leftovers-05,20251222-leftovers,2025-12-23 03:13:17.163973,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-8-168ts,highs-1.12.0,ethos-fine-multi-regional-7tp +ethos-fine-multi-regional-7tp,8-168ts,scip,10.0.0,2025.0,TO,Timeout,3600.0,697.924,,,,3600.0,3600.0,benchmark-instance-leftovers-05,20251222-leftovers,2025-12-23 04:17:07.426462,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-8-168ts,scip-10.0.0,ethos-fine-multi-regional-7tp +FINE-energyland,1-8760ts,glpk,5.0,2020.0,ok,optimal,93.327623663,167.496,1416320.9551,,,,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:02:13.021706,c4-standard-2,us-central1-a,305f3ff,FINE-energyland-1-8760ts,glpk-5.0,FINE-energyland +FINE-spatial-aggregation-of-energy-system-model,8-8760ts,glpk,5.0,2020.0,ok,optimal,3.60221629900002,138.18,136.30555245,,,,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:07:28.808384,c4-standard-2,us-central1-a,305f3ff,FINE-spatial-aggregation-of-energy-system-model-8-8760ts,glpk-5.0,FINE-spatial-aggregation-of-energy-system-model +FINE-energyland,1-8760ts,gurobi,10.0.0,2022.0,ok,optimal,51.062290419999954,258.568,416320.9546913172,,,50.46164083480835,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:08:09.839795,c4-standard-2,us-central1-a,305f3ff,FINE-energyland-1-8760ts,gurobi-10.0.0,FINE-energyland +FINE-energyland,1-8760ts,highs,1.5.0.dev0,2022.0,ok,optimal,67.74317027400002,289.208,416320.9545262167,,,67.42860293388367,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:12:44.342423,c4-standard-2,us-central1-a,305f3ff,FINE-energyland-1-8760ts,highs-1.5.0.dev0,FINE-energyland +FINE-energyland,1-8760ts,scip,8.0.3,2022.0,ok,optimal,105.34039052800006,477.804,416320.9545262195,,,105.057685,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:13:52.973643,c4-standard-2,us-central1-a,305f3ff,FINE-energyland-1-8760ts,scip-8.0.3,FINE-energyland +FINE-spatial-aggregation-of-energy-system-model,8-8760ts,gurobi,10.0.0,2022.0,ok,optimal,3.457027601999925,191.672,36.30555531862116,,,3.076032876968384,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:15:39.285189,c4-standard-2,us-central1-a,305f3ff,FINE-spatial-aggregation-of-energy-system-model-8-8760ts,gurobi-10.0.0,FINE-spatial-aggregation-of-energy-system-model +FINE-spatial-aggregation-of-energy-system-model,8-8760ts,highs,1.5.0.dev0,2022.0,ok,optimal,3.7819803740001134,190.772,36.305551195923,,,3.687332391738892,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:15:43.465851,c4-standard-2,us-central1-a,305f3ff,FINE-spatial-aggregation-of-energy-system-model-8-8760ts,highs-1.5.0.dev0,FINE-spatial-aggregation-of-energy-system-model +FINE-spatial-aggregation-of-energy-system-model,8-8760ts,scip,8.0.3,2022.0,ok,optimal,10.272530972999904,259.696,36.30555119123844,,,10.172095,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:15:47.949725,c4-standard-2,us-central1-a,305f3ff,FINE-spatial-aggregation-of-energy-system-model-8-8760ts,scip-8.0.3,FINE-spatial-aggregation-of-energy-system-model +FINE-energyland,1-8760ts,gurobi,11.0.0,2023.0,ok,optimal,46.83493648000013,265.348,416320.9546913173,,,46.32703518867493,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:19:21.062264,c4-standard-2,us-central1-a,305f3ff,FINE-energyland-1-8760ts,gurobi-11.0.0,FINE-energyland +FINE-energyland,1-8760ts,highs,1.6.0.dev0,2023.0,ok,optimal,67.27096194199999,287.668,416320.9545262167,,,67.01178121566772,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:23:51.217548,c4-standard-2,us-central1-a,305f3ff,FINE-energyland-1-8760ts,highs-1.6.0.dev0,FINE-energyland +FINE-energyland,1-8760ts,scip,8.1.0,2023.0,ok,optimal,104.54697139100016,486.752,416320.9545262195,,,104.306061,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:24:59.430903,c4-standard-2,us-central1-a,305f3ff,FINE-energyland-1-8760ts,scip-8.1.0,FINE-energyland +FINE-energyland,1-8760ts,cbc,2.10.11,2023.0,ok,optimal,55.26025787900016,205.392,416320.95452608,,,,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:26:45.001638,c4-standard-2,us-central1-a,305f3ff,FINE-energyland-1-8760ts,cbc-2.10.11,FINE-energyland +FINE-spatial-aggregation-of-energy-system-model,8-8760ts,gurobi,11.0.0,2023.0,ok,optimal,2.852278579999848,198.084,36.3055560644324,,,2.5028438568115234,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:27:41.199069,c4-standard-2,us-central1-a,305f3ff,FINE-spatial-aggregation-of-energy-system-model-8-8760ts,gurobi-11.0.0,FINE-spatial-aggregation-of-energy-system-model +FINE-spatial-aggregation-of-energy-system-model,8-8760ts,highs,1.6.0.dev0,2023.0,ok,optimal,3.707080530999974,198.368,36.305551195923,,,3.630124568939209,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:27:44.855198,c4-standard-2,us-central1-a,305f3ff,FINE-spatial-aggregation-of-energy-system-model-8-8760ts,highs-1.6.0.dev0,FINE-spatial-aggregation-of-energy-system-model +FINE-spatial-aggregation-of-energy-system-model,8-8760ts,scip,8.1.0,2023.0,ok,optimal,10.2347775610001,268.06,36.30555119123844,,,10.159333,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:27:49.368913,c4-standard-2,us-central1-a,305f3ff,FINE-spatial-aggregation-of-energy-system-model-8-8760ts,scip-8.1.0,FINE-spatial-aggregation-of-energy-system-model +FINE-spatial-aggregation-of-energy-system-model,8-8760ts,cbc,2.10.11,2023.0,ok,optimal,3.7966064900001584,171.84,36.30555343,,,,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:28:00.439127,c4-standard-2,us-central1-a,305f3ff,FINE-spatial-aggregation-of-energy-system-model-8-8760ts,cbc-2.10.11,FINE-spatial-aggregation-of-energy-system-model +FINE-energyland,1-8760ts,gurobi,12.0.0,2024.0,ok,optimal,48.94609139099998,251.884,416320.9545832536,,,48.45028114318848,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:28:34.690488,c4-standard-2,us-central1-a,305f3ff,FINE-energyland-1-8760ts,gurobi-12.0.0,FINE-energyland +FINE-energyland,1-8760ts,highs,1.9.0,2024.0,ok,optimal,27.17933303800009,277.364,416320.95452621655,,,26.84825587272644,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:33:06.085562,c4-standard-2,us-central1-a,305f3ff,FINE-energyland-1-8760ts,highs-1.9.0,FINE-energyland +FINE-energyland,1-8760ts,scip,9.2.0,2024.0,ok,optimal,106.8822151989998,474.06,416320.9545262195,,,106.637634,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:33:34.216720,c4-standard-2,us-central1-a,305f3ff,FINE-energyland-1-8760ts,scip-9.2.0,FINE-energyland +FINE-energyland,1-8760ts,cbc,2.10.12,2024.0,ok,optimal,58.28335403199981,224.884,416320.95452608,,,,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:35:22.078665,c4-standard-2,us-central1-a,305f3ff,FINE-energyland-1-8760ts,cbc-2.10.12,FINE-energyland +FINE-spatial-aggregation-of-energy-system-model,8-8760ts,gurobi,12.0.0,2024.0,ok,optimal,3.597952109999824,186.596,36.305558639119134,,,3.2326760292053223,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:36:21.295211,c4-standard-2,us-central1-a,305f3ff,FINE-spatial-aggregation-of-energy-system-model-8-8760ts,gurobi-12.0.0,FINE-spatial-aggregation-of-energy-system-model +FINE-spatial-aggregation-of-energy-system-model,8-8760ts,highs,1.9.0,2024.0,ok,optimal,3.111099041000216,183.844,36.30555122728705,,,3.006555318832397,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:36:25.540595,c4-standard-2,us-central1-a,305f3ff,FINE-spatial-aggregation-of-energy-system-model-8-8760ts,highs-1.9.0,FINE-spatial-aggregation-of-energy-system-model +FINE-spatial-aggregation-of-energy-system-model,8-8760ts,scip,9.2.0,2024.0,ok,optimal,10.726059259000069,250.332,36.30555119123844,,,10.647337,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:36:29.312452,c4-standard-2,us-central1-a,305f3ff,FINE-spatial-aggregation-of-energy-system-model-8-8760ts,scip-9.2.0,FINE-spatial-aggregation-of-energy-system-model +FINE-spatial-aggregation-of-energy-system-model,8-8760ts,cbc,2.10.12,2024.0,ok,optimal,4.069239371999629,168.652,36.30555343,,,,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:36:40.708305,c4-standard-2,us-central1-a,305f3ff,FINE-spatial-aggregation-of-energy-system-model-8-8760ts,cbc-2.10.12,FINE-spatial-aggregation-of-energy-system-model +FINE-energyland,1-8760ts,gurobi,13.0.0,2025.0,ok,optimal,50.72563302200024,277.084,416320.9545832536,,,50.23979783058167,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:37:14.524190,c4-standard-2,us-central1-a,305f3ff,FINE-energyland-1-8760ts,gurobi-13.0.0,FINE-energyland +FINE-energyland,1-8760ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,15.762964083000044,163.036,416320.95453,,,15.762964083000044,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:41:54.876451,c4-standard-2,us-central1-a,305f3ff,FINE-energyland-1-8760ts,highs-hipo-1.12.0-hipo,FINE-energyland +FINE-energyland,1-8760ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,18.626971181000044,163.924,416320.95454,,,18.626971181000044,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:42:11.613101,c4-standard-2,us-central1-a,305f3ff,FINE-energyland-1-8760ts,highs-ipx-1.12.0-hipo,FINE-energyland +FINE-energyland,1-8760ts,highs,1.12.0,2025.0,ok,optimal,27.712944527000214,296.672,416320.954526219,,,27.440996170043945,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:42:31.010714,c4-standard-2,us-central1-a,305f3ff,FINE-energyland-1-8760ts,highs-1.12.0,FINE-energyland +FINE-energyland,1-8760ts,scip,10.0.0,2025.0,ok,optimal,107.16510167899968,500.256,416320.9545262195,,,106.914743,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:42:59.710607,c4-standard-2,us-central1-a,305f3ff,FINE-energyland-1-8760ts,scip-10.0.0,FINE-energyland +FINE-spatial-aggregation-of-energy-system-model,8-8760ts,gurobi,13.0.0,2025.0,ok,optimal,3.554143201999977,211.268,36.30555615573832,,,3.135646104812622,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:44:47.948763,c4-standard-2,us-central1-a,305f3ff,FINE-spatial-aggregation-of-energy-system-model-8-8760ts,gurobi-13.0.0,FINE-spatial-aggregation-of-energy-system-model +FINE-spatial-aggregation-of-energy-system-model,8-8760ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,2.668819597000038,163.28,36.305551182,,,2.668819597000038,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:44:52.363686,c4-standard-2,us-central1-a,305f3ff,FINE-spatial-aggregation-of-energy-system-model-8-8760ts,highs-hipo-1.12.0-hipo,FINE-spatial-aggregation-of-energy-system-model +FINE-spatial-aggregation-of-energy-system-model,8-8760ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,1.76284273400006,163.204,36.305551185,,,1.76284273400006,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:44:55.807367,c4-standard-2,us-central1-a,305f3ff,FINE-spatial-aggregation-of-energy-system-model-8-8760ts,highs-ipx-1.12.0-hipo,FINE-spatial-aggregation-of-energy-system-model +FINE-spatial-aggregation-of-energy-system-model,8-8760ts,highs,1.12.0,2025.0,ok,optimal,2.993225874000018,207.052,36.30555122728705,,,2.911932468414306,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:44:58.330222,c4-standard-2,us-central1-a,305f3ff,FINE-spatial-aggregation-of-energy-system-model-8-8760ts,highs-1.12.0,FINE-spatial-aggregation-of-energy-system-model +FINE-spatial-aggregation-of-energy-system-model,8-8760ts,scip,10.0.0,2025.0,ok,optimal,10.60081694099972,277.94,36.30555119123844,,,10.518119,3600.0,benchmark-instance-leftovers-08,20251222-leftovers,2025-12-22 15:45:02.155332,c4-standard-2,us-central1-a,305f3ff,FINE-spatial-aggregation-of-energy-system-model-8-8760ts,scip-10.0.0,FINE-spatial-aggregation-of-energy-system-model +zen-garden-eur-PI,28-2ts,glpk,5.0,2020.0,ok,optimal,13.073931395999978,245.76,1096080.906,,,,3600.0,benchmark-instance-leftovers-02,20251222-leftovers,2025-12-22 15:01:57.583689,c4-standard-2,us-central1-a,305f3ff,zen-garden-eur-PI-28-2ts,glpk-5.0,zen-garden-eur-PI +zen-garden-eur-PI,28-2ts,gurobi,10.0.0,2022.0,ok,optimal,4.195521823000036,357.484,1096080.9064061071,,,3.1579549312591557,3600.0,benchmark-instance-leftovers-02,20251222-leftovers,2025-12-22 15:06:29.615326,c4-standard-2,us-central1-a,305f3ff,zen-garden-eur-PI-28-2ts,gurobi-10.0.0,zen-garden-eur-PI +zen-garden-eur-PI,28-2ts,highs,1.5.0.dev0,2022.0,ok,optimal,6.362570865999942,388.508,1096080.906406107,,,5.683736562728882,3600.0,benchmark-instance-leftovers-02,20251222-leftovers,2025-12-22 15:10:18.200265,c4-standard-2,us-central1-a,305f3ff,zen-garden-eur-PI-28-2ts,highs-1.5.0.dev0,zen-garden-eur-PI +zen-garden-eur-PI,28-2ts,scip,8.0.3,2022.0,ok,optimal,12.720170639000004,839.756,1096080.9064061071,,,11.956132,3600.0,benchmark-instance-leftovers-02,20251222-leftovers,2025-12-22 15:10:25.789158,c4-standard-2,us-central1-a,305f3ff,zen-garden-eur-PI-28-2ts,scip-8.0.3,zen-garden-eur-PI +zen-garden-eur-PI,28-2ts,gurobi,11.0.0,2023.0,ok,optimal,3.4404475849999017,360.24,1096080.9064061071,,,2.5670690536499023,3600.0,benchmark-instance-leftovers-02,20251222-leftovers,2025-12-22 15:14:06.471939,c4-standard-2,us-central1-a,305f3ff,zen-garden-eur-PI-28-2ts,gurobi-11.0.0,zen-garden-eur-PI +zen-garden-eur-PI,28-2ts,highs,1.6.0.dev0,2023.0,ok,optimal,5.825008024999988,396.768,1096080.906406107,,,5.338489532470703,3600.0,benchmark-instance-leftovers-02,20251222-leftovers,2025-12-22 15:17:56.274194,c4-standard-2,us-central1-a,305f3ff,zen-garden-eur-PI-28-2ts,highs-1.6.0.dev0,zen-garden-eur-PI +zen-garden-eur-PI,28-2ts,scip,8.1.0,2023.0,ok,optimal,12.497753316999932,843.608,1096080.9064061071,,,11.844394,3600.0,benchmark-instance-leftovers-02,20251222-leftovers,2025-12-22 15:18:03.180203,c4-standard-2,us-central1-a,305f3ff,zen-garden-eur-PI-28-2ts,scip-8.1.0,zen-garden-eur-PI +zen-garden-eur-PI,28-2ts,cbc,2.10.11,2023.0,ok,optimal,2.970592775999876,215.964,1096080.90640611,,,,3600.0,benchmark-instance-leftovers-02,20251222-leftovers,2025-12-22 15:18:16.945433,c4-standard-2,us-central1-a,305f3ff,zen-garden-eur-PI-28-2ts,cbc-2.10.11,zen-garden-eur-PI +zen-garden-eur-PI,28-2ts,gurobi,12.0.0,2024.0,ok,optimal,3.67074868199984,346.46,1096080.906406107,,,2.8015029430389404,3600.0,benchmark-instance-leftovers-02,20251222-leftovers,2025-12-22 15:18:47.278260,c4-standard-2,us-central1-a,305f3ff,zen-garden-eur-PI-28-2ts,gurobi-12.0.0,zen-garden-eur-PI +zen-garden-eur-PI,28-2ts,highs,1.9.0,2024.0,ok,optimal,6.885775022999951,382.74,1096080.906406107,,,6.088898420333862,3600.0,benchmark-instance-leftovers-02,20251222-leftovers,2025-12-22 15:22:30.696829,c4-standard-2,us-central1-a,305f3ff,zen-garden-eur-PI-28-2ts,highs-1.9.0,zen-garden-eur-PI +zen-garden-eur-PI,28-2ts,scip,9.2.0,2024.0,ok,optimal,12.50572024500002,827.124,1096080.9064061071,,,11.848145,3600.0,benchmark-instance-leftovers-02,20251222-leftovers,2025-12-22 15:22:39.108663,c4-standard-2,us-central1-a,305f3ff,zen-garden-eur-PI-28-2ts,scip-9.2.0,zen-garden-eur-PI +zen-garden-eur-PI,28-2ts,cbc,2.10.12,2024.0,ok,optimal,3.653995413000075,236.9,1096080.90640611,,,,3600.0,benchmark-instance-leftovers-02,20251222-leftovers,2025-12-22 15:22:53.262828,c4-standard-2,us-central1-a,305f3ff,zen-garden-eur-PI-28-2ts,cbc-2.10.12,zen-garden-eur-PI +zen-garden-eur-PI,28-2ts,gurobi,13.0.0,2025.0,ok,optimal,3.570524740999872,366.484,1096080.906406107,,,2.634330987930298,3600.0,benchmark-instance-leftovers-02,20251222-leftovers,2025-12-22 15:23:27.822967,c4-standard-2,us-central1-a,305f3ff,zen-garden-eur-PI-28-2ts,gurobi-13.0.0,zen-garden-eur-PI +zen-garden-eur-PI,28-2ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,23.34749055300017,221.668,1096080.9069,,,23.34749055300017,3600.0,benchmark-instance-leftovers-02,20251222-leftovers,2025-12-22 15:27:08.581364,c4-standard-2,us-central1-a,305f3ff,zen-garden-eur-PI-28-2ts,highs-hipo-1.12.0-hipo,zen-garden-eur-PI +zen-garden-eur-PI,28-2ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,17.354142969000122,163.732,1096080.9068,,,17.354142969000122,3600.0,benchmark-instance-leftovers-02,20251222-leftovers,2025-12-22 15:27:32.856084,c4-standard-2,us-central1-a,305f3ff,zen-garden-eur-PI-28-2ts,highs-ipx-1.12.0-hipo,zen-garden-eur-PI +zen-garden-eur-PI,28-2ts,highs,1.12.0,2025.0,ok,optimal,6.075926922999997,401.956,1096080.906406107,,,5.5273919105529785,3600.0,benchmark-instance-leftovers-02,20251222-leftovers,2025-12-22 15:27:50.957874,c4-standard-2,us-central1-a,305f3ff,zen-garden-eur-PI-28-2ts,highs-1.12.0,zen-garden-eur-PI +zen-garden-eur-PI,28-2ts,scip,10.0.0,2025.0,ok,optimal,12.175985044999834,851.972,1096080.9064061071,,,11.525978,3600.0,benchmark-instance-leftovers-02,20251222-leftovers,2025-12-22 15:27:58.155866,c4-standard-2,us-central1-a,305f3ff,zen-garden-eur-PI-28-2ts,scip-10.0.0,zen-garden-eur-PI +ethos-fine-energyland-48tp,1-1152ts,glpk,5.0,2020.0,warning,unknown,0.0160920149999697,141.492,,,,,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:02:06.501224,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-48tp-1-1152ts,glpk-5.0,ethos-fine-energyland-48tp +FINE-2-node-electricity-supply-system,2-8760ts,glpk,5.0,2020.0,ok,optimal,3.2010148470000104,136.0,139763.30783,,,,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:05:50.564989,c4-standard-2,us-central1-a,305f3ff,FINE-2-node-electricity-supply-system-2-8760ts,glpk-5.0,FINE-2-node-electricity-supply-system +ethos-fine-energyland-48tp,1-1152ts,gurobi,10.0.0,2022.0,ok,optimal,47.26947504099997,229.592,416320.9534108405,,,46.69332695007324,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:06:31.725832,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-48tp-1-1152ts,gurobi-10.0.0,ethos-fine-energyland-48tp +ethos-fine-energyland-48tp,1-1152ts,highs,1.5.0.dev0,2022.0,ok,optimal,31.308684549999956,245.248,416320.95333323546,,,31.01431703567505,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:11:02.426494,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-48tp-1-1152ts,highs-1.5.0.dev0,ethos-fine-energyland-48tp +ethos-fine-energyland-48tp,1-1152ts,scip,8.0.3,2022.0,ok,optimal,107.21973980899998,446.7,416320.9533332397,,,106.914444,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:11:34.598422,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-48tp-1-1152ts,scip-8.0.3,ethos-fine-energyland-48tp +FINE-2-node-electricity-supply-system,2-8760ts,gurobi,10.0.0,2022.0,ok,optimal,1.9291016900000384,181.92,39763.307831576974,,,1.4754469394683838,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:13:22.762644,c4-standard-2,us-central1-a,305f3ff,FINE-2-node-electricity-supply-system-2-8760ts,gurobi-10.0.0,FINE-2-node-electricity-supply-system +FINE-2-node-electricity-supply-system,2-8760ts,highs,1.5.0.dev0,2022.0,ok,optimal,2.555645772999924,180.912,39763.307831577,,,2.477267265319824,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:13:25.405338,c4-standard-2,us-central1-a,305f3ff,FINE-2-node-electricity-supply-system-2-8760ts,highs-1.5.0.dev0,FINE-2-node-electricity-supply-system +FINE-2-node-electricity-supply-system,2-8760ts,scip,8.0.3,2022.0,ok,optimal,6.562863469000035,236.388,39763.307831576974,,,6.499291,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:13:28.653656,c4-standard-2,us-central1-a,305f3ff,FINE-2-node-electricity-supply-system-2-8760ts,scip-8.0.3,FINE-2-node-electricity-supply-system +ethos-fine-energyland-48tp,1-1152ts,gurobi,11.0.0,2023.0,ok,optimal,51.472511291000046,237.02,416320.9534108405,,,50.9739511013031,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:17:04.238037,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-48tp-1-1152ts,gurobi-11.0.0,ethos-fine-energyland-48tp +ethos-fine-energyland-48tp,1-1152ts,highs,1.6.0.dev0,2023.0,ok,optimal,30.80272179300005,255.424,416320.95333323546,,,30.602459192276,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:21:44.951536,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-48tp-1-1152ts,highs-1.6.0.dev0,ethos-fine-energyland-48tp +ethos-fine-energyland-48tp,1-1152ts,scip,8.1.0,2023.0,ok,optimal,106.270873682,464.432,416320.9533332397,,,106.006316,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:22:16.686687,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-48tp-1-1152ts,scip-8.1.0,ethos-fine-energyland-48tp +ethos-fine-energyland-48tp,1-1152ts,cbc,2.10.11,2023.0,ok,optimal,44.481967021999935,185.964,416320.95332892,,,,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:24:03.934611,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-48tp-1-1152ts,cbc-2.10.11,ethos-fine-energyland-48tp +FINE-2-node-electricity-supply-system,2-8760ts,gurobi,11.0.0,2023.0,ok,optimal,1.7905713029999788,191.216,39763.307831577,,,1.4364490509033203,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:24:49.298648,c4-standard-2,us-central1-a,305f3ff,FINE-2-node-electricity-supply-system-2-8760ts,gurobi-11.0.0,FINE-2-node-electricity-supply-system +FINE-2-node-electricity-supply-system,2-8760ts,highs,1.6.0.dev0,2023.0,ok,optimal,2.510299952999958,188.108,39763.307831577,,,2.4438133239746094,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:24:51.912106,c4-standard-2,us-central1-a,305f3ff,FINE-2-node-electricity-supply-system-2-8760ts,highs-1.6.0.dev0,FINE-2-node-electricity-supply-system +FINE-2-node-electricity-supply-system,2-8760ts,scip,8.1.0,2023.0,ok,optimal,6.480480185000033,244.264,39763.307831576974,,,6.415066,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:24:55.242869,c4-standard-2,us-central1-a,305f3ff,FINE-2-node-electricity-supply-system-2-8760ts,scip-8.1.0,FINE-2-node-electricity-supply-system +FINE-2-node-electricity-supply-system,2-8760ts,cbc,2.10.11,2023.0,ok,optimal,2.3143589359999623,167.912,39763.30783158,,,,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:25:02.559828,c4-standard-2,us-central1-a,305f3ff,FINE-2-node-electricity-supply-system-2-8760ts,cbc-2.10.11,FINE-2-node-electricity-supply-system +ethos-fine-energyland-48tp,1-1152ts,gurobi,12.0.0,2024.0,ok,optimal,57.152202566999904,221.496,416320.9533895149,,,56.67304611206055,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:25:34.837762,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-48tp-1-1152ts,gurobi-12.0.0,ethos-fine-energyland-48tp +ethos-fine-energyland-48tp,1-1152ts,highs,1.9.0,2024.0,ok,optimal,27.19489620800005,242.728,416320.9533332355,,,26.84337902069092,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:30:19.837838,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-48tp-1-1152ts,highs-1.9.0,ethos-fine-energyland-48tp +ethos-fine-energyland-48tp,1-1152ts,scip,9.2.0,2024.0,ok,optimal,106.594236207,446.968,416320.9533332397,,,106.324286,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:30:48.006352,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-48tp-1-1152ts,scip-9.2.0,ethos-fine-energyland-48tp +ethos-fine-energyland-48tp,1-1152ts,cbc,2.10.12,2024.0,ok,optimal,45.04917458799992,191.776,416320.95332892,,,,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:32:35.595682,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-48tp-1-1152ts,cbc-2.10.12,ethos-fine-energyland-48tp +FINE-2-node-electricity-supply-system,2-8760ts,gurobi,12.0.0,2024.0,ok,optimal,1.6890594559999954,174.936,39763.30783157698,,,1.3302569389343262,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:33:21.553933,c4-standard-2,us-central1-a,305f3ff,FINE-2-node-electricity-supply-system-2-8760ts,gurobi-12.0.0,FINE-2-node-electricity-supply-system +FINE-2-node-electricity-supply-system,2-8760ts,highs,1.9.0,2024.0,ok,optimal,1.76254664399994,174.204,39763.307831577,,,1.6778178215026855,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:33:23.881016,c4-standard-2,us-central1-a,305f3ff,FINE-2-node-electricity-supply-system-2-8760ts,highs-1.9.0,FINE-2-node-electricity-supply-system +FINE-2-node-electricity-supply-system,2-8760ts,scip,9.2.0,2024.0,ok,optimal,6.512301741999636,227.744,39763.307831576974,,,6.448081,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:33:26.274977,c4-standard-2,us-central1-a,305f3ff,FINE-2-node-electricity-supply-system-2-8760ts,scip-9.2.0,FINE-2-node-electricity-supply-system +FINE-2-node-electricity-supply-system,2-8760ts,cbc,2.10.12,2024.0,ok,optimal,2.3678194100002656,159.492,39763.30783158,,,,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:33:33.430155,c4-standard-2,us-central1-a,305f3ff,FINE-2-node-electricity-supply-system-2-8760ts,cbc-2.10.12,FINE-2-node-electricity-supply-system +ethos-fine-energyland-48tp,1-1152ts,gurobi,13.0.0,2025.0,ok,optimal,57.801277372000186,250.804,416320.9533895149,,,57.31358218193054,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:34:04.953413,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-48tp-1-1152ts,gurobi-13.0.0,ethos-fine-energyland-48tp +ethos-fine-energyland-48tp,1-1152ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,14.073151239999788,163.356,416320.95334,,,14.073151239999788,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:38:52.938407,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-48tp-1-1152ts,highs-hipo-1.12.0-hipo,ethos-fine-energyland-48tp +ethos-fine-energyland-48tp,1-1152ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,19.46731396999985,163.132,416320.95334,,,19.46731396999985,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:39:08.192238,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-48tp-1-1152ts,highs-ipx-1.12.0-hipo,ethos-fine-energyland-48tp +ethos-fine-energyland-48tp,1-1152ts,highs,1.12.0,2025.0,ok,optimal,26.931262666999828,264.468,416320.9533332394,,,26.703065872192383,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:39:28.450973,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-48tp-1-1152ts,highs-1.12.0,ethos-fine-energyland-48tp +ethos-fine-energyland-48tp,1-1152ts,scip,10.0.0,2025.0,ok,optimal,106.36432720199991,471.096,416320.9533332397,,,106.091685,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:39:56.340048,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-48tp-1-1152ts,scip-10.0.0,ethos-fine-energyland-48tp +FINE-2-node-electricity-supply-system,2-8760ts,gurobi,13.0.0,2025.0,ok,optimal,1.7242017480002687,201.964,39763.30783157698,,,1.3459858894348145,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:41:43.746532,c4-standard-2,us-central1-a,305f3ff,FINE-2-node-electricity-supply-system-2-8760ts,gurobi-13.0.0,FINE-2-node-electricity-supply-system +FINE-2-node-electricity-supply-system,2-8760ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,2.3668537270000343,163.02,39763.307832,,,2.3668537270000343,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:41:46.319047,c4-standard-2,us-central1-a,305f3ff,FINE-2-node-electricity-supply-system-2-8760ts,highs-hipo-1.12.0-hipo,FINE-2-node-electricity-supply-system +FINE-2-node-electricity-supply-system,2-8760ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,1.835145268999895,163.288,39763.307832,,,1.835145268999895,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:41:49.478520,c4-standard-2,us-central1-a,305f3ff,FINE-2-node-electricity-supply-system-2-8760ts,highs-ipx-1.12.0-hipo,FINE-2-node-electricity-supply-system +FINE-2-node-electricity-supply-system,2-8760ts,highs,1.12.0,2025.0,ok,optimal,1.756702808999762,199.048,39763.307831577,,,1.6898314952850342,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:41:52.100118,c4-standard-2,us-central1-a,305f3ff,FINE-2-node-electricity-supply-system-2-8760ts,highs-1.12.0,FINE-2-node-electricity-supply-system +FINE-2-node-electricity-supply-system,2-8760ts,scip,10.0.0,2025.0,ok,optimal,6.519639124999685,253.112,39763.307831576974,,,6.450792,3600.0,benchmark-instance-leftovers-07,20251222-leftovers,2025-12-22 15:41:54.691187,c4-standard-2,us-central1-a,305f3ff,FINE-2-node-electricity-supply-system-2-8760ts,scip-10.0.0,FINE-2-node-electricity-supply-system +OEMOF-economic-results,1-8760ts,glpk,5.0,2020.0,ER,,,149.788,,,,,3600.0,benchmark-instance-leftovers-04,20251222-leftovers,2025-12-22 15:01:55.331738,c4-standard-2,us-central1-a,305f3ff,OEMOF-economic-results-1-8760ts,glpk-5.0,OEMOF-economic-results +OEMOF-economic-results,1-8760ts,gurobi,10.0.0,2022.0,ok,optimal,0.9017657470000132,317.036,19364184373.23463,,,0.2722840309143066,3600.0,benchmark-instance-leftovers-04,20251222-leftovers,2025-12-22 15:06:00.037472,c4-standard-2,us-central1-a,305f3ff,OEMOF-economic-results-1-8760ts,gurobi-10.0.0,OEMOF-economic-results +OEMOF-economic-results,1-8760ts,highs,1.5.0.dev0,2022.0,ok,optimal,0.8387785209999947,283.104,19364184373.23463,,,0.4181966781616211,3600.0,benchmark-instance-leftovers-04,20251222-leftovers,2025-12-22 15:09:22.832461,c4-standard-2,us-central1-a,305f3ff,OEMOF-economic-results-1-8760ts,highs-1.5.0.dev0,OEMOF-economic-results +OEMOF-economic-results,1-8760ts,scip,8.0.3,2022.0,ok,optimal,7.645272688000091,585.26,19364184373.23463,,,7.198092,3600.0,benchmark-instance-leftovers-04,20251222-leftovers,2025-12-22 15:09:24.606437,c4-standard-2,us-central1-a,305f3ff,OEMOF-economic-results-1-8760ts,scip-8.0.3,OEMOF-economic-results +OEMOF-economic-results,1-8760ts,gurobi,11.0.0,2023.0,ok,optimal,0.8442713109999431,329.924,19364184373.23463,,,0.2748401165008545,3600.0,benchmark-instance-leftovers-04,20251222-leftovers,2025-12-22 15:12:32.847902,c4-standard-2,us-central1-a,305f3ff,OEMOF-economic-results-1-8760ts,gurobi-11.0.0,OEMOF-economic-results +OEMOF-economic-results,1-8760ts,highs,1.6.0.dev0,2023.0,ok,optimal,0.8309892729998865,316.96,19364184373.23463,,,0.4178853034973144,3600.0,benchmark-instance-leftovers-04,20251222-leftovers,2025-12-22 15:15:56.892058,c4-standard-2,us-central1-a,305f3ff,OEMOF-economic-results-1-8760ts,highs-1.6.0.dev0,OEMOF-economic-results +OEMOF-economic-results,1-8760ts,scip,8.1.0,2023.0,ok,optimal,7.662641971000085,603.068,19364184373.23463,,,7.281217,3600.0,benchmark-instance-leftovers-04,20251222-leftovers,2025-12-22 15:15:58.827421,c4-standard-2,us-central1-a,305f3ff,OEMOF-economic-results-1-8760ts,scip-8.1.0,OEMOF-economic-results +OEMOF-economic-results,1-8760ts,cbc,2.10.11,2023.0,ok,optimal,4.755166635000023,452.632,19364184373.23457,,,4.15,3600.0,benchmark-instance-leftovers-04,20251222-leftovers,2025-12-22 15:16:07.675225,c4-standard-2,us-central1-a,305f3ff,OEMOF-economic-results-1-8760ts,cbc-2.10.11,OEMOF-economic-results +OEMOF-economic-results,1-8760ts,gurobi,12.0.0,2024.0,ok,optimal,0.87273391299982,307.5,19364184373.23463,0.0,0.0,0.2786650657653808,3600.0,benchmark-instance-leftovers-04,20251222-leftovers,2025-12-22 15:16:37.686341,c4-standard-2,us-central1-a,305f3ff,OEMOF-economic-results-1-8760ts,gurobi-12.0.0,OEMOF-economic-results +OEMOF-economic-results,1-8760ts,highs,1.9.0,2024.0,ok,optimal,0.8568469619999632,278.372,19364184373.23463,0.0,2.0656639398626988e-08,0.4219865798950195,3600.0,benchmark-instance-leftovers-04,20251222-leftovers,2025-12-22 15:20:01.749760,c4-standard-2,us-central1-a,305f3ff,OEMOF-economic-results-1-8760ts,highs-1.9.0,OEMOF-economic-results +OEMOF-economic-results,1-8760ts,scip,9.2.0,2024.0,ok,optimal,7.515914111000029,573.532,19364184373.23463,0.0,1.8054468288474717e-08,7.135079,3600.0,benchmark-instance-leftovers-04,20251222-leftovers,2025-12-22 15:20:03.579134,c4-standard-2,us-central1-a,305f3ff,OEMOF-economic-results-1-8760ts,scip-9.2.0,OEMOF-economic-results +OEMOF-economic-results,1-8760ts,cbc,2.10.12,2024.0,ok,optimal,5.140532159000031,452.068,19364184373.23457,0.0,0.0,4.07,3600.0,benchmark-instance-leftovers-04,20251222-leftovers,2025-12-22 15:20:12.135998,c4-standard-2,us-central1-a,305f3ff,OEMOF-economic-results-1-8760ts,cbc-2.10.12,OEMOF-economic-results +OEMOF-economic-results,1-8760ts,gurobi,13.0.0,2025.0,ok,optimal,0.8376174340000944,343.068,19364184373.234634,0.0,0.0,0.2677428722381592,3600.0,benchmark-instance-leftovers-04,20251222-leftovers,2025-12-22 15:20:43.716295,c4-standard-2,us-central1-a,305f3ff,OEMOF-economic-results-1-8760ts,gurobi-13.0.0,OEMOF-economic-results +OEMOF-economic-results,1-8760ts,highs,1.12.0,2025.0,ok,optimal,1.3957568380001248,326.424,19364184373.23463,0.0,2.0656639398626988e-08,0.9381773471832277,3600.0,benchmark-instance-leftovers-04,20251222-leftovers,2025-12-22 15:24:06.064815,c4-standard-2,us-central1-a,305f3ff,OEMOF-economic-results-1-8760ts,highs-1.12.0,OEMOF-economic-results +OEMOF-economic-results,1-8760ts,scip,10.0.0,2025.0,ok,optimal,7.536482174999946,609.8,19364184373.23463,0.0,1.8054468288474717e-08,7.133763,3600.0,benchmark-instance-leftovers-04,20251222-leftovers,2025-12-22 15:24:08.781102,c4-standard-2,us-central1-a,305f3ff,OEMOF-economic-results-1-8760ts,scip-10.0.0,OEMOF-economic-results +FINE-multi-regional-energy-system-workflow,8-8760ts,glpk,5.0,2020.0,ok,unknown,36.995772345000034,158.24,140.19331558,,,,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:01:48.507934,c4-standard-2,us-central1-a,305f3ff,FINE-multi-regional-energy-system-workflow-8-8760ts,glpk-5.0,FINE-multi-regional-energy-system-workflow +FINE-perfect-foresight,1-8760ts,glpk,5.0,2020.0,ok,optimal,3.3880888759999834,142.02,199.8870677,,,,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:05:43.610564,c4-standard-2,us-central1-a,305f3ff,FINE-perfect-foresight-1-8760ts,glpk-5.0,FINE-perfect-foresight +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29,73-1h,glpk,5.0,2020.0,ok,unknown,976.206880399,241.748,505951.5982,,,,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:05:47.451055,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29 +FINE-water-supply-system,12-8760ts,glpk,5.0,2020.0,ok,optimal,0.3386456119999366,129.524,11138.452576,,,,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:22:04.089529,c4-standard-2,us-central1-a,305f3ff,FINE-water-supply-system-12-8760ts,glpk-5.0,FINE-water-supply-system +FINE-multi-regional-energy-system-workflow,8-8760ts,gurobi,10.0.0,2022.0,ok,optimal,9.748057493000031,251.876,40.19540970100533,,,9.311718940734863,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:22:40.418367,c4-standard-2,us-central1-a,305f3ff,FINE-multi-regional-energy-system-workflow-8-8760ts,gurobi-10.0.0,FINE-multi-regional-energy-system-workflow +FINE-multi-regional-energy-system-workflow,8-8760ts,highs,1.5.0.dev0,2022.0,ok,optimal,16.31301934399994,397.124,40.1933155828726,,,16.127575159072876,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:26:16.247027,c4-standard-2,us-central1-a,305f3ff,FINE-multi-regional-energy-system-workflow-8-8760ts,highs-1.5.0.dev0,FINE-multi-regional-energy-system-workflow +FINE-multi-regional-energy-system-workflow,8-8760ts,scip,8.0.3,2022.0,ok,optimal,44.40654896299998,504.112,40.1933155828726,,,44.249228,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:26:33.286389,c4-standard-2,us-central1-a,305f3ff,FINE-multi-regional-energy-system-workflow-8-8760ts,scip-8.0.3,FINE-multi-regional-energy-system-workflow +FINE-perfect-foresight,1-8760ts,gurobi,10.0.0,2022.0,ok,optimal,1.352043662999904,203.176,99.88713847796323,,,1.2409820556640625,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:27:18.478321,c4-standard-2,us-central1-a,305f3ff,FINE-perfect-foresight-1-8760ts,gurobi-10.0.0,FINE-perfect-foresight +FINE-perfect-foresight,1-8760ts,highs,1.5.0.dev0,2022.0,ok,optimal,1.959251346999963,204.148,99.8870686467559,,,1.857034683227539,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:27:20.495449,c4-standard-2,us-central1-a,305f3ff,FINE-perfect-foresight-1-8760ts,highs-1.5.0.dev0,FINE-perfect-foresight +FINE-perfect-foresight,1-8760ts,scip,8.0.3,2022.0,ok,optimal,4.032671090000122,289.48,99.8870658266207,,,3.92527,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:27:23.110123,c4-standard-2,us-central1-a,305f3ff,FINE-perfect-foresight-1-8760ts,scip-8.0.3,FINE-perfect-foresight +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29,73-1h,gurobi,10.0.0,2022.0,ok,optimal,3.1043027709999933,199.48,505951.5981507519,,,3.0538837909698486,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:27:27.824290,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29,73-1h,highs,1.5.0.dev0,2022.0,ok,optimal,25.86433206200013,305.032,505951.5981472377,,,25.79325747489929,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:27:31.555843,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29,73-1h,scip,8.0.3,2022.0,ok,optimal,21.19946683000012,375.656,505951.5981513351,,,21.11142,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:27:58.046955,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29 +FINE-water-supply-system,12-8760ts,gurobi,10.0.0,2022.0,ok,optimal,0.3283072930000799,176.764,1138.4525756132873,,,0.3012609481811523,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:28:19.911585,c4-standard-2,us-central1-a,305f3ff,FINE-water-supply-system-12-8760ts,gurobi-10.0.0,FINE-water-supply-system +FINE-water-supply-system,12-8760ts,highs,1.5.0.dev0,2022.0,ok,optimal,0.3857703450000826,180.144,1138.452575608342,,,0.350536584854126,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:28:20.823118,c4-standard-2,us-central1-a,305f3ff,FINE-water-supply-system-12-8760ts,highs-1.5.0.dev0,FINE-water-supply-system +FINE-water-supply-system,12-8760ts,scip,8.0.3,2022.0,ok,optimal,0.901530320999882,240.0,1138.452575729948,,,0.8711139999999999,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:28:21.798725,c4-standard-2,us-central1-a,305f3ff,FINE-water-supply-system-12-8760ts,scip-8.0.3,FINE-water-supply-system +FINE-multi-regional-energy-system-workflow,8-8760ts,gurobi,11.0.0,2023.0,ok,optimal,7.568694158999733,263.2,40.19540906352307,,,7.202003002166748,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:31:21.895729,c4-standard-2,us-central1-a,305f3ff,FINE-multi-regional-energy-system-workflow-8-8760ts,gurobi-11.0.0,FINE-multi-regional-energy-system-workflow +FINE-multi-regional-energy-system-workflow,8-8760ts,highs,1.6.0.dev0,2023.0,ok,optimal,15.644906585000172,428.908,40.1933155828726,,,15.493412256240845,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:34:54.041789,c4-standard-2,us-central1-a,305f3ff,FINE-multi-regional-energy-system-workflow-8-8760ts,highs-1.6.0.dev0,FINE-multi-regional-energy-system-workflow +FINE-multi-regional-energy-system-workflow,8-8760ts,scip,8.1.0,2023.0,ok,optimal,43.9059565120001,504.204,40.1933155828726,,,43.764984,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:35:10.532220,c4-standard-2,us-central1-a,305f3ff,FINE-multi-regional-energy-system-workflow-8-8760ts,scip-8.1.0,FINE-multi-regional-energy-system-workflow +FINE-multi-regional-energy-system-workflow,8-8760ts,cbc,2.10.11,2023.0,ok,optimal,52.31200225900011,202.364,40.19331558,,,52.11,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:35:55.307814,c4-standard-2,us-central1-a,305f3ff,FINE-multi-regional-energy-system-workflow-8-8760ts,cbc-2.10.11,FINE-multi-regional-energy-system-workflow +FINE-perfect-foresight,1-8760ts,gurobi,11.0.0,2023.0,ok,optimal,1.291278799000338,207.22,99.88713245771685,,,0.9446971416473388,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:36:48.419283,c4-standard-2,us-central1-a,305f3ff,FINE-perfect-foresight-1-8760ts,gurobi-11.0.0,FINE-perfect-foresight +FINE-perfect-foresight,1-8760ts,highs,1.6.0.dev0,2023.0,ok,optimal,1.8713257610002076,210.944,99.8870686467559,,,1.7851157188415527,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:36:50.454194,c4-standard-2,us-central1-a,305f3ff,FINE-perfect-foresight-1-8760ts,highs-1.6.0.dev0,FINE-perfect-foresight +FINE-perfect-foresight,1-8760ts,scip,8.1.0,2023.0,ok,optimal,3.952285156000016,294.268,99.8870658266207,,,3.864387,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:36:53.057852,c4-standard-2,us-central1-a,305f3ff,FINE-perfect-foresight-1-8760ts,scip-8.1.0,FINE-perfect-foresight +FINE-perfect-foresight,1-8760ts,cbc,2.10.11,2023.0,ok,optimal,1.875743181999951,175.14,99.88706971,,,,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:36:57.788187,c4-standard-2,us-central1-a,305f3ff,FINE-perfect-foresight-1-8760ts,cbc-2.10.11,FINE-perfect-foresight +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29,73-1h,gurobi,11.0.0,2023.0,ok,optimal,2.8204569550002816,207.644,505951.5981228218,,,2.779921054840088,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:37:00.399798,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29,73-1h,highs,1.6.0.dev0,2023.0,ok,optimal,24.77559604299995,321.708,505951.5981472377,,,24.732335805892944,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:37:03.937252,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29,73-1h,scip,8.1.0,2023.0,ok,optimal,20.97747867099997,383.46,505951.5981513351,,,20.914131,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:37:29.442688,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29,73-1h,cbc,2.10.11,2023.0,ok,optimal,78.98357525600022,162.032,505951.59815044,,,78.92,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:37:51.168717,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29 +FINE-water-supply-system,12-8760ts,gurobi,11.0.0,2023.0,ok,optimal,0.1997832930001095,180.052,1138.4525756132873,,,0.1775488853454589,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:39:10.840667,c4-standard-2,us-central1-a,305f3ff,FINE-water-supply-system-12-8760ts,gurobi-11.0.0,FINE-water-supply-system +FINE-water-supply-system,12-8760ts,highs,1.6.0.dev0,2023.0,ok,optimal,0.3538136870001835,192.796,1138.452575608342,,,0.324855089187622,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:39:11.728097,c4-standard-2,us-central1-a,305f3ff,FINE-water-supply-system-12-8760ts,highs-1.6.0.dev0,FINE-water-supply-system +FINE-water-supply-system,12-8760ts,scip,8.1.0,2023.0,ok,optimal,0.8786511199996312,251.236,1138.452575729948,,,0.8481719999999999,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:39:12.766230,c4-standard-2,us-central1-a,305f3ff,FINE-water-supply-system-12-8760ts,scip-8.1.0,FINE-water-supply-system +FINE-water-supply-system,12-8760ts,cbc,2.10.11,2023.0,ok,optimal,1.0221706490001452,163.892,1138.45257613,,,0.98,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:39:14.346388,c4-standard-2,us-central1-a,305f3ff,FINE-water-supply-system-12-8760ts,cbc-2.10.11,FINE-water-supply-system +FINE-multi-regional-energy-system-workflow,8-8760ts,gurobi,12.0.0,2024.0,ok,optimal,6.628213255999981,262.844,40.19540970100534,0.0,5.506463957994454e-05,6.248203992843628,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:39:39.741510,c4-standard-2,us-central1-a,305f3ff,FINE-multi-regional-energy-system-workflow-8-8760ts,gurobi-12.0.0,FINE-multi-regional-energy-system-workflow +FINE-multi-regional-energy-system-workflow,8-8760ts,highs,1.9.0,2024.0,ok,optimal,22.488043581000056,435.448,40.1933155828726,1.1102230246251563e-16,9.23517636350491e-05,22.285516500473022,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:43:12.619476,c4-standard-2,us-central1-a,305f3ff,FINE-multi-regional-energy-system-workflow-8-8760ts,highs-1.9.0,FINE-multi-regional-energy-system-workflow +FINE-multi-regional-energy-system-workflow,8-8760ts,scip,9.2.0,2024.0,ok,optimal,46.30694265300008,490.364,40.1933155828726,1.9131363160340698e-12,0.0,46.167804,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:43:35.839248,c4-standard-2,us-central1-a,305f3ff,FINE-multi-regional-energy-system-workflow-8-8760ts,scip-9.2.0,FINE-multi-regional-energy-system-workflow +FINE-multi-regional-energy-system-workflow,8-8760ts,cbc,2.10.12,2024.0,ok,optimal,54.269682699999976,207.544,40.19331558,0.0,,53.88,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:44:22.881792,c4-standard-2,us-central1-a,305f3ff,FINE-multi-regional-energy-system-workflow-8-8760ts,cbc-2.10.12,FINE-multi-regional-energy-system-workflow +FINE-perfect-foresight,1-8760ts,gurobi,12.0.0,2024.0,ok,optimal,1.551140169000064,193.24,99.887168739017,,,1.2073209285736084,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:45:17.791200,c4-standard-2,us-central1-a,305f3ff,FINE-perfect-foresight-1-8760ts,gurobi-12.0.0,FINE-perfect-foresight +FINE-perfect-foresight,1-8760ts,highs,1.9.0,2024.0,ok,optimal,1.841829563000374,195.308,99.88707028133442,,,1.7357046604156494,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:45:19.927459,c4-standard-2,us-central1-a,305f3ff,FINE-perfect-foresight-1-8760ts,highs-1.9.0,FINE-perfect-foresight +FINE-perfect-foresight,1-8760ts,scip,9.2.0,2024.0,ok,optimal,3.9721118009997554,280.084,99.8870658266207,,,3.884632,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:45:22.340245,c4-standard-2,us-central1-a,305f3ff,FINE-perfect-foresight-1-8760ts,scip-9.2.0,FINE-perfect-foresight +FINE-perfect-foresight,1-8760ts,cbc,2.10.12,2024.0,ok,optimal,1.9576258749998487,173.82,99.88706971,,,,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:45:26.928776,c4-standard-2,us-central1-a,305f3ff,FINE-perfect-foresight-1-8760ts,cbc-2.10.12,FINE-perfect-foresight +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29,73-1h,gurobi,12.0.0,2024.0,ok,optimal,2.290707151999868,193.228,505951.598145951,0.0,0.0,2.249654054641724,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:45:29.465176,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29,73-1h,highs,1.9.0,2024.0,ok,optimal,27.283277636000093,338.364,505951.5981504367,4.2454928461665996e-13,6.97599070859914e-05,27.208946466445923,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:45:32.292765,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29,73-1h,scip,9.2.0,2024.0,ok,optimal,21.35765878700022,368.256,505951.5981513351,0.0,0.0,21.289028,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:46:00.125293,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29,73-1h,cbc,2.10.12,2024.0,ok,optimal,79.38959917300008,155.48,505951.59815044,0.0,,79.26,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:46:22.065348,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29 +FINE-water-supply-system,12-8760ts,gurobi,12.0.0,2024.0,ok,optimal,0.3409823399997549,170.32,1138.4525751894666,0.0,0.0,0.3193349838256836,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:47:41.971680,c4-standard-2,us-central1-a,305f3ff,FINE-water-supply-system-12-8760ts,gurobi-12.0.0,FINE-water-supply-system +FINE-water-supply-system,12-8760ts,highs,1.9.0,2024.0,ok,optimal,0.3557163650002621,173.0,1138.452575608342,0.0,0.0,0.3204832077026367,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:47:42.793956,c4-standard-2,us-central1-a,305f3ff,FINE-water-supply-system-12-8760ts,highs-1.9.0,FINE-water-supply-system +FINE-water-supply-system,12-8760ts,scip,9.2.0,2024.0,ok,optimal,0.9058792310001992,231.556,1138.452575729948,0.0,0.0,0.8733879999999999,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:47:43.640894,c4-standard-2,us-central1-a,305f3ff,FINE-water-supply-system-12-8760ts,scip-9.2.0,FINE-water-supply-system +FINE-water-supply-system,12-8760ts,cbc,2.10.12,2024.0,ok,optimal,1.0583968549999554,155.576,1138.45257613,0.0,,0.98,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:47:45.040548,c4-standard-2,us-central1-a,305f3ff,FINE-water-supply-system-12-8760ts,cbc-2.10.12,FINE-water-supply-system +FINE-multi-regional-energy-system-workflow,8-8760ts,gurobi,13.0.0,2025.0,ok,optimal,6.954697580999891,279.944,40.19540970100533,0.0,7.527131078936529e-05,6.5981810092926025,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:48:13.568304,c4-standard-2,us-central1-a,305f3ff,FINE-multi-regional-energy-system-workflow-8-8760ts,gurobi-13.0.0,FINE-multi-regional-energy-system-workflow +FINE-multi-regional-energy-system-workflow,8-8760ts,highs,1.12.0,2025.0,ok,optimal,23.756458361000117,484.524,40.193315582872586,1.3800072196090698e-13,9.233539252678332e-05,23.593135118484497,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:51:46.095928,c4-standard-2,us-central1-a,305f3ff,FINE-multi-regional-energy-system-workflow-8-8760ts,highs-1.12.0,FINE-multi-regional-energy-system-workflow +FINE-multi-regional-energy-system-workflow,8-8760ts,scip,10.0.0,2025.0,ok,optimal,43.96857233199989,517.3,40.1933155828726,1.9131363160340698e-12,0.0,43.81699,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:52:10.850942,c4-standard-2,us-central1-a,305f3ff,FINE-multi-regional-energy-system-workflow-8-8760ts,scip-10.0.0,FINE-multi-regional-energy-system-workflow +FINE-perfect-foresight,1-8760ts,gurobi,13.0.0,2025.0,ok,optimal,1.546830067999963,220.6,99.887168739017,,,1.457902908325195,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:52:55.702342,c4-standard-2,us-central1-a,305f3ff,FINE-perfect-foresight-1-8760ts,gurobi-13.0.0,FINE-perfect-foresight +FINE-perfect-foresight,1-8760ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,2.4566897690001497,163.312,99.887064263,,,2.4566897690001497,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:52:58.017413,c4-standard-2,us-central1-a,305f3ff,FINE-perfect-foresight-1-8760ts,highs-hipo-1.12.0-hipo,FINE-perfect-foresight +FINE-perfect-foresight,1-8760ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,1.318090495999968,163.224,99.887064263,,,1.318090495999968,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:53:01.151944,c4-standard-2,us-central1-a,305f3ff,FINE-perfect-foresight-1-8760ts,highs-ipx-1.12.0-hipo,FINE-perfect-foresight +FINE-perfect-foresight,1-8760ts,highs,1.12.0,2025.0,ok,optimal,1.797280550999858,221.392,99.88707028133445,,,1.7059063911437988,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:53:03.159234,c4-standard-2,us-central1-a,305f3ff,FINE-perfect-foresight-1-8760ts,highs-1.12.0,FINE-perfect-foresight +FINE-perfect-foresight,1-8760ts,scip,10.0.0,2025.0,ok,optimal,3.926495377000265,307.696,99.8870658266207,,,3.838008,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:53:05.685818,c4-standard-2,us-central1-a,305f3ff,FINE-perfect-foresight-1-8760ts,scip-10.0.0,FINE-perfect-foresight +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29,73-1h,gurobi,13.0.0,2025.0,ok,optimal,2.88500410000006,223.092,505951.5981459508,0.0,0.0,2.8444809913635254,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:53:10.385748,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29,73-1h,highs,1.12.0,2025.0,ok,optimal,34.94307011799992,362.988,505951.5981504553,1.8800534029235814e-14,0.0,34.89301061630249,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:53:14.000316,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29,73-1h,scip,10.0.0,2025.0,ok,optimal,20.42654338700004,396.804,505951.5981513351,0.0,0.0,20.358534,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:53:49.657881,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon12_Day29 +FINE-water-supply-system,12-8760ts,gurobi,13.0.0,2025.0,ok,optimal,0.3511550930002158,197.192,1138.4525751894666,0.0,0.0,0.3293659687042236,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:54:10.828871,c4-standard-2,us-central1-a,305f3ff,FINE-water-supply-system-12-8760ts,gurobi-13.0.0,FINE-water-supply-system +FINE-water-supply-system,12-8760ts,highs,1.12.0,2025.0,ok,optimal,0.384659061000093,197.668,1138.452575608342,0.0,0.0,0.3532154560089111,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:54:11.869992,c4-standard-2,us-central1-a,305f3ff,FINE-water-supply-system-12-8760ts,highs-1.12.0,FINE-water-supply-system +FINE-water-supply-system,12-8760ts,scip,10.0.0,2025.0,ok,optimal,0.8657060360001196,261.524,1138.452575729948,0.0,0.0,0.830561,3600.0,benchmark-instance-leftovers-09,20251222-leftovers,2025-12-22 15:54:12.938556,c4-standard-2,us-central1-a,305f3ff,FINE-water-supply-system-12-8760ts,scip-10.0.0,FINE-water-supply-system +FINE-district-optimization,14-8760ts,glpk,5.0,2020.0,ok,optimal,10.558266930999991,149.248,1132937.1437,,,,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 15:02:07.543140,c4-standard-2,us-central1-a,305f3ff,FINE-district-optimization-14-8760ts,glpk-5.0,FINE-district-optimization +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,129.652,,,,3600.0,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 15:06:11.411167,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,126.82,,,,3600.0,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 16:09:51.495834,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29 +SWITCH-carbon-cap,3-6ts,glpk,5.0,2020.0,ER,,,125.276,,,,,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 17:13:29.971856,c4-standard-2,us-central1-a,305f3ff,SWITCH-carbon-cap-3-6ts,glpk-5.0,SWITCH-carbon-cap +FINE-district-optimization,14-8760ts,gurobi,10.0.0,2022.0,ok,optimal,3.6802890630006,227.356,132937.14363065374,,,3.2485899925231934,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 17:14:10.943158,c4-standard-2,us-central1-a,305f3ff,FINE-district-optimization-14-8760ts,gurobi-10.0.0,FINE-district-optimization +FINE-district-optimization,14-8760ts,highs,1.5.0.dev0,2022.0,ok,optimal,12.029417857000226,336.328,132937.14369594064,,,11.863378286361694,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 17:17:54.187286,c4-standard-2,us-central1-a,305f3ff,FINE-district-optimization-14-8760ts,highs-1.5.0.dev0,FINE-district-optimization +FINE-district-optimization,14-8760ts,scip,8.0.3,2022.0,ok,optimal,31.05419436899865,475.204,132947.56354267383,,,30.911067,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 17:18:07.002699,c4-standard-2,us-central1-a,305f3ff,FINE-district-optimization-14-8760ts,scip-8.0.3,FINE-district-optimization +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332,73-1h,gurobi,10.0.0,2022.0,ok,optimal,740.6143168460003,385.284,880819.4497931139,,,740.5356497764587,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 17:18:38.873599,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332,73-1h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1458.888,,,,3600.0,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 17:31:00.200956,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332,73-1h,scip,8.0.3,2022.0,TO,Timeout,3600.0,1408.548,,,,3600.0,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 18:34:39.848246,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29,73-1h,gurobi,10.0.0,2022.0,ok,optimal,6.755541031001485,198.672,316796.6181523674,,,6.42007303237915,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 19:38:24.557619,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29,73-1h,highs,1.5.0.dev0,2022.0,ok,optimal,133.93545417199857,409.052,316796.61815236736,,,133.86872601509094,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 19:38:32.013554,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29,73-1h,scip,8.0.3,2022.0,ok,optimal,66.8920900819976,379.484,316796.61815106845,,,66.807427,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 19:40:46.646128,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29 +SWITCH-carbon-cap,3-6ts,gurobi,10.0.0,2022.0,ok,optimal,0.0129719229989859,154.228,139541670.1290208,,,0.0029959678649902,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 19:41:54.279841,c4-standard-2,us-central1-a,305f3ff,SWITCH-carbon-cap-3-6ts,gurobi-10.0.0,SWITCH-carbon-cap +SWITCH-carbon-cap,3-6ts,highs,1.5.0.dev0,2022.0,ok,optimal,0.0104444739990867,148.092,139541670.12902087,,,0.0029354095458984,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 19:41:54.925507,c4-standard-2,us-central1-a,305f3ff,SWITCH-carbon-cap-3-6ts,highs-1.5.0.dev0,SWITCH-carbon-cap +SWITCH-carbon-cap,3-6ts,scip,8.0.3,2022.0,ok,optimal,0.0167902569992293,161.612,139541670.12902087,,,0.00838,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 19:41:55.573717,c4-standard-2,us-central1-a,305f3ff,SWITCH-carbon-cap-3-6ts,scip-8.0.3,SWITCH-carbon-cap +FINE-district-optimization,14-8760ts,gurobi,11.0.0,2023.0,ok,optimal,2.581755520997831,224.328,132937.14369594064,,,2.205467939376831,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 19:45:33.192344,c4-standard-2,us-central1-a,305f3ff,FINE-district-optimization-14-8760ts,gurobi-11.0.0,FINE-district-optimization +FINE-district-optimization,14-8760ts,highs,1.6.0.dev0,2023.0,ok,optimal,11.892306724002992,364.592,132937.14369594064,,,11.748447895050049,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 19:49:44.692441,c4-standard-2,us-central1-a,305f3ff,FINE-district-optimization-14-8760ts,highs-1.6.0.dev0,FINE-district-optimization +FINE-district-optimization,14-8760ts,scip,8.1.0,2023.0,ok,optimal,31.97557374399912,489.516,132947.56354267383,,,31.844056,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 19:49:57.513170,c4-standard-2,us-central1-a,305f3ff,FINE-district-optimization-14-8760ts,scip-8.1.0,FINE-district-optimization +FINE-district-optimization,14-8760ts,cbc,2.10.11,2023.0,ok,optimal,15.770753949000207,187.76,132937.14369594,,,15.58,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 19:50:30.467542,c4-standard-2,us-central1-a,305f3ff,FINE-district-optimization-14-8760ts,cbc-2.10.11,FINE-district-optimization +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332,73-1h,gurobi,11.0.0,2023.0,ok,optimal,626.0841064319975,365.356,880819.4497931139,,,625.7836918830872,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 19:50:47.170648,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332,73-1h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,1484.992,,,,3600.0,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 20:01:14.113208,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332,73-1h,scip,8.1.0,2023.0,TO,Timeout,3600.0,1421.196,,,,3600.0,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 21:04:47.198991,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332,73-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,160.944,,,,3600.0,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 22:08:26.839944,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29,73-1h,gurobi,11.0.0,2023.0,ok,optimal,4.668889606000448,204.288,316796.6181523674,,,4.372952938079834,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 23:12:03.894540,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29,73-1h,highs,1.6.0.dev0,2023.0,ok,optimal,123.8990668519982,422.632,316796.61815236736,,,123.85945892333984,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 23:12:09.340724,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29,73-1h,scip,8.1.0,2023.0,ok,optimal,63.35990345299797,383.672,316796.61815106845,,,63.300836,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 23:14:14.004100,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29,73-1h,cbc,2.10.11,2023.0,ok,optimal,2089.0778588609974,187.428,316796.61815237,,,2089.02,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 23:15:18.160508,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29 +SWITCH-carbon-cap,3-6ts,gurobi,11.0.0,2023.0,ok,optimal,0.2836662080007954,167.096,139541670.1290208,,,0.0028631687164306,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 23:50:08.006038,c4-standard-2,us-central1-a,305f3ff,SWITCH-carbon-cap-3-6ts,gurobi-11.0.0,SWITCH-carbon-cap +SWITCH-carbon-cap,3-6ts,highs,1.6.0.dev0,2023.0,ok,optimal,0.0097643160006555,159.064,139541670.12902087,,,0.0028324127197265,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 23:50:09.055077,c4-standard-2,us-central1-a,305f3ff,SWITCH-carbon-cap-3-6ts,highs-1.6.0.dev0,SWITCH-carbon-cap +SWITCH-carbon-cap,3-6ts,scip,8.1.0,2023.0,ok,optimal,0.01612243999989,171.688,139541670.12902087,,,0.008164,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 23:50:09.823922,c4-standard-2,us-central1-a,305f3ff,SWITCH-carbon-cap-3-6ts,scip-8.1.0,SWITCH-carbon-cap +SWITCH-carbon-cap,3-6ts,cbc,2.10.11,2023.0,ok,optimal,0.0241221790020063,157.032,139541670.12902078,,,,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 23:50:10.601826,c4-standard-2,us-central1-a,305f3ff,SWITCH-carbon-cap-3-6ts,cbc-2.10.11,SWITCH-carbon-cap +FINE-district-optimization,14-8760ts,gurobi,12.0.0,2024.0,ok,optimal,2.3496010689996183,207.508,132937.14369594067,0.0,6.057195754904215e-05,2.0050570964813232,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 23:50:40.006083,c4-standard-2,us-central1-a,305f3ff,FINE-district-optimization-14-8760ts,gurobi-12.0.0,FINE-district-optimization +FINE-district-optimization,14-8760ts,highs,1.9.0,2024.0,ok,optimal,13.40098460399895,336.168,132937.14369594064,8.881784197001252e-16,0.0,13.23375415802002,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 23:54:23.415174,c4-standard-2,us-central1-a,305f3ff,FINE-district-optimization-14-8760ts,highs-1.9.0,FINE-district-optimization +FINE-district-optimization,14-8760ts,scip,9.2.0,2024.0,ok,optimal,30.016660941000737,472.824,132947.56354267383,2.1094237467877974e-15,7.838175579445825e-05,29.894517,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 23:54:37.557552,c4-standard-2,us-central1-a,305f3ff,FINE-district-optimization-14-8760ts,scip-9.2.0,FINE-district-optimization +FINE-district-optimization,14-8760ts,cbc,2.10.12,2024.0,ok,optimal,14.904547177000495,194.008,132937.14369594,0.0,,14.57,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 23:55:08.288974,c4-standard-2,us-central1-a,305f3ff,FINE-district-optimization-14-8760ts,cbc-2.10.12,FINE-district-optimization +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332,73-1h,gurobi,12.0.0,2024.0,ok,optimal,770.9342564990002,377.684,880819.4497931139,0.0,9.990037780361144e-05,770.8689830303192,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-22 23:55:23.864454,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332,73-1h,highs,1.9.0,2024.0,TO,Timeout,3600.0,1078.14,,,,3600.0,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-23 00:08:15.440991,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332,73-1h,scip,9.2.0,2024.0,TO,Timeout,3600.0,1397.084,,,,3600.0,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-23 01:11:48.996366,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332,73-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,143.776,,,,3600.0,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-23 02:15:42.045134,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29,73-1h,gurobi,12.0.0,2024.0,ok,optimal,8.51019417099451,193.74,316796.61815236736,0.0,0.0,8.216497898101807,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-23 03:19:33.837530,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29,73-1h,highs,1.9.0,2024.0,ok,optimal,100.6813178559969,362.968,316796.6181523674,2.4424906541753444e-15,9.671676484695506e-05,100.60772514343262,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-23 03:19:42.970942,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29,73-1h,scip,9.2.0,2024.0,ok,optimal,67.59667384799832,374.564,316796.61815106845,4.1317558491362585e-17,0.0,67.534366,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-23 03:21:24.264709,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29,73-1h,cbc,2.10.12,2024.0,ok,optimal,2201.651236159996,186.868,316796.61815237,0.0,,2201.52,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-23 03:22:32.520224,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29 +SWITCH-carbon-cap,3-6ts,gurobi,12.0.0,2024.0,ok,optimal,0.2465667430005851,151.132,139541670.1290208,,,0.0028400421142578,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-23 03:59:14.776662,c4-standard-2,us-central1-a,305f3ff,SWITCH-carbon-cap-3-6ts,gurobi-12.0.0,SWITCH-carbon-cap +SWITCH-carbon-cap,3-6ts,highs,1.9.0,2024.0,ok,optimal,0.0110424329977831,141.444,139541670.12902087,,,0.0030479431152343,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-23 03:59:15.574728,c4-standard-2,us-central1-a,305f3ff,SWITCH-carbon-cap-3-6ts,highs-1.9.0,SWITCH-carbon-cap +SWITCH-carbon-cap,3-6ts,scip,9.2.0,2024.0,ok,optimal,0.0164509949972853,155.484,139541670.12902087,,,0.0084029999999999,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-23 03:59:16.126676,c4-standard-2,us-central1-a,305f3ff,SWITCH-carbon-cap-3-6ts,scip-9.2.0,SWITCH-carbon-cap +SWITCH-carbon-cap,3-6ts,cbc,2.10.12,2024.0,ok,optimal,0.0302586480029276,141.716,139541670.12902078,,,,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-23 03:59:16.678921,c4-standard-2,us-central1-a,305f3ff,SWITCH-carbon-cap-3-6ts,cbc-2.10.12,SWITCH-carbon-cap +FINE-district-optimization,14-8760ts,gurobi,13.0.0,2025.0,ok,optimal,2.807473652996123,234.536,132937.14369594064,0.0,5.664160127511392e-05,2.452104091644287,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-23 03:59:48.361741,c4-standard-2,us-central1-a,305f3ff,FINE-district-optimization-14-8760ts,gurobi-13.0.0,FINE-district-optimization +FINE-district-optimization,14-8760ts,highs,1.12.0,2025.0,ok,optimal,24.993563003001327,401.9,132937.14369594064,0.0,0.0,24.85241150856018,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-23 04:03:45.010516,c4-standard-2,us-central1-a,305f3ff,FINE-district-optimization-14-8760ts,highs-1.12.0,FINE-district-optimization +FINE-district-optimization,14-8760ts,scip,10.0.0,2025.0,ok,optimal,31.74599000699527,501.116,132947.56354267383,2.1094237467877974e-15,7.838175579445825e-05,31.610309,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-23 04:04:10.945438,c4-standard-2,us-central1-a,305f3ff,FINE-district-optimization-14-8760ts,scip-10.0.0,FINE-district-optimization +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332,73-1h,gurobi,13.0.0,2025.0,ok,optimal,716.7911370379952,396.42,880819.4497931139,0.0,9.993490936650664e-05,716.7210171222687,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-23 04:04:43.667936,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332,73-1h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1180.824,,,,3600.0,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-23 04:16:41.336606,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332,73-1h,scip,10.0.0,2025.0,TO,Timeout,3600.0,1461.54,,,,3600.0,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-23 05:20:24.904716,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon24_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29,73-1h,gurobi,13.0.0,2025.0,ok,optimal,3.225680776995432,219.824,316796.6181523674,0.0,3.6747652959774774e-16,2.9421749114990234,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-23 06:23:48.775039,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29,73-1h,highs,1.12.0,2025.0,ok,optimal,104.1184391880015,479.56,316796.61815236736,1.9877776843889705e-14,8.996339594856038e-05,104.07609176635742,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-23 06:23:52.755903,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29,73-1h,scip,10.0.0,2025.0,ok,optimal,59.93540175299859,394.752,316796.61815106845,4.1317558491362585e-17,0.0,59.875909,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-23 06:25:37.624953,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day29 +SWITCH-carbon-cap,3-6ts,gurobi,13.0.0,2025.0,ok,optimal,0.0097158320058952,174.98,139541670.1290208,,,0.0022289752960205,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-23 06:26:38.350390,c4-standard-2,us-central1-a,305f3ff,SWITCH-carbon-cap-3-6ts,gurobi-13.0.0,SWITCH-carbon-cap +SWITCH-carbon-cap,3-6ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,0.0999502359991311,163.62,139541670.13,,,0.0999502359991311,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-23 06:26:39.091542,c4-standard-2,us-central1-a,305f3ff,SWITCH-carbon-cap-3-6ts,highs-hipo-1.12.0-hipo,SWITCH-carbon-cap +SWITCH-carbon-cap,3-6ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,0.0215996020051534,164.216,139541670.16,,,0.0215996020051534,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-23 06:26:39.894324,c4-standard-2,us-central1-a,305f3ff,SWITCH-carbon-cap-3-6ts,highs-ipx-1.12.0-hipo,SWITCH-carbon-cap +SWITCH-carbon-cap,3-6ts,highs,1.12.0,2025.0,ok,optimal,0.0103691559997969,168.812,139541670.1290208,,,0.0029704570770263,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-23 06:26:40.602252,c4-standard-2,us-central1-a,305f3ff,SWITCH-carbon-cap-3-6ts,highs-1.12.0,SWITCH-carbon-cap +SWITCH-carbon-cap,3-6ts,scip,10.0.0,2025.0,ok,optimal,0.0151734980026958,181.7,139541670.12902087,,,0.007186,3600.0,benchmark-instance-leftovers-10,20251222-leftovers,2025-12-23 06:26:41.319470,c4-standard-2,us-central1-a,305f3ff,SWITCH-carbon-cap-3-6ts,scip-10.0.0,SWITCH-carbon-cap +ethos-fine-energyland-full-timeseries,1-8760ts,glpk,5.0,2020.0,warning,unknown,0.1832155379999562,409.708,,,,,3600.0,benchmark-instance-leftovers-01,20251222-leftovers,2025-12-22 15:01:51.439354,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-full-timeseries-1-8760ts,glpk-5.0,ethos-fine-energyland-full-timeseries +ethos-fine-energyland-full-timeseries,1-8760ts,gurobi,10.0.0,2022.0,TO,Timeout,3600.0,625.992,,,,3600.0,3600.0,benchmark-instance-leftovers-01,20251222-leftovers,2025-12-22 15:06:06.787914,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-full-timeseries-1-8760ts,gurobi-10.0.0,ethos-fine-energyland-full-timeseries +ethos-fine-energyland-full-timeseries,1-8760ts,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1082.236,,,,3600.0,3600.0,benchmark-instance-leftovers-01,20251222-leftovers,2025-12-22 16:09:39.868529,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-full-timeseries-1-8760ts,highs-1.5.0.dev0,ethos-fine-energyland-full-timeseries +ethos-fine-energyland-full-timeseries,1-8760ts,scip,8.0.3,2022.0,TO,Timeout,3600.0,3519.788,,,,3600.0,3600.0,benchmark-instance-leftovers-01,20251222-leftovers,2025-12-22 17:13:12.185975,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-full-timeseries-1-8760ts,scip-8.0.3,ethos-fine-energyland-full-timeseries +ethos-fine-energyland-full-timeseries,1-8760ts,gurobi,11.0.0,2023.0,TO,Timeout,3600.0,637.14,,,,3600.0,3600.0,benchmark-instance-leftovers-01,20251222-leftovers,2025-12-22 18:20:03.766053,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-full-timeseries-1-8760ts,gurobi-11.0.0,ethos-fine-energyland-full-timeseries +ethos-fine-energyland-full-timeseries,1-8760ts,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,1042.472,,,,3600.0,3600.0,benchmark-instance-leftovers-01,20251222-leftovers,2025-12-22 19:23:37.057728,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-full-timeseries-1-8760ts,highs-1.6.0.dev0,ethos-fine-energyland-full-timeseries +ethos-fine-energyland-full-timeseries,1-8760ts,scip,8.1.0,2023.0,TO,Timeout,3600.0,3537.808,,,,3600.0,3600.0,benchmark-instance-leftovers-01,20251222-leftovers,2025-12-22 20:27:10.911544,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-full-timeseries-1-8760ts,scip-8.1.0,ethos-fine-energyland-full-timeseries +ethos-fine-energyland-full-timeseries,1-8760ts,cbc,2.10.11,2023.0,ok,optimal,2430.004431005,672.536,419125.8088459,,,,3600.0,benchmark-instance-leftovers-01,20251222-leftovers,2025-12-22 21:30:44.914955,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-full-timeseries-1-8760ts,cbc-2.10.11,ethos-fine-energyland-full-timeseries +ethos-fine-energyland-full-timeseries,1-8760ts,gurobi,12.0.0,2024.0,TO,Timeout,3600.0,638.4,,,,3600.0,3600.0,benchmark-instance-leftovers-01,20251222-leftovers,2025-12-22 22:11:45.851037,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-full-timeseries-1-8760ts,gurobi-12.0.0,ethos-fine-energyland-full-timeseries +ethos-fine-energyland-full-timeseries,1-8760ts,highs,1.9.0,2024.0,TO,Timeout,3600.0,1024.48,,,,3600.0,3600.0,benchmark-instance-leftovers-01,20251222-leftovers,2025-12-22 23:15:18.142749,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-full-timeseries-1-8760ts,highs-1.9.0,ethos-fine-energyland-full-timeseries +ethos-fine-energyland-full-timeseries,1-8760ts,scip,9.2.0,2024.0,TO,Timeout,3600.0,3518.06,,,,3600.0,3600.0,benchmark-instance-leftovers-01,20251222-leftovers,2025-12-23 00:18:50.482422,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-full-timeseries-1-8760ts,scip-9.2.0,ethos-fine-energyland-full-timeseries +ethos-fine-energyland-full-timeseries,1-8760ts,cbc,2.10.12,2024.0,ok,optimal,2473.122507863998,674.956,419125.8088459,,,,3600.0,benchmark-instance-leftovers-01,20251222-leftovers,2025-12-23 01:22:24.230287,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-full-timeseries-1-8760ts,cbc-2.10.12,ethos-fine-energyland-full-timeseries +ethos-fine-energyland-full-timeseries,1-8760ts,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,666.62,,,,3600.0,3600.0,benchmark-instance-leftovers-01,20251222-leftovers,2025-12-23 02:04:12.520064,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-full-timeseries-1-8760ts,gurobi-13.0.0,ethos-fine-energyland-full-timeseries +ethos-fine-energyland-full-timeseries,1-8760ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,1847.01850138,1414.248,419125.80902,,,1847.01850138,3600.0,benchmark-instance-leftovers-01,20251222-leftovers,2025-12-23 03:07:50.071152,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-full-timeseries-1-8760ts,highs-hipo-1.12.0-hipo,ethos-fine-energyland-full-timeseries +ethos-fine-energyland-full-timeseries,1-8760ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,1646.1628530519956,751.712,419125.80898,,,1646.1628530519956,3600.0,benchmark-instance-leftovers-01,20251222-leftovers,2025-12-23 03:38:37.852631,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-full-timeseries-1-8760ts,highs-ipx-1.12.0-hipo,ethos-fine-energyland-full-timeseries +ethos-fine-energyland-full-timeseries,1-8760ts,highs,1.12.0,2025.0,TO,Timeout,3600.0,1083.616,,,,3600.0,3600.0,benchmark-instance-leftovers-01,20251222-leftovers,2025-12-23 04:09:40.798214,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-full-timeseries-1-8760ts,highs-1.12.0,ethos-fine-energyland-full-timeseries +ethos-fine-energyland-full-timeseries,1-8760ts,scip,10.0.0,2025.0,TO,Timeout,3600.0,3492.412,,,,3600.0,3600.0,benchmark-instance-leftovers-01,20251222-leftovers,2025-12-23 05:13:14.720901,c4-standard-2,us-central1-a,305f3ff,ethos-fine-energyland-full-timeseries-1-8760ts,scip-10.0.0,ethos-fine-energyland-full-timeseries +ethos-fine-multi-regional-7tp-12seg,8-84ts,glpk,5.0,2020.0,warning,unknown,0.0111664899999937,138.892,,,,,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 15:02:07.728042,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-12seg-8-84ts,glpk-5.0,ethos-fine-multi-regional-7tp-12seg +FINE-1-node-energy-system-workflow,1-8760ts,glpk,5.0,2020.0,ok,optimal,0.8011371610000424,131.972,17.82077055,,,,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 15:05:34.065766,c4-standard-2,us-central1-a,305f3ff,FINE-1-node-energy-system-workflow-1-8760ts,glpk-5.0,FINE-1-node-energy-system-workflow +FINE-hydrogen-partload,1-168ts,glpk,5.0,2020.0,ok,optimal,0.2350406560000237,127.208,11444.372743,,,,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 15:05:35.325012,c4-standard-2,us-central1-a,305f3ff,FINE-hydrogen-partload-1-168ts,glpk-5.0,FINE-hydrogen-partload +ethos-fine-multi-regional-7tp-12seg,8-84ts,gurobi,10.0.0,2022.0,ok,optimal,349.96282271100006,342.464,53.25010145765235,,,349.4593849182129,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 15:06:11.553367,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-12seg-8-84ts,gurobi-10.0.0,ethos-fine-multi-regional-7tp-12seg +ethos-fine-multi-regional-7tp-12seg,8-84ts,highs,1.5.0.dev0,2022.0,ok,optimal,1580.8615006920002,626.34,53.25268126515963,,,1580.52761387825,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 15:15:31.990884,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-12seg-8-84ts,highs-1.5.0.dev0,ethos-fine-multi-regional-7tp-12seg +ethos-fine-multi-regional-7tp-12seg,8-84ts,scip,8.0.3,2022.0,TO,Timeout,3600.0,538.908,,,,3600.0,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 15:41:53.801788,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-12seg-8-84ts,scip-8.0.3,ethos-fine-multi-regional-7tp-12seg +FINE-1-node-energy-system-workflow,1-8760ts,gurobi,10.0.0,2022.0,ok,optimal,0.7736353000000236,176.724,7.820769964790924,,,0.425955057144165,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 16:45:22.120183,c4-standard-2,us-central1-a,305f3ff,FINE-1-node-energy-system-workflow-1-8760ts,gurobi-10.0.0,FINE-1-node-energy-system-workflow +FINE-1-node-energy-system-workflow,1-8760ts,highs,1.5.0.dev0,2022.0,ok,optimal,0.4606855020001603,170.424,7.820769901602278,,,0.4124083518981933,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 16:45:23.533065,c4-standard-2,us-central1-a,305f3ff,FINE-1-node-energy-system-workflow-1-8760ts,highs-1.5.0.dev0,FINE-1-node-energy-system-workflow +FINE-1-node-energy-system-workflow,1-8760ts,scip,8.0.3,2022.0,ok,optimal,1.4936424689994965,213.212,7.820770244687351,,,1.45181,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 16:45:24.626610,c4-standard-2,us-central1-a,305f3ff,FINE-1-node-energy-system-workflow-1-8760ts,scip-8.0.3,FINE-1-node-energy-system-workflow +FINE-hydrogen-partload,1-168ts,gurobi,10.0.0,2022.0,ok,optimal,0.1478468329996758,164.972,1444.3727050827322,,,0.1291768550872802,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 16:45:26.772474,c4-standard-2,us-central1-a,305f3ff,FINE-hydrogen-partload-1-168ts,gurobi-10.0.0,FINE-hydrogen-partload +FINE-hydrogen-partload,1-168ts,highs,1.5.0.dev0,2022.0,ok,optimal,1.301661437999428,179.368,1444.3835977501997,,,1.2796626091003418,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 16:45:27.515736,c4-standard-2,us-central1-a,305f3ff,FINE-hydrogen-partload-1-168ts,highs-1.5.0.dev0,FINE-hydrogen-partload +FINE-hydrogen-partload,1-168ts,scip,8.0.3,2022.0,ok,optimal,0.4365384849998008,200.94,1444.3846830744046,,,0.413489,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 16:45:29.428658,c4-standard-2,us-central1-a,305f3ff,FINE-hydrogen-partload-1-168ts,scip-8.0.3,FINE-hydrogen-partload +ethos-fine-multi-regional-7tp-12seg,8-84ts,gurobi,11.0.0,2023.0,ok,optimal,411.7170464880001,339.816,53.25010303109077,,,411.3402619361877,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 16:48:42.904506,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-12seg-8-84ts,gurobi-11.0.0,ethos-fine-multi-regional-7tp-12seg +ethos-fine-multi-regional-7tp-12seg,8-84ts,highs,1.6.0.dev0,2023.0,ok,optimal,1498.1798099460011,660.984,53.25268126515963,,,1497.9683039188385,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 16:59:01.818472,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-12seg-8-84ts,highs-1.6.0.dev0,ethos-fine-multi-regional-7tp-12seg +ethos-fine-multi-regional-7tp-12seg,8-84ts,scip,8.1.0,2023.0,TO,Timeout,3600.0,552.372,,,,3600.0,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 17:24:00.868021,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-12seg-8-84ts,scip-8.1.0,ethos-fine-multi-regional-7tp-12seg +ethos-fine-multi-regional-7tp-12seg,8-84ts,cbc,2.10.11,2023.0,TO,Timeout,3600.0,170.448,,,,3600.0,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 18:27:27.014081,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-12seg-8-84ts,cbc-2.10.11,ethos-fine-multi-regional-7tp-12seg +FINE-1-node-energy-system-workflow,1-8760ts,gurobi,11.0.0,2023.0,ok,optimal,0.7375672599991958,181.968,7.820769964790924,,,0.4514951705932617,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 19:30:53.931080,c4-standard-2,us-central1-a,305f3ff,FINE-1-node-energy-system-workflow-1-8760ts,gurobi-11.0.0,FINE-1-node-energy-system-workflow +FINE-1-node-energy-system-workflow,1-8760ts,highs,1.6.0.dev0,2023.0,ok,optimal,0.4511322950020258,179.412,7.820769901602278,,,0.4102227687835693,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 19:30:55.406140,c4-standard-2,us-central1-a,305f3ff,FINE-1-node-energy-system-workflow-1-8760ts,highs-1.6.0.dev0,FINE-1-node-energy-system-workflow +FINE-1-node-energy-system-workflow,1-8760ts,scip,8.1.0,2023.0,ok,optimal,1.4903787479997843,222.384,7.820770244687351,,,1.448744,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 19:30:56.581779,c4-standard-2,us-central1-a,305f3ff,FINE-1-node-energy-system-workflow-1-8760ts,scip-8.1.0,FINE-1-node-energy-system-workflow +FINE-1-node-energy-system-workflow,1-8760ts,cbc,2.10.11,2023.0,ok,optimal,0.8849771759996656,164.244,7.82077444,,,,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 19:30:58.828182,c4-standard-2,us-central1-a,305f3ff,FINE-1-node-energy-system-workflow-1-8760ts,cbc-2.10.11,FINE-1-node-energy-system-workflow +FINE-hydrogen-partload,1-168ts,gurobi,11.0.0,2023.0,ok,optimal,0.1340589680003177,172.956,1444.3846882976527,,,0.119762897491455,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 19:31:00.456038,c4-standard-2,us-central1-a,305f3ff,FINE-hydrogen-partload-1-168ts,gurobi-11.0.0,FINE-hydrogen-partload +FINE-hydrogen-partload,1-168ts,highs,1.6.0.dev0,2023.0,ok,optimal,1.2482092989994271,190.296,1444.3835977501997,,,1.2299814224243164,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 19:31:01.307035,c4-standard-2,us-central1-a,305f3ff,FINE-hydrogen-partload-1-168ts,highs-1.6.0.dev0,FINE-hydrogen-partload +FINE-hydrogen-partload,1-168ts,scip,8.1.0,2023.0,ok,optimal,0.4539345699995465,210.112,1444.3846830744046,,,0.4305609999999999,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 19:31:03.292142,c4-standard-2,us-central1-a,305f3ff,FINE-hydrogen-partload-1-168ts,scip-8.1.0,FINE-hydrogen-partload +FINE-hydrogen-partload,1-168ts,cbc,2.10.11,2023.0,ok,optimal,0.467886565002118,160.212,1444.37270174,,,0.43,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 19:31:04.481512,c4-standard-2,us-central1-a,305f3ff,FINE-hydrogen-partload-1-168ts,cbc-2.10.11,FINE-hydrogen-partload +ethos-fine-multi-regional-7tp-12seg,8-84ts,gurobi,12.0.0,2024.0,ok,optimal,371.059377444999,340.872,53.25009798158863,0.0,0.0,370.64214301109314,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 19:31:33.655963,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-12seg-8-84ts,gurobi-12.0.0,ethos-fine-multi-regional-7tp-12seg +ethos-fine-multi-regional-7tp-12seg,8-84ts,highs,1.9.0,2024.0,ok,optimal,1287.6745844949985,518.244,53.25009720219299,1.5543122344752194e-15,8.657178161620958e-05,1287.3030564785004,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 19:41:18.481182,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-12seg-8-84ts,highs-1.9.0,ethos-fine-multi-regional-7tp-12seg +ethos-fine-multi-regional-7tp-12seg,8-84ts,scip,9.2.0,2024.0,TO,Timeout,3600.0,531.732,,,,3600.0,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 20:02:47.060908,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-12seg-8-84ts,scip-9.2.0,ethos-fine-multi-regional-7tp-12seg +ethos-fine-multi-regional-7tp-12seg,8-84ts,cbc,2.10.12,2024.0,TO,Timeout,3600.0,153.18,,,,3600.0,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 21:06:14.933357,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-12seg-8-84ts,cbc-2.10.12,ethos-fine-multi-regional-7tp-12seg +FINE-1-node-energy-system-workflow,1-8760ts,gurobi,12.0.0,2024.0,ok,optimal,0.9079922669989172,166.072,7.820769869206643,,,0.5595879554748535,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 22:09:51.357397,c4-standard-2,us-central1-a,305f3ff,FINE-1-node-energy-system-workflow-1-8760ts,gurobi-12.0.0,FINE-1-node-energy-system-workflow +FINE-1-node-energy-system-workflow,1-8760ts,highs,1.9.0,2024.0,ok,optimal,0.5205113929987419,163.98,7.820769899216402,,,0.4691355228424072,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 22:09:52.830798,c4-standard-2,us-central1-a,305f3ff,FINE-1-node-energy-system-workflow-1-8760ts,highs-1.9.0,FINE-1-node-energy-system-workflow +FINE-1-node-energy-system-workflow,1-8760ts,scip,9.2.0,2024.0,ok,optimal,1.498238414998923,206.176,7.820770244687351,,,1.454192,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 22:09:53.900398,c4-standard-2,us-central1-a,305f3ff,FINE-1-node-energy-system-workflow-1-8760ts,scip-9.2.0,FINE-1-node-energy-system-workflow +FINE-1-node-energy-system-workflow,1-8760ts,cbc,2.10.12,2024.0,ok,optimal,0.9225683129989192,156.836,7.82077444,,,,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 22:09:55.966797,c4-standard-2,us-central1-a,305f3ff,FINE-1-node-energy-system-workflow-1-8760ts,cbc-2.10.12,FINE-1-node-energy-system-workflow +FINE-hydrogen-partload,1-168ts,gurobi,12.0.0,2024.0,ok,optimal,0.1503344949996972,158.184,1444.3846882976527,0.0,8.296517554498387e-06,0.1338741779327392,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 22:09:57.436276,c4-standard-2,us-central1-a,305f3ff,FINE-hydrogen-partload-1-168ts,gurobi-12.0.0,FINE-hydrogen-partload +FINE-hydrogen-partload,1-168ts,highs,1.9.0,2024.0,ok,optimal,1.4085346110005048,169.928,1444.3801161051751,0.0,0.0,1.3870353698730469,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 22:09:58.100395,c4-standard-2,us-central1-a,305f3ff,FINE-hydrogen-partload-1-168ts,highs-1.9.0,FINE-hydrogen-partload +FINE-hydrogen-partload,1-168ts,scip,9.2.0,2024.0,ok,optimal,0.4405076990005909,195.252,1444.3846830744046,0.0,8.295179601998324e-06,0.4167119999999999,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 22:10:00.028122,c4-standard-2,us-central1-a,305f3ff,FINE-hydrogen-partload-1-168ts,scip-9.2.0,FINE-hydrogen-partload +FINE-hydrogen-partload,1-168ts,cbc,2.10.12,2024.0,ok,optimal,0.4843141069977719,149.4,1444.37270174,0.0,,0.43,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 22:10:00.999477,c4-standard-2,us-central1-a,305f3ff,FINE-hydrogen-partload-1-168ts,cbc-2.10.12,FINE-hydrogen-partload +ethos-fine-multi-regional-7tp-12seg,8-84ts,gurobi,13.0.0,2025.0,ok,optimal,373.3001761429987,346.52,53.25010246772827,0.0,9.37099286142332e-05,372.87707781791687,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 22:10:31.228242,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-12seg-8-84ts,gurobi-13.0.0,ethos-fine-multi-regional-7tp-12seg +ethos-fine-multi-regional-7tp-12seg,8-84ts,highs,1.12.0,2025.0,ok,optimal,1214.569450228999,653.132,53.25009719363893,3.3306690738754696e-16,9.837132455104795e-05,1214.3251922130585,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 22:20:22.267367,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-12seg-8-84ts,highs-1.12.0,ethos-fine-multi-regional-7tp-12seg +ethos-fine-multi-regional-7tp-12seg,8-84ts,scip,10.0.0,2025.0,TO,Timeout,3600.0,564.62,,,,3600.0,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 22:40:38.101090,c4-standard-2,us-central1-a,305f3ff,ethos-fine-multi-regional-7tp-12seg-8-84ts,scip-10.0.0,ethos-fine-multi-regional-7tp-12seg +FINE-1-node-energy-system-workflow,1-8760ts,gurobi,13.0.0,2025.0,ok,optimal,0.8861302160003106,195.472,7.820769869206643,,,0.5633101463317871,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 23:44:17.701333,c4-standard-2,us-central1-a,305f3ff,FINE-1-node-energy-system-workflow-1-8760ts,gurobi-13.0.0,FINE-1-node-energy-system-workflow +FINE-1-node-energy-system-workflow,1-8760ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,1.0613190760013822,163.112,7.8207697488,,,1.0613190760013822,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 23:44:19.393941,c4-standard-2,us-central1-a,305f3ff,FINE-1-node-energy-system-workflow-1-8760ts,highs-hipo-1.12.0-hipo,FINE-1-node-energy-system-workflow +FINE-1-node-energy-system-workflow,1-8760ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,0.4615486939983384,163.516,7.8207697488,,,0.4615486939983384,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 23:44:21.228014,c4-standard-2,us-central1-a,305f3ff,FINE-1-node-energy-system-workflow-1-8760ts,highs-ipx-1.12.0-hipo,FINE-1-node-energy-system-workflow +FINE-1-node-energy-system-workflow,1-8760ts,highs,1.12.0,2025.0,ok,optimal,0.5382357509988651,189.984,7.820769899216402,,,0.4952831268310547,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 23:44:22.447932,c4-standard-2,us-central1-a,305f3ff,FINE-1-node-energy-system-workflow-1-8760ts,highs-1.12.0,FINE-1-node-energy-system-workflow +FINE-1-node-energy-system-workflow,1-8760ts,scip,10.0.0,2025.0,ok,optimal,1.54766951000056,231.916,7.820770244687351,,,1.50164,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 23:44:23.773760,c4-standard-2,us-central1-a,305f3ff,FINE-1-node-energy-system-workflow-1-8760ts,scip-10.0.0,FINE-1-node-energy-system-workflow +FINE-hydrogen-partload,1-168ts,gurobi,13.0.0,2025.0,ok,optimal,0.1366013170008955,184.464,1444.3846882976527,0.0,8.296517554498387e-06,0.1198689937591552,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 23:44:26.122842,c4-standard-2,us-central1-a,305f3ff,FINE-hydrogen-partload-1-168ts,gurobi-13.0.0,FINE-hydrogen-partload +FINE-hydrogen-partload,1-168ts,highs,1.12.0,2025.0,ok,optimal,1.8336192030001257,200.78,1444.3782847313232,2.220446049250313e-16,0.0,1.8143208026885984,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 23:44:27.037878,c4-standard-2,us-central1-a,305f3ff,FINE-hydrogen-partload-1-168ts,highs-1.12.0,FINE-hydrogen-partload +FINE-hydrogen-partload,1-168ts,scip,10.0.0,2025.0,ok,optimal,0.4527905210015888,221.652,1444.3846830744046,0.0,8.295179601998324e-06,0.4267439999999999,3600.0,benchmark-instance-leftovers-06,20251222-leftovers,2025-12-22 23:44:29.630709,c4-standard-2,us-central1-a,305f3ff,FINE-hydrogen-partload-1-168ts,scip-10.0.0,FINE-hydrogen-partload +pypsa-power+ely-ucgas,1-1h,glpk,5.0,2020.0,ok,optimal,136.61381072299997,251.6,84667526620.0,,,,3600.0,benchmark-instance-leftovers-03,20251222-leftovers,2025-12-22 15:02:00.514381,c4-standard-2,us-central1-a,305f3ff,pypsa-power+ely-ucgas-1-1h,glpk-5.0,pypsa-power+ely-ucgas +pypsa-power+ely-ucgas,1-1h,gurobi,10.0.0,2022.0,ok,optimal,17.658088105999923,424.292,84667526618.30763,,,16.801554918289185,3600.0,benchmark-instance-leftovers-03,20251222-leftovers,2025-12-22 15:08:42.146215,c4-standard-2,us-central1-a,305f3ff,pypsa-power+ely-ucgas-1-1h,gurobi-10.0.0,pypsa-power+ely-ucgas +pypsa-power+ely-ucgas,1-1h,highs,1.5.0.dev0,2022.0,ok,optimal,58.54836125500003,477.764,84667526618.3079,,,57.67913222312927,3600.0,benchmark-instance-leftovers-03,20251222-leftovers,2025-12-22 15:12:48.133115,c4-standard-2,us-central1-a,305f3ff,pypsa-power+ely-ucgas-1-1h,highs-1.5.0.dev0,pypsa-power+ely-ucgas +pypsa-power+ely-ucgas,1-1h,scip,8.0.3,2022.0,ok,optimal,59.30207876800012,894.908,84667526618.30788,,,58.383772,3600.0,benchmark-instance-leftovers-03,20251222-leftovers,2025-12-22 15:13:48.104588,c4-standard-2,us-central1-a,305f3ff,pypsa-power+ely-ucgas-1-1h,scip-8.0.3,pypsa-power+ely-ucgas +pypsa-power+ely-ucgas,1-1h,gurobi,11.0.0,2023.0,ok,optimal,18.137868182000147,430.672,84667526618.30762,,,17.385411977767944,3600.0,benchmark-instance-leftovers-03,20251222-leftovers,2025-12-22 15:18:16.700168,c4-standard-2,us-central1-a,305f3ff,pypsa-power+ely-ucgas-1-1h,gurobi-11.0.0,pypsa-power+ely-ucgas +pypsa-power+ely-ucgas,1-1h,highs,1.6.0.dev0,2023.0,ok,optimal,57.53939345699996,435.028,84667526618.3079,,,56.8264582157135,3600.0,benchmark-instance-leftovers-03,20251222-leftovers,2025-12-22 15:22:21.643501,c4-standard-2,us-central1-a,305f3ff,pypsa-power+ely-ucgas-1-1h,highs-1.6.0.dev0,pypsa-power+ely-ucgas +pypsa-power+ely-ucgas,1-1h,scip,8.1.0,2023.0,ok,optimal,58.567770324999856,899.436,84667526618.30788,,,57.802846,3600.0,benchmark-instance-leftovers-03,20251222-leftovers,2025-12-22 15:23:20.548733,c4-standard-2,us-central1-a,305f3ff,pypsa-power+ely-ucgas-1-1h,scip-8.1.0,pypsa-power+ely-ucgas +pypsa-power+ely-ucgas,1-1h,cbc,2.10.11,2023.0,ok,optimal,55.32660233299998,407.108,84667526618.3104,,,54.62,3600.0,benchmark-instance-leftovers-03,20251222-leftovers,2025-12-22 15:24:20.677691,c4-standard-2,us-central1-a,305f3ff,pypsa-power+ely-ucgas-1-1h,cbc-2.10.11,pypsa-power+ely-ucgas +pypsa-power+ely-ucgas,1-1h,gurobi,12.0.0,2024.0,ok,optimal,17.041209169000012,415.608,84667526618.30765,0.0,0.0,16.277580976486206,3600.0,benchmark-instance-leftovers-03,20251222-leftovers,2025-12-22 15:25:46.096685,c4-standard-2,us-central1-a,305f3ff,pypsa-power+ely-ucgas-1-1h,gurobi-12.0.0,pypsa-power+ely-ucgas +pypsa-power+ely-ucgas,1-1h,highs,1.9.0,2024.0,ok,optimal,58.622400879,490.932,84667526618.3079,0.0,0.0,57.71735835075378,3600.0,benchmark-instance-leftovers-03,20251222-leftovers,2025-12-22 15:29:50.452641,c4-standard-2,us-central1-a,305f3ff,pypsa-power+ely-ucgas-1-1h,highs-1.9.0,pypsa-power+ely-ucgas +pypsa-power+ely-ucgas,1-1h,scip,9.2.0,2024.0,ok,optimal,58.97081865200016,885.428,84667526618.30788,0.0,0.0,58.208427,3600.0,benchmark-instance-leftovers-03,20251222-leftovers,2025-12-22 15:30:50.551683,c4-standard-2,us-central1-a,305f3ff,pypsa-power+ely-ucgas-1-1h,scip-9.2.0,pypsa-power+ely-ucgas +pypsa-power+ely-ucgas,1-1h,cbc,2.10.12,2024.0,ok,optimal,56.44511963600007,406.316,84667526618.3104,0.0,,54.87,3600.0,benchmark-instance-leftovers-03,20251222-leftovers,2025-12-22 15:31:51.131999,c4-standard-2,us-central1-a,305f3ff,pypsa-power+ely-ucgas-1-1h,cbc-2.10.12,pypsa-power+ely-ucgas +pypsa-power+ely-ucgas,1-1h,gurobi,13.0.0,2025.0,ok,optimal,16.990900229999625,446.276,84667526618.30762,0.0,0.0,16.269125938415527,3600.0,benchmark-instance-leftovers-03,20251222-leftovers,2025-12-22 15:33:17.418483,c4-standard-2,us-central1-a,305f3ff,pypsa-power+ely-ucgas-1-1h,gurobi-13.0.0,pypsa-power+ely-ucgas +pypsa-power+ely-ucgas,1-1h,highs,1.12.0,2025.0,ok,optimal,67.11014031100012,410.8,84667526618.30788,0.0,0.0,66.35568046569824,3600.0,benchmark-instance-leftovers-03,20251222-leftovers,2025-12-22 15:37:24.364917,c4-standard-2,us-central1-a,305f3ff,pypsa-power+ely-ucgas-1-1h,highs-1.12.0,pypsa-power+ely-ucgas +pypsa-power+ely-ucgas,1-1h,scip,10.0.0,2025.0,ok,optimal,59.252943469,908.52,84667526618.30788,0.0,0.0,58.457557,3600.0,benchmark-instance-leftovers-03,20251222-leftovers,2025-12-22 15:38:33.130123,c4-standard-2,us-central1-a,305f3ff,pypsa-power+ely-ucgas-1-1h,scip-10.0.0,pypsa-power+ely-ucgas +pypsa-de-elec-trex_copt,10-3h,glpk,5.0,2020.0,TO,Timeout,3600.0,415.208,,,,3600.0,3600.0,benchmark-instance-new-pypsa-26,20251227-new-pypsa,2025-12-27 07:45:05.410904,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-10-3h,glpk-5.0,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,10-3h,gurobi,10.0.0,2022.0,ok,optimal,1578.3349137639998,2113.288,7543499216.323404,,,1570.544261932373,3600.0,benchmark-instance-new-pypsa-26,20251227-new-pypsa,2025-12-27 08:49:27.714187,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-10-3h,gurobi-10.0.0,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,10-3h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1711.748,,,,3600.0,3600.0,benchmark-instance-new-pypsa-26,20251227-new-pypsa,2025-12-27 09:19:36.828055,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-10-3h,highs-1.5.0.dev0,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,10-3h,scip,8.0.3,2022.0,TO,Timeout,3600.0,5839.256,,,,3600.0,3600.0,benchmark-instance-new-pypsa-26,20251227-new-pypsa,2025-12-27 10:23:19.234689,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-10-3h,scip-8.0.3,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,10-3h,gurobi,11.0.0,2023.0,ok,optimal,650.531504984001,2038.78,7543499216.323317,,,644.1766800880432,3600.0,benchmark-instance-new-pypsa-26,20251227-new-pypsa,2025-12-27 11:30:21.088269,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-10-3h,gurobi-11.0.0,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,10-3h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,1513.292,,,,3600.0,3600.0,benchmark-instance-new-pypsa-26,20251227-new-pypsa,2025-12-27 11:44:51.628914,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-10-3h,highs-1.6.0.dev0,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,10-3h,scip,8.1.0,2023.0,TO,Timeout,3600.0,5860.856,,,,3600.0,3600.0,benchmark-instance-new-pypsa-26,20251227-new-pypsa,2025-12-27 12:48:38.484906,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-10-3h,scip-8.1.0,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,10-3h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,446.16,,,,3600.0,3600.0,benchmark-instance-new-pypsa-26,20251227-new-pypsa,2025-12-27 13:52:24.839236,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-10-3h,cbc-2.10.11,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,10-3h,gurobi,12.0.0,2024.0,ok,optimal,1079.8776452460006,2033.6,7543499216.323313,,,1073.4799959659576,3600.0,benchmark-instance-new-pypsa-26,20251227-new-pypsa,2025-12-27 14:56:49.316422,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-10-3h,gurobi-12.0.0,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,10-3h,highs,1.9.0,2024.0,TO,Timeout,3600.0,1621.956,,,,3600.0,3600.0,benchmark-instance-new-pypsa-26,20251227-new-pypsa,2025-12-27 15:18:39.605867,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-10-3h,highs-1.9.0,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,10-3h,scip,9.2.0,2024.0,TO,Timeout,3600.0,5853.12,,,,3600.0,3600.0,benchmark-instance-new-pypsa-26,20251227-new-pypsa,2025-12-27 16:22:18.455200,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-10-3h,scip-9.2.0,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,10-3h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,428.8,,,,3600.0,3600.0,benchmark-instance-new-pypsa-26,20251227-new-pypsa,2025-12-27 17:25:57.149765,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-10-3h,cbc-2.10.12,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,10-3h,gurobi,13.0.0,2025.0,ok,optimal,1468.0149078190009,2055.46,7543499216.323244,,,1461.6444618701937,3600.0,benchmark-instance-new-pypsa-26,20251227-new-pypsa,2025-12-27 18:30:07.032844,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-10-3h,gurobi-13.0.0,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,10-3h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,548.6443839560015,1954.608,7543499216.3,,,548.6443839560015,3600.0,benchmark-instance-new-pypsa-26,20251227-new-pypsa,2025-12-27 18:58:22.250640,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-10-3h,highs-hipo-1.12.0-hipo,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,10-3h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,3600.0,163.496,,,,3600.0,3600.0,benchmark-instance-new-pypsa-26,20251227-new-pypsa,2025-12-27 19:07:31.640586,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-10-3h,highs-ipx-1.12.0-hipo,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,10-3h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1514.696,,,,3600.0,3600.0,benchmark-instance-new-pypsa-26,20251227-new-pypsa,2025-12-27 20:11:13.412395,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-10-3h,highs-1.12.0,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,10-3h,scip,10.0.0,2025.0,TO,Timeout,3600.0,5861.332,,,,3600.0,3600.0,benchmark-instance-new-pypsa-26,20251227-new-pypsa,2025-12-27 21:14:58.984216,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-10-3h,scip-10.0.0,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,50-3h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,1356.276,,,,86400.0,86400.0,benchmark-instance-new-pypsa-11,20251227-new-pypsa,2025-12-27 07:45:26.906360,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-50-3h,cbc-2.10.12,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,50-3h,gurobi,13.0.0,2025.0,ok,optimal,675.9127318770043,10640.628,7431209630.045691,,,650.7675561904907,86400.0,benchmark-instance-new-pypsa-11,20251227-new-pypsa,2025-12-28 07:49:24.946145,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-50-3h,gurobi-13.0.0,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,50-3h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,13170.412436850997,9264.268,7431209630.0,,,13170.412436850997,86400.0,benchmark-instance-new-pypsa-11,20251227-new-pypsa,2025-12-28 08:04:32.923451,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-50-3h,highs-hipo-1.12.0-hipo,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,50-3h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,86400.0,164.156,,,,86400.0,86400.0,benchmark-instance-new-pypsa-11,20251227-new-pypsa,2025-12-28 11:47:32.378779,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-50-3h,highs-ipx-1.12.0-hipo,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,50-3h,highs,1.12.0,2025.0,TO,Timeout,86400.0,5162.816,,,,86400.0,86400.0,benchmark-instance-new-pypsa-11,20251227-new-pypsa,2025-12-29 11:51:01.703890,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-50-3h,highs-1.12.0,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,50-3h,scip,10.0.0,2025.0,TO,Timeout,86400.0,23850.44,,,,86400.0,86400.0,benchmark-instance-new-pypsa-11,20251227-new-pypsa,2025-12-30 11:54:37.677267,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-50-3h,scip-10.0.0,pypsa-de-elec-trex_copt +pypsa-eur-elec,100-3h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,2974.948,,,,86400.0,86400.0,benchmark-instance-new-pypsa-00,20251227-new-pypsa,2025-12-27 07:45:21.662494,c4-highmem-16,us-central1-a,305f3ff,pypsa-eur-elec-100-3h,cbc-2.10.12,pypsa-eur-elec +pypsa-eur-elec,100-3h,gurobi,13.0.0,2025.0,ok,optimal,3154.032548642994,18764.776,34963383640.95888,,,3094.800269842148,86400.0,benchmark-instance-new-pypsa-00,20251227-new-pypsa,2025-12-28 07:49:30.972083,c4-highmem-16,us-central1-a,305f3ff,pypsa-eur-elec-100-3h,gurobi-13.0.0,pypsa-eur-elec +pypsa-eur-elec,100-3h,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,86400.0,162.968,,,,86400.0,86400.0,benchmark-instance-new-pypsa-00,20251227-new-pypsa,2025-12-28 08:46:37.997367,c4-highmem-16,us-central1-a,305f3ff,pypsa-eur-elec-100-3h,highs-hipo-1.12.0-hipo,pypsa-eur-elec +pypsa-eur-elec,100-3h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,86400.0,162.972,,,,86400.0,86400.0,benchmark-instance-new-pypsa-00,20251227-new-pypsa,2025-12-29 08:50:11.738076,c4-highmem-16,us-central1-a,305f3ff,pypsa-eur-elec-100-3h,highs-ipx-1.12.0-hipo,pypsa-eur-elec +pypsa-eur-elec,100-3h,highs,1.12.0,2025.0,error,internal_solver_error,17941.545273860043,11598.92,,,,17878.015210151672,86400.0,benchmark-instance-new-pypsa-00,20251227-new-pypsa,2025-12-30 08:53:55.833647,c4-highmem-16,us-central1-a,305f3ff,pypsa-eur-elec-100-3h,highs-1.12.0,pypsa-eur-elec +pypsa-eur-elec,100-3h,scip,10.0.0,2025.0,TO,Timeout,86400.0,47686.896,,,,86400.0,86400.0,benchmark-instance-new-pypsa-00,20251227-new-pypsa,2025-12-30 13:57:26.638202,c4-highmem-16,us-central1-a,305f3ff,pypsa-eur-elec-100-3h,scip-10.0.0,pypsa-eur-elec +pypsa-de-elec,10-1h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,1016.96,,,,86400.0,86400.0,benchmark-instance-new-pypsa-19,20251227-new-pypsa,2025-12-27 07:46:12.524018,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-10-1h,cbc-2.10.12,pypsa-de-elec +pypsa-de-elec,10-1h,gurobi,13.0.0,2025.0,ok,optimal,146.85964792799496,7031.5,5604866180.744831,,,128.30193495750427,86400.0,benchmark-instance-new-pypsa-19,20251227-new-pypsa,2025-12-28 07:50:21.335995,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-10-1h,gurobi-13.0.0,pypsa-de-elec +pypsa-de-elec,10-1h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,1998.0988146970049,4683.94,5604866180.9,,,1998.0988146970049,86400.0,benchmark-instance-new-pypsa-19,20251227-new-pypsa,2025-12-28 07:56:47.068407,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-10-1h,highs-hipo-1.12.0-hipo,pypsa-de-elec +pypsa-de-elec,10-1h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,14797.838572816996,3425.564,5604866180.8,,,14797.838572816996,86400.0,benchmark-instance-new-pypsa-19,20251227-new-pypsa,2025-12-28 08:30:05.933015,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-10-1h,highs-ipx-1.12.0-hipo,pypsa-de-elec +pypsa-de-elec,10-1h,highs,1.12.0,2025.0,ok,optimal,30500.32222700801,6201.432,5604866180.744875,,,30477.26105809212,86400.0,benchmark-instance-new-pypsa-19,20251227-new-pypsa,2025-12-28 12:40:33.574755,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-10-1h,highs-1.12.0,pypsa-de-elec +pypsa-de-elec,10-1h,scip,10.0.0,2025.0,TO,Timeout,86400.0,15054.288,,,,86400.0,86400.0,benchmark-instance-new-pypsa-19,20251227-new-pypsa,2025-12-28 21:12:40.946709,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-10-1h,scip-10.0.0,pypsa-de-elec +pypsa-de-elec-dfp,20-1h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,1749.396,,,,86400.0,86400.0,benchmark-instance-new-pypsa-05,20251227-new-pypsa,2025-12-27 07:46:33.211723,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-dfp-20-1h,cbc-2.10.12,pypsa-de-elec-dfp +pypsa-de-elec-dfp,20-1h,gurobi,13.0.0,2025.0,ok,optimal,481.7661000590015,11565.02,7693654587.63356,,,449.3641219139099,86400.0,benchmark-instance-new-pypsa-05,20251227-new-pypsa,2025-12-28 07:50:35.505766,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-dfp-20-1h,gurobi-13.0.0,pypsa-de-elec-dfp +pypsa-de-elec-dfp,20-1h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,5993.152001606999,9071.024,7693654587.7,,,5993.152001606999,86400.0,benchmark-instance-new-pypsa-05,20251227-new-pypsa,2025-12-28 08:02:38.182631,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-dfp-20-1h,highs-hipo-1.12.0-hipo,pypsa-de-elec-dfp +pypsa-de-elec-dfp,20-1h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,86400.0,163.168,,,,86400.0,86400.0,benchmark-instance-new-pypsa-05,20251227-new-pypsa,2025-12-28 09:46:02.342312,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-dfp-20-1h,highs-ipx-1.12.0-hipo,pypsa-de-elec-dfp +pypsa-de-elec-dfp,20-1h,highs,1.12.0,2025.0,TO,Timeout,86400.0,6312.924,,,,86400.0,86400.0,benchmark-instance-new-pypsa-05,20251227-new-pypsa,2025-12-29 09:49:31.856742,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-dfp-20-1h,highs-1.12.0,pypsa-de-elec-dfp +pypsa-de-elec-dfp,20-1h,scip,10.0.0,2025.0,TO,Timeout,86400.0,27778.832,,,,86400.0,86400.0,benchmark-instance-new-pypsa-05,20251227-new-pypsa,2025-12-30 09:53:17.224605,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-dfp-20-1h,scip-10.0.0,pypsa-de-elec-dfp +pypsa-de-elec-trex_vopt-dfp,10-1h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,1015.504,,,,86400.0,86400.0,benchmark-instance-new-pypsa-14,20251227-new-pypsa,2025-12-27 07:45:40.671272,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-dfp-10-1h,cbc-2.10.12,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,10-1h,gurobi,13.0.0,2025.0,ok,optimal,563.1006232509972,8196.304,7574726795.593382,,,544.1030659675598,86400.0,benchmark-instance-new-pypsa-14,20251227-new-pypsa,2025-12-28 07:49:57.173380,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-dfp-10-1h,gurobi-13.0.0,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,10-1h,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,86400.0,163.924,,,,86400.0,86400.0,benchmark-instance-new-pypsa-14,20251227-new-pypsa,2025-12-28 08:03:22.785365,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-dfp-10-1h,highs-hipo-1.12.0-hipo,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,10-1h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,86400.0,164.212,,,,86400.0,86400.0,benchmark-instance-new-pypsa-14,20251227-new-pypsa,2025-12-29 08:06:57.169918,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-dfp-10-1h,highs-ipx-1.12.0-hipo,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,10-1h,highs,1.12.0,2025.0,ok,optimal,85172.81605425701,6276.844,7574726795.593275,,,85152.41181516647,86400.0,benchmark-instance-new-pypsa-14,20251227-new-pypsa,2025-12-30 08:10:13.131133,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-dfp-10-1h,highs-1.12.0,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,10-1h,scip,10.0.0,2025.0,TO,Timeout,86400.0,17787.228,,,,86400.0,86400.0,benchmark-instance-new-pypsa-14,20251227-new-pypsa,2025-12-31 07:53:26.133642,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-dfp-10-1h,scip-10.0.0,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,10-3h,glpk,5.0,2020.0,TO,Timeout,3600.0,415.188,,,,3600.0,3600.0,benchmark-instance-new-pypsa-23,20251227-new-pypsa,2025-12-27 07:44:56.136774,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-dfp-10-3h,glpk-5.0,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,10-3h,gurobi,10.0.0,2022.0,ok,optimal,507.6285556969997,2099.56,7543487909.763189,,,499.89591693878174,3600.0,benchmark-instance-new-pypsa-23,20251227-new-pypsa,2025-12-27 08:49:09.315335,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-dfp-10-3h,gurobi-10.0.0,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,10-3h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1712.992,,,,3600.0,3600.0,benchmark-instance-new-pypsa-23,20251227-new-pypsa,2025-12-27 09:01:14.742654,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-dfp-10-3h,highs-1.5.0.dev0,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,10-3h,scip,8.0.3,2022.0,TO,Timeout,3600.0,5847.712,,,,3600.0,3600.0,benchmark-instance-new-pypsa-23,20251227-new-pypsa,2025-12-27 10:04:43.433618,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-dfp-10-3h,scip-8.0.3,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,10-3h,gurobi,11.0.0,2023.0,ok,optimal,731.3238123689989,2042.972,7543487909.763147,,,725.2651040554047,3600.0,benchmark-instance-new-pypsa-23,20251227-new-pypsa,2025-12-27 11:11:32.363717,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-dfp-10-3h,gurobi-11.0.0,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,10-3h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,1508.144,,,,3600.0,3600.0,benchmark-instance-new-pypsa-23,20251227-new-pypsa,2025-12-27 11:27:17.726196,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-dfp-10-3h,highs-1.6.0.dev0,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,10-3h,scip,8.1.0,2023.0,TO,Timeout,3600.0,5865.556,,,,3600.0,3600.0,benchmark-instance-new-pypsa-23,20251227-new-pypsa,2025-12-27 12:30:45.580290,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-dfp-10-3h,scip-8.1.0,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,10-3h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,445.924,,,,3600.0,3600.0,benchmark-instance-new-pypsa-23,20251227-new-pypsa,2025-12-27 13:34:17.106479,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-dfp-10-3h,cbc-2.10.11,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,10-3h,gurobi,12.0.0,2024.0,ok,optimal,908.7250072589997,2033.116,7543487909.763105,,,902.4691030979156,3600.0,benchmark-instance-new-pypsa-23,20251227-new-pypsa,2025-12-27 14:38:28.062909,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-dfp-10-3h,gurobi-12.0.0,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,10-3h,highs,1.9.0,2024.0,TO,Timeout,3600.0,1631.3,,,,3600.0,3600.0,benchmark-instance-new-pypsa-23,20251227-new-pypsa,2025-12-27 14:57:23.670024,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-dfp-10-3h,highs-1.9.0,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,10-3h,scip,9.2.0,2024.0,TO,Timeout,3600.0,5846.8,,,,3600.0,3600.0,benchmark-instance-new-pypsa-23,20251227-new-pypsa,2025-12-27 16:01:05.129114,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-dfp-10-3h,scip-9.2.0,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,10-3h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,428.636,,,,3600.0,3600.0,benchmark-instance-new-pypsa-23,20251227-new-pypsa,2025-12-27 17:04:38.155966,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-dfp-10-3h,cbc-2.10.12,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,10-3h,gurobi,13.0.0,2025.0,ok,optimal,1280.803704854996,2055.952,7543487909.763082,,,1274.4965119361875,3600.0,benchmark-instance-new-pypsa-23,20251227-new-pypsa,2025-12-27 18:08:43.628289,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-dfp-10-3h,gurobi-13.0.0,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,10-3h,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,3600.0,162.752,,,,3600.0,3600.0,benchmark-instance-new-pypsa-23,20251227-new-pypsa,2025-12-27 18:33:45.157959,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-dfp-10-3h,highs-hipo-1.12.0-hipo,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,10-3h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,3600.0,162.808,,,,3600.0,3600.0,benchmark-instance-new-pypsa-23,20251227-new-pypsa,2025-12-27 19:37:27.490860,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-dfp-10-3h,highs-ipx-1.12.0-hipo,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,10-3h,highs,1.12.0,2025.0,ok,optimal,3559.810454034996,2354.764,7543487909.763254,,,3552.3786487579346,3600.0,benchmark-instance-new-pypsa-23,20251227-new-pypsa,2025-12-27 20:41:14.663209,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-dfp-10-3h,highs-1.12.0,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,10-3h,scip,10.0.0,2025.0,TO,Timeout,3600.0,5870.456,,,,3600.0,3600.0,benchmark-instance-new-pypsa-23,20251227-new-pypsa,2025-12-27 21:44:15.710559,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-dfp-10-3h,scip-10.0.0,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec,50-3h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,1367.036,,,,86400.0,86400.0,benchmark-instance-new-pypsa-13,20251227-new-pypsa,2025-12-27 07:45:55.898415,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-50-3h,cbc-2.10.12,pypsa-de-elec +pypsa-de-elec,50-3h,gurobi,13.0.0,2025.0,ok,optimal,289.8933526289911,9681.38,5632464122.90567,,,263.9121310710907,86400.0,benchmark-instance-new-pypsa-13,20251227-new-pypsa,2025-12-28 07:50:01.064819,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-50-3h,gurobi-13.0.0,pypsa-de-elec +pypsa-de-elec,50-3h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,5500.474371075994,7989.896,5632464122.9,,,5500.474371075994,86400.0,benchmark-instance-new-pypsa-13,20251227-new-pypsa,2025-12-28 07:58:50.412664,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-50-3h,highs-hipo-1.12.0-hipo,pypsa-de-elec +pypsa-de-elec,50-3h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,48917.46950559699,4660.844,5632464122.9,,,48917.46950559699,86400.0,benchmark-instance-new-pypsa-13,20251227-new-pypsa,2025-12-28 09:34:14.580947,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-50-3h,highs-ipx-1.12.0-hipo,pypsa-de-elec +pypsa-de-elec,50-3h,highs,1.12.0,2025.0,TO,Timeout,86400.0,4817.456,,,,86400.0,86400.0,benchmark-instance-new-pypsa-13,20251227-new-pypsa,2025-12-28 23:13:18.533470,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-50-3h,highs-1.12.0,pypsa-de-elec +pypsa-de-elec,50-3h,scip,10.0.0,2025.0,TO,Timeout,86400.0,21400.888,,,,86400.0,86400.0,benchmark-instance-new-pypsa-13,20251227-new-pypsa,2025-12-29 23:17:08.626880,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-50-3h,scip-10.0.0,pypsa-de-elec +pypsa-de-elec-trex_vopt,10-3h,glpk,5.0,2020.0,TO,Timeout,3600.0,415.024,,,,3600.0,3600.0,benchmark-instance-new-pypsa-24,20251227-new-pypsa,2025-12-27 07:44:51.681031,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-10-3h,glpk-5.0,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,10-3h,gurobi,10.0.0,2022.0,ok,optimal,656.7600870309998,2101.708,7543468432.416399,,,648.7604160308838,3600.0,benchmark-instance-new-pypsa-24,20251227-new-pypsa,2025-12-27 08:49:14.886710,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-10-3h,gurobi-10.0.0,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,10-3h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1712.256,,,,3600.0,3600.0,benchmark-instance-new-pypsa-24,20251227-new-pypsa,2025-12-27 09:04:03.415714,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-10-3h,highs-1.5.0.dev0,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,10-3h,scip,8.0.3,2022.0,TO,Timeout,3600.0,5842.456,,,,3600.0,3600.0,benchmark-instance-new-pypsa-24,20251227-new-pypsa,2025-12-27 10:07:50.212419,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-10-3h,scip-8.0.3,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,10-3h,gurobi,11.0.0,2023.0,ok,optimal,1453.526282322,2046.424,7543468432.416323,,,1447.085666179657,3600.0,benchmark-instance-new-pypsa-24,20251227-new-pypsa,2025-12-27 11:15:09.837366,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-10-3h,gurobi-11.0.0,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,10-3h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,1508.664,,,,3600.0,3600.0,benchmark-instance-new-pypsa-24,20251227-new-pypsa,2025-12-27 11:43:14.276773,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-10-3h,highs-1.6.0.dev0,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,10-3h,scip,8.1.0,2023.0,TO,Timeout,3600.0,5853.528,,,,3600.0,3600.0,benchmark-instance-new-pypsa-24,20251227-new-pypsa,2025-12-27 12:47:00.939320,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-10-3h,scip-8.1.0,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,10-3h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,446.216,,,,3600.0,3600.0,benchmark-instance-new-pypsa-24,20251227-new-pypsa,2025-12-27 13:50:46.561359,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-10-3h,cbc-2.10.11,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,10-3h,gurobi,12.0.0,2024.0,ok,optimal,1334.8141141559972,2032.504,7543468432.416403,,,1328.1919240951538,3600.0,benchmark-instance-new-pypsa-24,20251227-new-pypsa,2025-12-27 14:55:08.525434,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-10-3h,gurobi-12.0.0,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,10-3h,highs,1.9.0,2024.0,TO,Timeout,3600.0,1634.88,,,,3600.0,3600.0,benchmark-instance-new-pypsa-24,20251227-new-pypsa,2025-12-27 15:21:22.265776,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-10-3h,highs-1.9.0,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,10-3h,scip,9.2.0,2024.0,TO,Timeout,3600.0,5837.876,,,,3600.0,3600.0,benchmark-instance-new-pypsa-24,20251227-new-pypsa,2025-12-27 16:25:05.234185,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-10-3h,scip-9.2.0,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,10-3h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,428.916,,,,3600.0,3600.0,benchmark-instance-new-pypsa-24,20251227-new-pypsa,2025-12-27 17:28:46.385217,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-10-3h,cbc-2.10.12,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,10-3h,gurobi,13.0.0,2025.0,ok,optimal,1473.8851235380062,2061.164,7543468432.416368,,,1467.709941148758,3600.0,benchmark-instance-new-pypsa-24,20251227-new-pypsa,2025-12-27 18:32:54.314158,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-10-3h,gurobi-13.0.0,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,10-3h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,664.6151803810062,1956.836,7543468432.5,,,664.6151803810062,3600.0,benchmark-instance-new-pypsa-24,20251227-new-pypsa,2025-12-27 19:01:11.566778,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-10-3h,highs-hipo-1.12.0-hipo,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,10-3h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,3574.6836313879976,1171.252,7543468432.4,,,3574.6836313879976,3600.0,benchmark-instance-new-pypsa-24,20251227-new-pypsa,2025-12-27 19:12:16.932556,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-10-3h,highs-ipx-1.12.0-hipo,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,10-3h,highs,1.12.0,2025.0,ok,optimal,2952.861641026,2299.492,7543468432.416414,,,2945.6628770828247,3600.0,benchmark-instance-new-pypsa-24,20251227-new-pypsa,2025-12-27 20:15:34.018675,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-10-3h,highs-1.12.0,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,10-3h,scip,10.0.0,2025.0,TO,Timeout,3600.0,5855.06,,,,3600.0,3600.0,benchmark-instance-new-pypsa-24,20251227-new-pypsa,2025-12-27 21:04:52.579859,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_vopt-10-3h,scip-10.0.0,pypsa-de-elec-trex_vopt +pypsa-eur-elec,50-24h,glpk,5.0,2020.0,TO,Timeout,3600.0,305.916,,,,3600.0,3600.0,benchmark-instance-new-pypsa-29,20251227-new-pypsa,2025-12-27 07:44:54.553827,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-24h,glpk-5.0,pypsa-eur-elec +pypsa-eur-elec,50-24h,gurobi,10.0.0,2022.0,TO,Timeout,3600.0,661.244,,,,3600.0,3600.0,benchmark-instance-new-pypsa-29,20251227-new-pypsa,2025-12-27 08:49:24.272873,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-24h,gurobi-10.0.0,pypsa-eur-elec +pypsa-eur-elec,50-24h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1105.036,,,,3600.0,3600.0,benchmark-instance-new-pypsa-29,20251227-new-pypsa,2025-12-27 09:53:12.295465,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-24h,highs-1.5.0.dev0,pypsa-eur-elec +pypsa-eur-elec,50-24h,scip,8.0.3,2022.0,TO,Timeout,3600.0,3398.444,,,,3600.0,3600.0,benchmark-instance-new-pypsa-29,20251227-new-pypsa,2025-12-27 10:56:58.350138,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-24h,scip-8.0.3,pypsa-eur-elec +pypsa-eur-elec,50-24h,gurobi,11.0.0,2023.0,TO,Timeout,3600.0,672.016,,,,3600.0,3600.0,benchmark-instance-new-pypsa-29,20251227-new-pypsa,2025-12-27 12:04:07.589362,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-24h,gurobi-11.0.0,pypsa-eur-elec +pypsa-eur-elec,50-24h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,1059.068,,,,3600.0,3600.0,benchmark-instance-new-pypsa-29,20251227-new-pypsa,2025-12-27 13:07:51.036036,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-24h,highs-1.6.0.dev0,pypsa-eur-elec +pypsa-eur-elec,50-24h,scip,8.1.0,2023.0,TO,Timeout,3600.0,3404.908,,,,3600.0,3600.0,benchmark-instance-new-pypsa-29,20251227-new-pypsa,2025-12-27 14:11:35.137360,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-24h,scip-8.1.0,pypsa-eur-elec +pypsa-eur-elec,50-24h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,336.76,,,,3600.0,3600.0,benchmark-instance-new-pypsa-29,20251227-new-pypsa,2025-12-27 15:15:18.710691,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-24h,cbc-2.10.11,pypsa-eur-elec +pypsa-eur-elec,50-24h,gurobi,12.0.0,2024.0,ok,optimal,3490.881909959004,1304.984,32743539907.77884,,,3486.923056125641,3600.0,benchmark-instance-new-pypsa-29,20251227-new-pypsa,2025-12-27 16:19:29.473091,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-24h,gurobi-12.0.0,pypsa-eur-elec +pypsa-eur-elec,50-24h,highs,1.9.0,2024.0,TO,Timeout,3600.0,1630.912,,,,3600.0,3600.0,benchmark-instance-new-pypsa-29,20251227-new-pypsa,2025-12-27 17:21:28.235115,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-24h,highs-1.9.0,pypsa-eur-elec +pypsa-eur-elec,50-24h,scip,9.2.0,2024.0,TO,Timeout,3600.0,3390.156,,,,3600.0,3600.0,benchmark-instance-new-pypsa-29,20251227-new-pypsa,2025-12-27 18:25:10.593507,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-24h,scip-9.2.0,pypsa-eur-elec +pypsa-eur-elec,50-24h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,319.392,,,,3600.0,3600.0,benchmark-instance-new-pypsa-29,20251227-new-pypsa,2025-12-27 19:28:52.644805,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-24h,cbc-2.10.12,pypsa-eur-elec +pypsa-eur-elec,50-24h,gurobi,13.0.0,2025.0,ok,optimal,3356.899099162998,1331.716,32743539907.778797,,,3352.8631739616394,3600.0,benchmark-instance-new-pypsa-29,20251227-new-pypsa,2025-12-27 20:33:13.529861,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-24h,gurobi-13.0.0,pypsa-eur-elec +pypsa-eur-elec,50-24h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,994.484785560002,3348.756,32743539908.0,,,994.484785560002,3600.0,benchmark-instance-new-pypsa-29,20251227-new-pypsa,2025-12-27 21:33:07.504704,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-24h,highs-hipo-1.12.0-hipo,pypsa-eur-elec +pypsa-eur-elec,50-24h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,840.4238477170002,725.092,32743539909.0,,,840.4238477170002,3600.0,benchmark-instance-new-pypsa-29,20251227-new-pypsa,2025-12-27 21:49:43.052871,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-24h,highs-ipx-1.12.0-hipo,pypsa-eur-elec +pypsa-eur-elec,50-24h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1551.276,,,,3600.0,3600.0,benchmark-instance-new-pypsa-29,20251227-new-pypsa,2025-12-27 22:03:44.473980,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-24h,highs-1.12.0,pypsa-eur-elec +pypsa-eur-elec,50-24h,scip,10.0.0,2025.0,TO,Timeout,3600.0,3410.82,,,,3600.0,3600.0,benchmark-instance-new-pypsa-29,20251227-new-pypsa,2025-12-27 23:07:32.092244,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-24h,scip-10.0.0,pypsa-eur-elec +pypsa-eur-elec,50-3h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,1597.964,,,,86400.0,86400.0,benchmark-instance-new-pypsa-07,20251227-new-pypsa,2025-12-27 07:54:25.374647,c4-highmem-16,us-east1-b,305f3ff,pypsa-eur-elec-50-3h,cbc-2.10.12,pypsa-eur-elec +pypsa-eur-elec,50-3h,gurobi,13.0.0,2025.0,ok,optimal,3524.640558254003,10303.564,35580111629.54472,,,3493.991401195526,86400.0,benchmark-instance-new-pypsa-07,20251227-new-pypsa,2025-12-28 07:58:24.004327,c4-highmem-16,us-east1-b,305f3ff,pypsa-eur-elec-50-3h,gurobi-13.0.0,pypsa-eur-elec +pypsa-eur-elec,50-3h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,15242.385195757,8901.156,35580111631.0,,,15242.385195757,86400.0,benchmark-instance-new-pypsa-07,20251227-new-pypsa,2025-12-28 09:01:11.537548,c4-highmem-16,us-east1-b,305f3ff,pypsa-eur-elec-50-3h,highs-hipo-1.12.0-hipo,pypsa-eur-elec +pypsa-eur-elec,50-3h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,74664.283962099,5584.692,35580111634.0,,,74664.283962099,86400.0,benchmark-instance-new-pypsa-07,20251227-new-pypsa,2025-12-28 13:18:47.457427,c4-highmem-16,us-east1-b,305f3ff,pypsa-eur-elec-50-3h,highs-ipx-1.12.0-hipo,pypsa-eur-elec +pypsa-eur-elec,50-3h,highs,1.12.0,2025.0,TO,Timeout,86400.0,7092.696,,,,86400.0,86400.0,benchmark-instance-new-pypsa-07,20251227-new-pypsa,2025-12-29 10:06:45.280460,c4-highmem-16,us-east1-b,305f3ff,pypsa-eur-elec-50-3h,highs-1.12.0,pypsa-eur-elec +pypsa-eur-elec,50-3h,scip,10.0.0,2025.0,TO,Timeout,86400.0,24734.124,,,,86400.0,86400.0,benchmark-instance-new-pypsa-07,20251227-new-pypsa,2025-12-30 10:10:21.074288,c4-highmem-16,us-east1-b,305f3ff,pypsa-eur-elec-50-3h,scip-10.0.0,pypsa-eur-elec +pypsa-eur-elec,50-12h,glpk,5.0,2020.0,TO,Timeout,3600.0,489.68,,,,3600.0,3600.0,benchmark-instance-new-pypsa-21,20251227-new-pypsa,2025-12-27 07:44:46.393292,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-12h,glpk-5.0,pypsa-eur-elec +pypsa-eur-elec,50-12h,gurobi,10.0.0,2022.0,TO,Timeout,3600.0,1152.024,,,,3600.0,3600.0,benchmark-instance-new-pypsa-21,20251227-new-pypsa,2025-12-27 08:49:34.265442,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-12h,gurobi-10.0.0,pypsa-eur-elec +pypsa-eur-elec,50-12h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1866.916,,,,3600.0,3600.0,benchmark-instance-new-pypsa-21,20251227-new-pypsa,2025-12-27 09:54:13.240320,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-12h,highs-1.5.0.dev0,pypsa-eur-elec +pypsa-eur-elec,50-12h,scip,8.0.3,2022.0,OOM,Out of Memory,,,,,,,3600.0,benchmark-instance-new-pypsa-21,20251227-new-pypsa,2025-12-27 10:58:34.632762,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-12h,scip-8.0.3,pypsa-eur-elec +pypsa-eur-elec,50-12h,gurobi,11.0.0,2023.0,TO,Timeout,3600.0,1163.916,,,,3600.0,3600.0,benchmark-instance-new-pypsa-21,20251227-new-pypsa,2025-12-27 11:02:41.613649,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-12h,gurobi-11.0.0,pypsa-eur-elec +pypsa-eur-elec,50-12h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,1704.376,,,,3600.0,3600.0,benchmark-instance-new-pypsa-21,20251227-new-pypsa,2025-12-27 12:07:03.807218,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-12h,highs-1.6.0.dev0,pypsa-eur-elec +pypsa-eur-elec,50-12h,scip,8.1.0,2023.0,OOM,Out of Memory,,,,,,,3600.0,benchmark-instance-new-pypsa-21,20251227-new-pypsa,2025-12-27 13:11:43.918402,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-12h,scip-8.1.0,pypsa-eur-elec +pypsa-eur-elec,50-12h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,520.3,,,,3600.0,3600.0,benchmark-instance-new-pypsa-21,20251227-new-pypsa,2025-12-27 13:12:13.636730,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-12h,cbc-2.10.11,pypsa-eur-elec +pypsa-eur-elec,50-12h,gurobi,12.0.0,2024.0,TO,Timeout,3600.0,1174.72,,,,3600.0,3600.0,benchmark-instance-new-pypsa-21,20251227-new-pypsa,2025-12-27 14:17:34.400926,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-12h,gurobi-12.0.0,pypsa-eur-elec +pypsa-eur-elec,50-12h,highs,1.9.0,2024.0,TO,Timeout,3600.0,1650.096,,,,3600.0,3600.0,benchmark-instance-new-pypsa-21,20251227-new-pypsa,2025-12-27 15:21:54.376703,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-12h,highs-1.9.0,pypsa-eur-elec +pypsa-eur-elec,50-12h,scip,9.2.0,2024.0,OOM,Out of Memory,,,,,,,3600.0,benchmark-instance-new-pypsa-21,20251227-new-pypsa,2025-12-27 16:25:44.407650,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-12h,scip-9.2.0,pypsa-eur-elec +pypsa-eur-elec,50-12h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,503.128,,,,3600.0,3600.0,benchmark-instance-new-pypsa-21,20251227-new-pypsa,2025-12-27 16:26:05.814766,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-12h,cbc-2.10.12,pypsa-eur-elec +pypsa-eur-elec,50-12h,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,1207.848,,,,3600.0,3600.0,benchmark-instance-new-pypsa-21,20251227-new-pypsa,2025-12-27 17:30:31.548212,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-12h,gurobi-13.0.0,pypsa-eur-elec +pypsa-eur-elec,50-12h,highs-hipo,1.12.0-hipo,2025.0,OOM,Out of Memory,,,,,,,3600.0,benchmark-instance-new-pypsa-21,20251227-new-pypsa,2025-12-27 18:34:36.779990,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-12h,highs-hipo-1.12.0-hipo,pypsa-eur-elec +pypsa-eur-elec,50-12h,highs-ipx,1.12.0-hipo,2025.0,OOM,Out of Memory,,,,,,,3600.0,benchmark-instance-new-pypsa-21,20251227-new-pypsa,2025-12-27 18:35:29.809107,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-12h,highs-ipx-1.12.0-hipo,pypsa-eur-elec +pypsa-eur-elec,50-12h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1691.916,,,,3600.0,3600.0,benchmark-instance-new-pypsa-21,20251227-new-pypsa,2025-12-27 18:35:39.531398,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-12h,highs-1.12.0,pypsa-eur-elec +pypsa-eur-elec,50-12h,scip,10.0.0,2025.0,OOM,Out of Memory,,,,,,,3600.0,benchmark-instance-new-pypsa-21,20251227-new-pypsa,2025-12-27 19:39:36.588711,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-50-12h,scip-10.0.0,pypsa-eur-elec +pypsa-de-elec-trex_copt-dfp,10-1h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,1015.956,,,,86400.0,86400.0,benchmark-instance-new-pypsa-16,20251227-new-pypsa,2025-12-30 07:41:10.916755,c4-highmem-16,us-central1-a,553001,pypsa-de-elec-trex_copt-dfp-10-1h,cbc-2.10.12,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,10-1h,gurobi,13.0.0,2025.0,ok,optimal,552.1199110390007,7628.688,7574759720.579138,,,533.0534610748291,86400.0,benchmark-instance-new-pypsa-16,20251227-new-pypsa,2025-12-31 07:45:14.172222,c4-highmem-16,us-central1-a,553001,pypsa-de-elec-trex_copt-dfp-10-1h,gurobi-13.0.0,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,10-1h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,11486.280942394003,5661.88,7574759723.3,,,11486.280942394003,86400.0,benchmark-instance-new-pypsa-16,20251227-new-pypsa,2025-12-31 07:58:25.476273,c4-highmem-16,us-central1-a,553001,pypsa-de-elec-trex_copt-dfp-10-1h,highs-hipo-1.12.0-hipo,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,10-1h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,86400.0,164.256,,,,86400.0,86400.0,benchmark-instance-new-pypsa-16,20251227-new-pypsa,2025-12-31 11:13:26.293784,c4-highmem-16,us-central1-a,553001,pypsa-de-elec-trex_copt-dfp-10-1h,highs-ipx-1.12.0-hipo,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,10-1h,highs,1.12.0,2025.0,ok,optimal,85896.52626633999,6254.324,7574759720.57873,,,85873.38935446739,86400.0,benchmark-instance-new-pypsa-16,20251227-new-pypsa,2026-01-01 11:17:06.344685,c4-highmem-16,us-central1-a,553001,pypsa-de-elec-trex_copt-dfp-10-1h,highs-1.12.0,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,10-1h,scip,10.0.0,2025.0,TO,Timeout,86400.0,17449.636,,,,86400.0,86400.0,benchmark-instance-new-pypsa-16,20251227-new-pypsa,2026-01-02 11:12:32.859124,c4-highmem-16,us-central1-a,553001,pypsa-de-elec-trex_copt-dfp-10-1h,scip-10.0.0,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-dfp,10-1h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,1017.124,,,,86400.0,86400.0,benchmark-instance-new-pypsa-18,20251227-new-pypsa,2025-12-27 07:46:12.695704,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-dfp-10-1h,cbc-2.10.12,pypsa-de-elec-dfp +pypsa-de-elec-dfp,10-1h,gurobi,13.0.0,2025.0,ok,optimal,319.50899926900456,6936.528,7578404513.851929,,,301.16634607315063,86400.0,benchmark-instance-new-pypsa-18,20251227-new-pypsa,2025-12-28 07:50:17.710346,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-dfp-10-1h,gurobi-13.0.0,pypsa-de-elec-dfp +pypsa-de-elec-dfp,10-1h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,4994.882943600998,4689.556,7578404514.0,,,4994.882943600998,86400.0,benchmark-instance-new-pypsa-18,20251227-new-pypsa,2025-12-28 07:59:25.640812,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-dfp-10-1h,highs-hipo-1.12.0-hipo,pypsa-de-elec-dfp +pypsa-de-elec-dfp,10-1h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,19386.069528448992,3370.476,7578404514.1,,,19386.069528448992,86400.0,benchmark-instance-new-pypsa-18,20251227-new-pypsa,2025-12-28 09:26:21.292913,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-dfp-10-1h,highs-ipx-1.12.0-hipo,pypsa-de-elec-dfp +pypsa-de-elec-dfp,10-1h,highs,1.12.0,2025.0,ok,optimal,71276.268222631,6210.72,7578404513.851887,,,71253.86956429482,86400.0,benchmark-instance-new-pypsa-18,20251227-new-pypsa,2025-12-28 14:53:13.247888,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-dfp-10-1h,highs-1.12.0,pypsa-de-elec-dfp +pypsa-de-elec-dfp,10-1h,scip,10.0.0,2025.0,TO,Timeout,86400.0,15008.052,,,,86400.0,86400.0,benchmark-instance-new-pypsa-18,20251227-new-pypsa,2025-12-29 10:44:58.051243,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-dfp-10-1h,scip-10.0.0,pypsa-de-elec-dfp +pypsa-de-elec-trex_copt,20-1h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,1742.196,,,,86400.0,86400.0,benchmark-instance-new-pypsa-04,20251227-new-pypsa,2025-12-27 07:53:31.448807,c4-highmem-16,us-east1-b,305f3ff,pypsa-de-elec-trex_copt-20-1h,cbc-2.10.12,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,20-1h,gurobi,13.0.0,2025.0,ok,optimal,1178.4059438419936,14195.156,7559712213.521395,,,1148.8415729999542,86400.0,benchmark-instance-new-pypsa-04,20251227-new-pypsa,2025-12-28 07:57:09.364870,c4-highmem-16,us-east1-b,305f3ff,pypsa-de-elec-trex_copt-20-1h,gurobi-13.0.0,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,20-1h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,24653.512998185997,10758.316,7559712213.8,,,24653.512998185997,86400.0,benchmark-instance-new-pypsa-04,20251227-new-pypsa,2025-12-28 08:20:26.437987,c4-highmem-16,us-east1-b,305f3ff,pypsa-de-elec-trex_copt-20-1h,highs-hipo-1.12.0-hipo,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,20-1h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,86400.0,162.924,,,,86400.0,86400.0,benchmark-instance-new-pypsa-04,20251227-new-pypsa,2025-12-28 15:14:28.912691,c4-highmem-16,us-east1-b,305f3ff,pypsa-de-elec-trex_copt-20-1h,highs-ipx-1.12.0-hipo,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,20-1h,highs,1.12.0,2025.0,TO,Timeout,86400.0,6478.848,,,,86400.0,86400.0,benchmark-instance-new-pypsa-04,20251227-new-pypsa,2025-12-29 15:17:39.120269,c4-highmem-16,us-east1-b,305f3ff,pypsa-de-elec-trex_copt-20-1h,highs-1.12.0,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,20-1h,scip,10.0.0,2025.0,TO,Timeout,86400.0,30655.14,,,,86400.0,86400.0,benchmark-instance-new-pypsa-04,20251227-new-pypsa,2025-12-30 15:20:46.761872,c4-highmem-16,us-east1-b,305f3ff,pypsa-de-elec-trex_copt-20-1h,scip-10.0.0,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_vopt,10-1h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,1015.944,,,,86400.0,86400.0,benchmark-instance-new-pypsa-15,20251227-new-pypsa,2025-12-30 07:41:09.880996,c4-highmem-16,us-central1-a,553001,pypsa-de-elec-trex_vopt-10-1h,cbc-2.10.12,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,10-1h,gurobi,13.0.0,2025.0,ok,optimal,556.0059503889934,8143.372,7574743524.678019,,,536.8196511268616,86400.0,benchmark-instance-new-pypsa-15,20251227-new-pypsa,2025-12-31 07:45:17.824549,c4-highmem-16,us-central1-a,553001,pypsa-de-elec-trex_vopt-10-1h,gurobi-13.0.0,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,10-1h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,11150.948562995009,5639.808,7574743525.7,,,11150.948562995009,86400.0,benchmark-instance-new-pypsa-15,20251227-new-pypsa,2025-12-31 07:58:34.339501,c4-highmem-16,us-central1-a,553001,pypsa-de-elec-trex_vopt-10-1h,highs-hipo-1.12.0-hipo,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,10-1h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,86400.0,163.06,,,,86400.0,86400.0,benchmark-instance-new-pypsa-15,20251227-new-pypsa,2025-12-31 11:08:05.056140,c4-highmem-16,us-central1-a,553001,pypsa-de-elec-trex_vopt-10-1h,highs-ipx-1.12.0-hipo,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,10-1h,highs,1.12.0,2025.0,TO,Timeout,86400.0,3698.464,,,,86400.0,86400.0,benchmark-instance-new-pypsa-15,20251227-new-pypsa,2026-01-01 11:11:40.138630,c4-highmem-16,us-central1-a,553001,pypsa-de-elec-trex_vopt-10-1h,highs-1.12.0,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,10-1h,scip,10.0.0,2025.0,TO,Timeout,86400.0,17553.128,,,,86400.0,86400.0,benchmark-instance-new-pypsa-15,20251227-new-pypsa,2026-01-02 11:15:21.019724,c4-highmem-16,us-central1-a,553001,pypsa-de-elec-trex_vopt-10-1h,scip-10.0.0,pypsa-de-elec-trex_vopt +pypsa-eur-elec,100-24h,glpk,5.0,2020.0,TO,Timeout,3600.0,474.72,,,,3600.0,3600.0,benchmark-instance-new-pypsa-22,20251227-new-pypsa,2025-12-27 07:44:43.938706,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-100-24h,glpk-5.0,pypsa-eur-elec +pypsa-eur-elec,100-24h,gurobi,10.0.0,2022.0,TO,Timeout,3600.0,1138.96,,,,3600.0,3600.0,benchmark-instance-new-pypsa-22,20251227-new-pypsa,2025-12-27 08:49:14.046720,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-100-24h,gurobi-10.0.0,pypsa-eur-elec +pypsa-eur-elec,100-24h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1884.608,,,,3600.0,3600.0,benchmark-instance-new-pypsa-22,20251227-new-pypsa,2025-12-27 09:53:01.062844,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-100-24h,highs-1.5.0.dev0,pypsa-eur-elec +pypsa-eur-elec,100-24h,scip,8.0.3,2022.0,OOM,Out of Memory,,,,,,,3600.0,benchmark-instance-new-pypsa-22,20251227-new-pypsa,2025-12-27 10:56:51.154490,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-100-24h,scip-8.0.3,pypsa-eur-elec +pypsa-eur-elec,100-24h,gurobi,11.0.0,2023.0,TO,Timeout,3600.0,1117.924,,,,3600.0,3600.0,benchmark-instance-new-pypsa-22,20251227-new-pypsa,2025-12-27 11:00:45.136025,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-100-24h,gurobi-11.0.0,pypsa-eur-elec +pypsa-eur-elec,100-24h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,1684.176,,,,3600.0,3600.0,benchmark-instance-new-pypsa-22,20251227-new-pypsa,2025-12-27 12:04:33.761380,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-100-24h,highs-1.6.0.dev0,pypsa-eur-elec +pypsa-eur-elec,100-24h,scip,8.1.0,2023.0,OOM,Out of Memory,,,,,,,3600.0,benchmark-instance-new-pypsa-22,20251227-new-pypsa,2025-12-27 13:08:22.181845,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-100-24h,scip-8.1.0,pypsa-eur-elec +pypsa-eur-elec,100-24h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,505.78,,,,3600.0,3600.0,benchmark-instance-new-pypsa-22,20251227-new-pypsa,2025-12-27 13:08:42.148856,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-100-24h,cbc-2.10.11,pypsa-eur-elec +pypsa-eur-elec,100-24h,gurobi,12.0.0,2024.0,TO,Timeout,3600.0,1126.664,,,,3600.0,3600.0,benchmark-instance-new-pypsa-22,20251227-new-pypsa,2025-12-27 14:13:05.567344,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-100-24h,gurobi-12.0.0,pypsa-eur-elec +pypsa-eur-elec,100-24h,highs,1.9.0,2024.0,TO,Timeout,3600.0,1569.464,,,,3600.0,3600.0,benchmark-instance-new-pypsa-22,20251227-new-pypsa,2025-12-27 15:16:53.178878,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-100-24h,highs-1.9.0,pypsa-eur-elec +pypsa-eur-elec,100-24h,scip,9.2.0,2024.0,OOM,Out of Memory,,,,,,,3600.0,benchmark-instance-new-pypsa-22,20251227-new-pypsa,2025-12-27 16:20:37.385315,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-100-24h,scip-9.2.0,pypsa-eur-elec +pypsa-eur-elec,100-24h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,488.616,,,,3600.0,3600.0,benchmark-instance-new-pypsa-22,20251227-new-pypsa,2025-12-27 16:20:56.911649,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-100-24h,cbc-2.10.12,pypsa-eur-elec +pypsa-eur-elec,100-24h,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,1156.712,,,,3600.0,3600.0,benchmark-instance-new-pypsa-22,20251227-new-pypsa,2025-12-27 17:25:11.060345,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-100-24h,gurobi-13.0.0,pypsa-eur-elec +pypsa-eur-elec,100-24h,highs-hipo,1.12.0-hipo,2025.0,OOM,Out of Memory,,,,,,,3600.0,benchmark-instance-new-pypsa-22,20251227-new-pypsa,2025-12-27 18:28:55.360302,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-100-24h,highs-hipo-1.12.0-hipo,pypsa-eur-elec +pypsa-eur-elec,100-24h,highs-ipx,1.12.0-hipo,2025.0,OOM,Out of Memory,,,,,,,3600.0,benchmark-instance-new-pypsa-22,20251227-new-pypsa,2025-12-27 18:31:17.017712,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-100-24h,highs-ipx-1.12.0-hipo,pypsa-eur-elec +pypsa-eur-elec,100-24h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1667.348,,,,3600.0,3600.0,benchmark-instance-new-pypsa-22,20251227-new-pypsa,2025-12-27 18:31:25.622913,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-100-24h,highs-1.12.0,pypsa-eur-elec +pypsa-eur-elec,100-24h,scip,10.0.0,2025.0,OOM,Out of Memory,,,,,,,3600.0,benchmark-instance-new-pypsa-22,20251227-new-pypsa,2025-12-27 19:35:04.297322,c4-standard-2,us-central1-a,305f3ff,pypsa-eur-elec-100-24h,scip-10.0.0,pypsa-eur-elec +pypsa-de-elec-dfp,10-3h,glpk,5.0,2020.0,TO,Timeout,3600.0,415.4,,,,3600.0,3600.0,benchmark-instance-new-pypsa-27,20251227-new-pypsa,2025-12-27 07:45:01.373976,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-dfp-10-3h,glpk-5.0,pypsa-de-elec-dfp +pypsa-de-elec-dfp,10-3h,gurobi,10.0.0,2022.0,ok,optimal,1571.289741748,2054.9,7547570289.716175,,,1563.5610349178314,3600.0,benchmark-instance-new-pypsa-27,20251227-new-pypsa,2025-12-27 08:49:25.957434,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-dfp-10-3h,gurobi-10.0.0,pypsa-de-elec-dfp +pypsa-de-elec-dfp,10-3h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1456.82,,,,3600.0,3600.0,benchmark-instance-new-pypsa-27,20251227-new-pypsa,2025-12-27 09:19:26.704480,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-dfp-10-3h,highs-1.5.0.dev0,pypsa-de-elec-dfp +pypsa-de-elec-dfp,10-3h,scip,8.0.3,2022.0,TO,Timeout,3600.0,5223.16,,,,3600.0,3600.0,benchmark-instance-new-pypsa-27,20251227-new-pypsa,2025-12-27 10:23:10.937412,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-dfp-10-3h,scip-8.0.3,pypsa-de-elec-dfp +pypsa-de-elec-dfp,10-3h,gurobi,11.0.0,2023.0,ok,optimal,1374.82737567,1984.46,7547570289.716198,,,1368.5739450454712,3600.0,benchmark-instance-new-pypsa-27,20251227-new-pypsa,2025-12-27 11:30:15.664473,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-dfp-10-3h,gurobi-11.0.0,pypsa-de-elec-dfp +pypsa-de-elec-dfp,10-3h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,1357.216,,,,3600.0,3600.0,benchmark-instance-new-pypsa-27,20251227-new-pypsa,2025-12-27 11:56:52.894637,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-dfp-10-3h,highs-1.6.0.dev0,pypsa-de-elec-dfp +pypsa-de-elec-dfp,10-3h,scip,8.1.0,2023.0,TO,Timeout,3600.0,5236.824,,,,3600.0,3600.0,benchmark-instance-new-pypsa-27,20251227-new-pypsa,2025-12-27 13:00:40.359063,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-dfp-10-3h,scip-8.1.0,pypsa-de-elec-dfp +pypsa-de-elec-dfp,10-3h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,446.656,,,,3600.0,3600.0,benchmark-instance-new-pypsa-27,20251227-new-pypsa,2025-12-27 14:04:23.605708,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-dfp-10-3h,cbc-2.10.11,pypsa-de-elec-dfp +pypsa-de-elec-dfp,10-3h,gurobi,12.0.0,2024.0,ok,optimal,2045.6713331880017,2014.728,7547570289.716084,,,2039.1081140041351,3600.0,benchmark-instance-new-pypsa-27,20251227-new-pypsa,2025-12-27 15:08:43.400418,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-dfp-10-3h,gurobi-12.0.0,pypsa-de-elec-dfp +pypsa-de-elec-dfp,10-3h,highs,1.9.0,2024.0,TO,Timeout,3600.0,1346.804,,,,3600.0,3600.0,benchmark-instance-new-pypsa-27,20251227-new-pypsa,2025-12-27 15:46:46.605290,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-dfp-10-3h,highs-1.9.0,pypsa-de-elec-dfp +pypsa-de-elec-dfp,10-3h,scip,9.2.0,2024.0,TO,Timeout,3600.0,5218.828,,,,3600.0,3600.0,benchmark-instance-new-pypsa-27,20251227-new-pypsa,2025-12-27 16:50:25.619063,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-dfp-10-3h,scip-9.2.0,pypsa-de-elec-dfp +pypsa-de-elec-dfp,10-3h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,429.188,,,,3600.0,3600.0,benchmark-instance-new-pypsa-27,20251227-new-pypsa,2025-12-27 17:54:06.146413,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-dfp-10-3h,cbc-2.10.12,pypsa-de-elec-dfp +pypsa-de-elec-dfp,10-3h,gurobi,13.0.0,2025.0,ok,optimal,1802.699754735004,2040.736,7547570289.716072,,,1796.061371088028,3600.0,benchmark-instance-new-pypsa-27,20251227-new-pypsa,2025-12-27 18:58:15.956133,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-dfp-10-3h,gurobi-13.0.0,pypsa-de-elec-dfp +pypsa-de-elec-dfp,10-3h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,490.6244673089968,1603.512,7547570289.8,,,490.6244673089968,3600.0,benchmark-instance-new-pypsa-27,20251227-new-pypsa,2025-12-27 19:32:03.363805,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-dfp-10-3h,highs-hipo-1.12.0-hipo,pypsa-de-elec-dfp +pypsa-de-elec-dfp,10-3h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,2444.0271068209986,1150.592,7547570289.7,,,2444.0271068209986,3600.0,benchmark-instance-new-pypsa-27,20251227-new-pypsa,2025-12-27 19:40:14.740689,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-dfp-10-3h,highs-ipx-1.12.0-hipo,pypsa-de-elec-dfp +pypsa-de-elec-dfp,10-3h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1361.16,,,,3600.0,3600.0,benchmark-instance-new-pypsa-27,20251227-new-pypsa,2025-12-27 20:20:59.517463,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-dfp-10-3h,highs-1.12.0,pypsa-de-elec-dfp +pypsa-de-elec-dfp,10-3h,scip,10.0.0,2025.0,TO,Timeout,3600.0,5275.492,,,,3600.0,3600.0,benchmark-instance-new-pypsa-27,20251227-new-pypsa,2025-12-27 21:24:47.804227,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-dfp-10-3h,scip-10.0.0,pypsa-de-elec-dfp +pypsa-de-elec-trex_copt-dfp,50-3h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,1356.088,,,,86400.0,86400.0,benchmark-instance-new-pypsa-10,20251227-new-pypsa,2025-12-27 07:45:52.453213,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-dfp-50-3h,cbc-2.10.12,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,50-3h,gurobi,13.0.0,2025.0,ok,optimal,634.8138213979983,10722.82,7431205668.065031,,,608.9049220085144,86400.0,benchmark-instance-new-pypsa-10,20251227-new-pypsa,2025-12-28 07:50:09.420751,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-dfp-50-3h,gurobi-13.0.0,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,50-3h,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,86400.0,163.328,,,,86400.0,86400.0,benchmark-instance-new-pypsa-10,20251227-new-pypsa,2025-12-28 08:04:51.413226,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-dfp-50-3h,highs-hipo-1.12.0-hipo,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,50-3h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,86400.0,164.348,,,,86400.0,86400.0,benchmark-instance-new-pypsa-10,20251227-new-pypsa,2025-12-29 08:08:31.221771,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-dfp-50-3h,highs-ipx-1.12.0-hipo,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,50-3h,highs,1.12.0,2025.0,TO,Timeout,86400.0,5106.308,,,,86400.0,86400.0,benchmark-instance-new-pypsa-10,20251227-new-pypsa,2025-12-30 08:11:59.448171,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-dfp-50-3h,highs-1.12.0,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,50-3h,scip,10.0.0,2025.0,TO,Timeout,86400.0,23869.664,,,,86400.0,86400.0,benchmark-instance-new-pypsa-10,20251227-new-pypsa,2025-12-31 08:15:31.474931,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-dfp-50-3h,scip-10.0.0,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_vopt-dfp,20-1h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,1742.248,,,,86400.0,86400.0,benchmark-instance-new-pypsa-01,20251227-new-pypsa,2025-12-27 07:53:40.033157,c4-highmem-16,us-east1-b,305f3ff,pypsa-de-elec-trex_vopt-dfp-20-1h,cbc-2.10.12,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,20-1h,gurobi,13.0.0,2025.0,ok,optimal,1129.7322427190084,14097.74,7559817261.457777,,,1098.7759499549866,86400.0,benchmark-instance-new-pypsa-01,20251227-new-pypsa,2025-12-28 07:57:20.868267,c4-highmem-16,us-east1-b,305f3ff,pypsa-de-elec-trex_vopt-dfp-20-1h,gurobi-13.0.0,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,20-1h,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,86400.0,163.372,,,,86400.0,86400.0,benchmark-instance-new-pypsa-01,20251227-new-pypsa,2025-12-28 08:19:56.558979,c4-highmem-16,us-east1-b,305f3ff,pypsa-de-elec-trex_vopt-dfp-20-1h,highs-hipo-1.12.0-hipo,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,20-1h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,86400.0,163.868,,,,86400.0,86400.0,benchmark-instance-new-pypsa-01,20251227-new-pypsa,2025-12-29 08:23:10.185361,c4-highmem-16,us-east1-b,305f3ff,pypsa-de-elec-trex_vopt-dfp-20-1h,highs-ipx-1.12.0-hipo,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,20-1h,highs,1.12.0,2025.0,TO,Timeout,86400.0,6477.252,,,,86400.0,86400.0,benchmark-instance-new-pypsa-01,20251227-new-pypsa,2025-12-30 08:26:25.086006,c4-highmem-16,us-east1-b,305f3ff,pypsa-de-elec-trex_vopt-dfp-20-1h,highs-1.12.0,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,20-1h,scip,10.0.0,2025.0,TO,Timeout,86400.0,30653.232,,,,86400.0,86400.0,benchmark-instance-new-pypsa-01,20251227-new-pypsa,2025-12-31 08:29:45.150103,c4-highmem-16,us-east1-b,305f3ff,pypsa-de-elec-trex_vopt-dfp-20-1h,scip-10.0.0,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec,20-1h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,1749.444,,,,86400.0,86400.0,benchmark-instance-new-pypsa-06,20251227-new-pypsa,2025-12-27 07:46:30.819769,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-20-1h,cbc-2.10.12,pypsa-de-elec +pypsa-de-elec,20-1h,gurobi,13.0.0,2025.0,ok,optimal,656.0546303599986,12030.188,5687524467.5891,,,622.0128829479218,86400.0,benchmark-instance-new-pypsa-06,20251227-new-pypsa,2025-12-28 07:50:38.834922,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-20-1h,gurobi-13.0.0,pypsa-de-elec +pypsa-de-elec,20-1h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,7886.210970529006,9673.528,5687524467.6,,,7886.210970529006,86400.0,benchmark-instance-new-pypsa-06,20251227-new-pypsa,2025-12-28 08:05:41.444047,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-20-1h,highs-hipo-1.12.0-hipo,pypsa-de-elec +pypsa-de-elec,20-1h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,86400.0,163.024,,,,86400.0,86400.0,benchmark-instance-new-pypsa-06,20251227-new-pypsa,2025-12-28 10:20:39.258502,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-20-1h,highs-ipx-1.12.0-hipo,pypsa-de-elec +pypsa-de-elec,20-1h,highs,1.12.0,2025.0,TO,Timeout,86400.0,6315.552,,,,86400.0,86400.0,benchmark-instance-new-pypsa-06,20251227-new-pypsa,2025-12-29 10:24:14.146077,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-20-1h,highs-1.12.0,pypsa-de-elec +pypsa-de-elec,20-1h,scip,10.0.0,2025.0,TO,Timeout,86400.0,27763.64,,,,86400.0,86400.0,benchmark-instance-new-pypsa-06,20251227-new-pypsa,2025-12-30 10:27:55.899709,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-20-1h,scip-10.0.0,pypsa-de-elec +pypsa-eur-elec,100-12h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,841.284,,,,86400.0,86400.0,benchmark-instance-new-pypsa-20,20251227-new-pypsa,2025-12-27 07:46:13.947818,c4-highmem-16,us-central1-a,305f3ff,pypsa-eur-elec-100-12h,cbc-2.10.12,pypsa-eur-elec +pypsa-eur-elec,100-12h,gurobi,13.0.0,2025.0,ok,optimal,3128.30503672699,6225.172,32574498573.12773,,,3113.294273853302,86400.0,benchmark-instance-new-pypsa-20,20251227-new-pypsa,2025-12-28 07:50:26.821600,c4-highmem-16,us-central1-a,305f3ff,pypsa-eur-elec-100-12h,gurobi-13.0.0,pypsa-eur-elec +pypsa-eur-elec,100-12h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,4825.267783032003,14019.588,32574498575.0,,,4825.267783032003,86400.0,benchmark-instance-new-pypsa-20,20251227-new-pypsa,2025-12-28 08:46:26.363331,c4-highmem-16,us-central1-a,305f3ff,pypsa-eur-elec-100-12h,highs-hipo-1.12.0-hipo,pypsa-eur-elec +pypsa-eur-elec,100-12h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,18664.001028397997,2734.428,32574498576.0,,,18664.001028397997,86400.0,benchmark-instance-new-pypsa-20,20251227-new-pypsa,2025-12-28 10:10:23.552070,c4-highmem-16,us-central1-a,305f3ff,pypsa-eur-elec-100-12h,highs-ipx-1.12.0-hipo,pypsa-eur-elec +pypsa-eur-elec,100-12h,highs,1.12.0,2025.0,TO,Timeout,86400.0,3524.456,,,,86400.0,86400.0,benchmark-instance-new-pypsa-20,20251227-new-pypsa,2025-12-28 15:24:58.838558,c4-highmem-16,us-central1-a,305f3ff,pypsa-eur-elec-100-12h,highs-1.12.0,pypsa-eur-elec +pypsa-eur-elec,100-12h,scip,10.0.0,2025.0,ER,,,17158.412,,,,,86400.0,benchmark-instance-new-pypsa-20,20251227-new-pypsa,2025-12-29 15:28:33.710635,c4-highmem-16,us-central1-a,305f3ff,pypsa-eur-elec-100-12h,scip-10.0.0,pypsa-eur-elec +pypsa-de-elec-trex_copt,10-1h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,1015.628,,,,86400.0,86400.0,benchmark-instance-new-pypsa-17,20251227-new-pypsa,2025-12-27 07:45:53.871962,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-10-1h,cbc-2.10.12,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,10-1h,gurobi,13.0.0,2025.0,ok,optimal,600.7057695599942,7698.084,7574758600.977137,,,582.5433790683746,86400.0,benchmark-instance-new-pypsa-17,20251227-new-pypsa,2025-12-28 07:49:56.034151,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-10-1h,gurobi-13.0.0,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,10-1h,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,86400.0,164.204,,,,86400.0,86400.0,benchmark-instance-new-pypsa-17,20251227-new-pypsa,2025-12-28 08:03:46.391926,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-10-1h,highs-hipo-1.12.0-hipo,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,10-1h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,86400.0,163.644,,,,86400.0,86400.0,benchmark-instance-new-pypsa-17,20251227-new-pypsa,2025-12-29 08:07:19.160625,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-10-1h,highs-ipx-1.12.0-hipo,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,10-1h,highs,1.12.0,2025.0,TO,Timeout,86400.0,3777.132,,,,86400.0,86400.0,benchmark-instance-new-pypsa-17,20251227-new-pypsa,2025-12-30 08:10:52.381290,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-10-1h,highs-1.12.0,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,10-1h,scip,10.0.0,2025.0,TO,Timeout,86400.0,17469.424,,,,86400.0,86400.0,benchmark-instance-new-pypsa-17,20251227-new-pypsa,2025-12-31 08:14:20.723364,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-10-1h,scip-10.0.0,pypsa-de-elec-trex_copt +pypsa-de-elec-dfp,50-3h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,1366.908,,,,86400.0,86400.0,benchmark-instance-new-pypsa-12,20251227-new-pypsa,2025-12-27 07:45:48.029029,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-dfp-50-3h,cbc-2.10.12,pypsa-de-elec-dfp +pypsa-de-elec-dfp,50-3h,gurobi,13.0.0,2025.0,ok,optimal,337.5526760920038,9767.764,7538244541.982296,,,311.10126209259033,86400.0,benchmark-instance-new-pypsa-12,20251227-new-pypsa,2025-12-28 07:50:02.239715,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-dfp-50-3h,gurobi-13.0.0,pypsa-de-elec-dfp +pypsa-de-elec-dfp,50-3h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,8520.903523344998,7999.144,7538244542.0,,,8520.903523344998,86400.0,benchmark-instance-new-pypsa-12,20251227-new-pypsa,2025-12-28 07:59:47.843654,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-dfp-50-3h,highs-hipo-1.12.0-hipo,pypsa-de-elec-dfp +pypsa-de-elec-dfp,50-3h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,63416.69015321901,4911.516,7538244542.0,,,63416.69015321901,86400.0,benchmark-instance-new-pypsa-12,20251227-new-pypsa,2025-12-28 10:25:21.496835,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-dfp-50-3h,highs-ipx-1.12.0-hipo,pypsa-de-elec-dfp +pypsa-de-elec-dfp,50-3h,highs,1.12.0,2025.0,TO,Timeout,86400.0,4835.32,,,,86400.0,86400.0,benchmark-instance-new-pypsa-12,20251227-new-pypsa,2025-12-29 04:05:59.227289,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-dfp-50-3h,highs-1.12.0,pypsa-de-elec-dfp +pypsa-de-elec-dfp,50-3h,scip,10.0.0,2025.0,TO,Timeout,86400.0,21614.26,,,,86400.0,86400.0,benchmark-instance-new-pypsa-12,20251227-new-pypsa,2025-12-30 04:09:29.656945,c4-highmem-16,us-central1-a,305f3ff,pypsa-de-elec-dfp-50-3h,scip-10.0.0,pypsa-de-elec-dfp +pypsa-de-elec-trex_copt-dfp,10-3h,glpk,5.0,2020.0,TO,Timeout,3600.0,415.264,,,,3600.0,3600.0,benchmark-instance-new-pypsa-25,20251227-new-pypsa,2025-12-27 07:44:13.152392,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-dfp-10-3h,glpk-5.0,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,10-3h,gurobi,10.0.0,2022.0,ok,optimal,845.044507093,2099.044,7543506567.31576,,,837.3354268074036,3600.0,benchmark-instance-new-pypsa-25,20251227-new-pypsa,2025-12-27 08:48:24.461697,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-dfp-10-3h,gurobi-10.0.0,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,10-3h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1724.8,,,,3600.0,3600.0,benchmark-instance-new-pypsa-25,20251227-new-pypsa,2025-12-27 09:06:12.571582,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-dfp-10-3h,highs-1.5.0.dev0,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,10-3h,scip,8.0.3,2022.0,TO,Timeout,3600.0,5833.776,,,,3600.0,3600.0,benchmark-instance-new-pypsa-25,20251227-new-pypsa,2025-12-27 10:09:49.881084,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-dfp-10-3h,scip-8.0.3,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,10-3h,gurobi,11.0.0,2023.0,ok,optimal,760.1178567199986,2038.932,7543506567.315741,,,753.8634669780731,3600.0,benchmark-instance-new-pypsa-25,20251227-new-pypsa,2025-12-27 11:16:55.709450,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-dfp-10-3h,gurobi-11.0.0,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,10-3h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,1516.72,,,,3600.0,3600.0,benchmark-instance-new-pypsa-25,20251227-new-pypsa,2025-12-27 11:33:15.843892,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-dfp-10-3h,highs-1.6.0.dev0,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,10-3h,scip,8.1.0,2023.0,TO,Timeout,3600.0,5850.908,,,,3600.0,3600.0,benchmark-instance-new-pypsa-25,20251227-new-pypsa,2025-12-27 12:36:51.507361,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-dfp-10-3h,scip-8.1.0,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,10-3h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,445.872,,,,3600.0,3600.0,benchmark-instance-new-pypsa-25,20251227-new-pypsa,2025-12-27 13:40:28.602335,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-dfp-10-3h,cbc-2.10.11,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,10-3h,gurobi,12.0.0,2024.0,ok,optimal,1307.289218648002,2031.476,7543506567.315691,,,1301.0400331020355,3600.0,benchmark-instance-new-pypsa-25,20251227-new-pypsa,2025-12-27 14:44:34.006749,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-dfp-10-3h,gurobi-12.0.0,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,10-3h,highs,1.9.0,2024.0,TO,Timeout,3600.0,1584.28,,,,3600.0,3600.0,benchmark-instance-new-pypsa-25,20251227-new-pypsa,2025-12-27 15:10:05.348753,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-dfp-10-3h,highs-1.9.0,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,10-3h,scip,9.2.0,2024.0,TO,Timeout,3600.0,5854.152,,,,3600.0,3600.0,benchmark-instance-new-pypsa-25,20251227-new-pypsa,2025-12-27 16:13:42.718409,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-dfp-10-3h,scip-9.2.0,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,10-3h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,428.812,,,,3600.0,3600.0,benchmark-instance-new-pypsa-25,20251227-new-pypsa,2025-12-27 17:17:21.611002,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-dfp-10-3h,cbc-2.10.12,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,10-3h,gurobi,13.0.0,2025.0,ok,optimal,1384.192210885005,2052.668,7543506567.315668,,,1378.0421838760376,3600.0,benchmark-instance-new-pypsa-25,20251227-new-pypsa,2025-12-27 18:21:26.115857,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-dfp-10-3h,gurobi-13.0.0,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,10-3h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,540.994438709,1954.02,7543506567.3,,,540.994438709,3600.0,benchmark-instance-new-pypsa-25,20251227-new-pypsa,2025-12-27 18:48:11.399944,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-dfp-10-3h,highs-hipo-1.12.0-hipo,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,10-3h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,3600.0,163.848,,,,3600.0,3600.0,benchmark-instance-new-pypsa-25,20251227-new-pypsa,2025-12-27 18:57:13.141343,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-dfp-10-3h,highs-ipx-1.12.0-hipo,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,10-3h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1549.848,,,,3600.0,3600.0,benchmark-instance-new-pypsa-25,20251227-new-pypsa,2025-12-27 20:00:50.528560,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-dfp-10-3h,highs-1.12.0,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,10-3h,scip,10.0.0,2025.0,TO,Timeout,3600.0,5863.656,,,,3600.0,3600.0,benchmark-instance-new-pypsa-25,20251227-new-pypsa,2025-12-27 21:04:27.341645,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-trex_copt-dfp-10-3h,scip-10.0.0,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,20-1h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,1742.468,,,,86400.0,86400.0,benchmark-instance-new-pypsa-03,20251227-new-pypsa,2025-12-27 07:54:06.381751,c4-highmem-16,us-east1-b,305f3ff,pypsa-de-elec-trex_copt-dfp-20-1h,cbc-2.10.12,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,20-1h,gurobi,13.0.0,2025.0,ok,optimal,1113.1540554120002,14167.196,7559773523.414247,,,1081.3874509334564,86400.0,benchmark-instance-new-pypsa-03,20251227-new-pypsa,2025-12-28 07:57:44.503970,c4-highmem-16,us-east1-b,305f3ff,pypsa-de-elec-trex_copt-dfp-20-1h,gurobi-13.0.0,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,20-1h,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,86400.0,164.232,,,,86400.0,86400.0,benchmark-instance-new-pypsa-03,20251227-new-pypsa,2025-12-28 08:20:08.058843,c4-highmem-16,us-east1-b,305f3ff,pypsa-de-elec-trex_copt-dfp-20-1h,highs-hipo-1.12.0-hipo,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,20-1h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,86400.0,162.996,,,,86400.0,86400.0,benchmark-instance-new-pypsa-03,20251227-new-pypsa,2025-12-29 08:23:29.060818,c4-highmem-16,us-east1-b,305f3ff,pypsa-de-elec-trex_copt-dfp-20-1h,highs-ipx-1.12.0-hipo,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,20-1h,highs,1.12.0,2025.0,TO,Timeout,86400.0,6467.876,,,,86400.0,86400.0,benchmark-instance-new-pypsa-03,20251227-new-pypsa,2025-12-30 08:26:52.391280,c4-highmem-16,us-east1-b,305f3ff,pypsa-de-elec-trex_copt-dfp-20-1h,highs-1.12.0,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,20-1h,scip,10.0.0,2025.0,TO,Timeout,86400.0,30567.264,,,,86400.0,86400.0,benchmark-instance-new-pypsa-03,20251227-new-pypsa,2025-12-31 08:30:16.240158,c4-highmem-16,us-east1-b,305f3ff,pypsa-de-elec-trex_copt-dfp-20-1h,scip-10.0.0,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec,10-3h,glpk,5.0,2020.0,TO,Timeout,3600.0,415.388,,,,3600.0,3600.0,benchmark-instance-new-pypsa-28,20251227-new-pypsa,2025-12-27 07:44:12.227872,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-10-3h,glpk-5.0,pypsa-de-elec +pypsa-de-elec,10-3h,gurobi,10.0.0,2022.0,ok,optimal,1518.5415935190003,2047.172,5588501780.18354,,,1510.7062170505524,3600.0,benchmark-instance-new-pypsa-28,20251227-new-pypsa,2025-12-27 08:48:24.620409,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-10-3h,gurobi-10.0.0,pypsa-de-elec +pypsa-de-elec,10-3h,highs,1.5.0.dev0,2022.0,ok,optimal,3254.447021516001,2283.312,5588501780.18354,,,3246.096278429032,3600.0,benchmark-instance-new-pypsa-28,20251227-new-pypsa,2025-12-27 09:17:23.199785,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-10-3h,highs-1.5.0.dev0,pypsa-de-elec +pypsa-de-elec,10-3h,scip,8.0.3,2022.0,TO,Timeout,3600.0,5234.068,,,,3600.0,3600.0,benchmark-instance-new-pypsa-28,20251227-new-pypsa,2025-12-27 10:11:45.448477,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-10-3h,scip-8.0.3,pypsa-de-elec +pypsa-de-elec,10-3h,gurobi,11.0.0,2023.0,ok,optimal,819.6053401810004,1986.12,5588501780.183531,,,813.4969561100006,3600.0,benchmark-instance-new-pypsa-28,20251227-new-pypsa,2025-12-27 11:18:39.237101,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-10-3h,gurobi-11.0.0,pypsa-de-elec +pypsa-de-elec,10-3h,highs,1.6.0.dev0,2023.0,ok,optimal,3147.7450729970005,2249.492,5588501780.18354,,,3141.946448326111,3600.0,benchmark-instance-new-pypsa-28,20251227-new-pypsa,2025-12-27 11:35:58.481465,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-10-3h,highs-1.6.0.dev0,pypsa-de-elec +pypsa-de-elec,10-3h,scip,8.1.0,2023.0,TO,Timeout,3600.0,5249.064,,,,3600.0,3600.0,benchmark-instance-new-pypsa-28,20251227-new-pypsa,2025-12-27 12:28:30.699514,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-10-3h,scip-8.1.0,pypsa-de-elec +pypsa-de-elec,10-3h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,446.416,,,,3600.0,3600.0,benchmark-instance-new-pypsa-28,20251227-new-pypsa,2025-12-27 13:32:13.741042,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-10-3h,cbc-2.10.11,pypsa-de-elec +pypsa-de-elec,10-3h,gurobi,12.0.0,2024.0,ok,optimal,714.6875555160004,2022.704,5588501780.183533,,,708.0701150894165,3600.0,benchmark-instance-new-pypsa-28,20251227-new-pypsa,2025-12-27 14:36:27.609724,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-10-3h,gurobi-12.0.0,pypsa-de-elec +pypsa-de-elec,10-3h,highs,1.9.0,2024.0,ok,optimal,1678.788813866002,2166.004,5588501780.183577,,,1668.590735912323,3600.0,benchmark-instance-new-pypsa-28,20251227-new-pypsa,2025-12-27 14:52:22.237330,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-10-3h,highs-1.9.0,pypsa-de-elec +pypsa-de-elec,10-3h,scip,9.2.0,2024.0,TO,Timeout,3600.0,5230.648,,,,3600.0,3600.0,benchmark-instance-new-pypsa-28,20251227-new-pypsa,2025-12-27 15:20:32.256352,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-10-3h,scip-9.2.0,pypsa-de-elec +pypsa-de-elec,10-3h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,429.452,,,,3600.0,3600.0,benchmark-instance-new-pypsa-28,20251227-new-pypsa,2025-12-27 16:24:18.113820,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-10-3h,cbc-2.10.12,pypsa-de-elec +pypsa-de-elec,10-3h,gurobi,13.0.0,2025.0,ok,optimal,1067.3663923450003,2036.396,5588501780.183527,,,1060.9421660900116,3600.0,benchmark-instance-new-pypsa-28,20251227-new-pypsa,2025-12-27 17:28:33.540730,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-10-3h,gurobi-13.0.0,pypsa-de-elec +pypsa-de-elec,10-3h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,369.8622583690012,1600.796,5588501780.3,,,369.8622583690012,3600.0,benchmark-instance-new-pypsa-28,20251227-new-pypsa,2025-12-27 17:50:09.002966,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-10-3h,highs-hipo-1.12.0-hipo,pypsa-de-elec +pypsa-de-elec,10-3h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,1917.7374094050028,1367.416,5588501780.3,,,1917.7374094050028,3600.0,benchmark-instance-new-pypsa-28,20251227-new-pypsa,2025-12-27 17:56:19.658398,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-10-3h,highs-ipx-1.12.0-hipo,pypsa-de-elec +pypsa-de-elec,10-3h,highs,1.12.0,2025.0,ok,optimal,1723.4433951399988,2253.656,5588501780.1835575,,,1716.5741188526154,3600.0,benchmark-instance-new-pypsa-28,20251227-new-pypsa,2025-12-27 18:28:18.164816,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-10-3h,highs-1.12.0,pypsa-de-elec +pypsa-de-elec,10-3h,scip,10.0.0,2025.0,TO,Timeout,3600.0,5237.088,,,,3600.0,3600.0,benchmark-instance-new-pypsa-28,20251227-new-pypsa,2025-12-27 19:00:49.662913,c4-standard-2,us-central1-a,305f3ff,pypsa-de-elec-10-3h,scip-10.0.0,pypsa-de-elec +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,145.832,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 08:50:39.011892,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332 +pglib_opf_case162_ieee_dtc,162-NA,glpk,5.0,2020.0,TO,Timeout,3600.0,122.408,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 09:54:25.833156,c4-standard-2,us-central1-a,305f3ff,pglib_opf_case162_ieee_dtc-162-NA,glpk-5.0,pglib_opf_case162_ieee_dtc +SWITCH-planning-reserves,3-6ts,glpk,5.0,2020.0,ER,,,125.108,,,,,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 10:58:12.202636,c4-standard-2,us-central1-a,305f3ff,SWITCH-planning-reserves-3-6ts,glpk-5.0,SWITCH-planning-reserves +OEMOF-house-without-nonconvex-investment,1-365ts,glpk,5.0,2020.0,TO,Timeout,3600.0,122.996,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 10:58:12.721276,c4-standard-2,us-central1-a,305f3ff,OEMOF-house-without-nonconvex-investment-1-365ts,glpk-5.0,OEMOF-house-without-nonconvex-investment +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,125.516,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 12:01:59.624718,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29 +tulipa-1_EU_investment_simple,28-13h,glpk,5.0,2020.0,ok,unknown,351.35213184299937,282.144,1191044225.0,,,,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 13:05:45.648257,c4-standard-2,us-central1-a,305f3ff,tulipa-1_EU_investment_simple-28-13h,glpk-5.0,tulipa-1_EU_investment_simple +genx-3_three_zones_w_co2_capture-no_uc,3-1h,glpk,5.0,2020.0,ok,optimal,183.5365734740008,254.132,6371.601825,,,,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 13:11:37.508131,c4-standard-2,us-central1-a,305f3ff,genx-3_three_zones_w_co2_capture-no_uc-3-1h,glpk-5.0,genx-3_three_zones_w_co2_capture-no_uc +times-etimeseu-france-elec+heat-co2-multi_stage,1-64ts,glpk,5.0,2020.0,warning,unknown,0.0305231689999345,167.592,,,,,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 13:14:41.565395,c4-standard-2,us-central1-a,305f3ff,times-etimeseu-france-elec+heat-co2-multi_stage-1-64ts,glpk-5.0,times-etimeseu-france-elec+heat-co2-multi_stage +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332,73-1h,gurobi,10.0.0,2022.0,TO,Timeout,3600.0,647.62,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 13:15:23.548227,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332,73-1h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,973.944,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 14:19:06.872894,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332,73-1h,scip,8.0.3,2022.0,TO,Timeout,3600.0,1457.172,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 15:22:47.497469,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332 +pglib_opf_case162_ieee_dtc,162-NA,gurobi,10.0.0,2022.0,ok,optimal,70.70870240500153,185.504,97703.85568543524,,,70.38848304748535,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 16:26:19.196237,c4-standard-2,us-central1-a,305f3ff,pglib_opf_case162_ieee_dtc-162-NA,gurobi-10.0.0,pglib_opf_case162_ieee_dtc +pglib_opf_case162_ieee_dtc,162-NA,highs,1.5.0.dev0,2022.0,warning,infeasible,1084.419532691998,218.816,,,,1084.4097211360931,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 16:27:30.533092,c4-standard-2,us-central1-a,305f3ff,pglib_opf_case162_ieee_dtc-162-NA,highs-1.5.0.dev0,pglib_opf_case162_ieee_dtc +pglib_opf_case162_ieee_dtc,162-NA,scip,8.0.3,2022.0,TO,Timeout,3600.0,627.1,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 16:45:35.579826,c4-standard-2,us-central1-a,305f3ff,pglib_opf_case162_ieee_dtc-162-NA,scip-8.0.3,pglib_opf_case162_ieee_dtc +SWITCH-planning-reserves,3-6ts,gurobi,10.0.0,2022.0,ok,optimal,0.3159273179990123,159.456,135901915.10941112,,,0.005976915359497,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 17:49:47.835520,c4-standard-2,us-central1-a,305f3ff,SWITCH-planning-reserves-3-6ts,gurobi-10.0.0,SWITCH-planning-reserves +SWITCH-planning-reserves,3-6ts,highs,1.5.0.dev0,2022.0,ok,optimal,0.0105676499988476,148.388,135901915.10941112,,,0.0035021305084228,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 17:49:48.793039,c4-standard-2,us-central1-a,305f3ff,SWITCH-planning-reserves-3-6ts,highs-1.5.0.dev0,SWITCH-planning-reserves +SWITCH-planning-reserves,3-6ts,scip,8.0.3,2022.0,ok,optimal,0.0204318340001918,162.192,135901915.10941115,,,0.0115959999999999,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 17:49:49.437833,c4-standard-2,us-central1-a,305f3ff,SWITCH-planning-reserves-3-6ts,scip-8.0.3,SWITCH-planning-reserves +OEMOF-house-without-nonconvex-investment,1-365ts,gurobi,10.0.0,2022.0,ok,optimal,1.4450012010020146,166.204,5544.6786027555645,,,1.4259209632873535,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 17:49:50.094856,c4-standard-2,us-central1-a,305f3ff,OEMOF-house-without-nonconvex-investment-1-365ts,gurobi-10.0.0,OEMOF-house-without-nonconvex-investment +OEMOF-house-without-nonconvex-investment,1-365ts,highs,1.5.0.dev0,2022.0,ok,optimal,1.2608567140014202,172.852,5544.6786027555645,,,1.2430157661437988,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 17:49:52.195672,c4-standard-2,us-central1-a,305f3ff,OEMOF-house-without-nonconvex-investment-1-365ts,highs-1.5.0.dev0,OEMOF-house-without-nonconvex-investment +OEMOF-house-without-nonconvex-investment,1-365ts,scip,8.0.3,2022.0,ok,optimal,2674.2500486850004,306.132,5544.678602755559,,,2674.226218,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 17:49:54.110478,c4-standard-2,us-central1-a,305f3ff,OEMOF-house-without-nonconvex-investment-1-365ts,scip-8.0.3,OEMOF-house-without-nonconvex-investment +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29,73-1h,gurobi,10.0.0,2022.0,ok,optimal,5.560446960997069,193.4,316166.1922811257,,,5.223098039627075,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 18:34:29.015361,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29,73-1h,highs,1.5.0.dev0,2022.0,ok,optimal,72.35034419899603,377.228,316166.1922811258,,,72.29968047142029,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 18:34:35.258787,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29,73-1h,scip,8.0.3,2022.0,ok,optimal,67.24422724600299,365.576,316166.1922811258,,,67.201038,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 18:35:48.284100,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29 +tulipa-1_EU_investment_simple,28-13h,gurobi,10.0.0,2022.0,ok,optimal,10.257649787003174,575.64,1201109872.6358657,,,9.637546062469482,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 18:36:56.253109,c4-standard-2,us-central1-a,305f3ff,tulipa-1_EU_investment_simple-28-13h,gurobi-10.0.0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-13h,highs,1.5.0.dev0,2022.0,ok,optimal,111.46874551699877,1806.852,1201065322.6590817,,,110.50428438186646,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 18:37:07.962218,c4-standard-2,us-central1-a,305f3ff,tulipa-1_EU_investment_simple-28-13h,highs-1.5.0.dev0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-13h,scip,8.0.3,2022.0,ok,optimal,99.34918746100448,1534.272,1201153267.0010223,,,98.11609,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 18:39:00.889891,c4-standard-2,us-central1-a,305f3ff,tulipa-1_EU_investment_simple-28-13h,scip-8.0.3,tulipa-1_EU_investment_simple +genx-3_three_zones_w_co2_capture-no_uc,3-1h,gurobi,10.0.0,2022.0,ok,optimal,12.231587995003792,443.628,6371.601824921134,,,11.026207208633425,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 18:40:41.953914,c4-standard-2,us-central1-a,305f3ff,genx-3_three_zones_w_co2_capture-no_uc-3-1h,gurobi-10.0.0,genx-3_three_zones_w_co2_capture-no_uc +genx-3_three_zones_w_co2_capture-no_uc,3-1h,highs,1.5.0.dev0,2022.0,ok,optimal,53.90097429999878,488.46,6371.601824921261,,,53.02526116371155,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 18:40:55.523304,c4-standard-2,us-central1-a,305f3ff,genx-3_three_zones_w_co2_capture-no_uc-3-1h,highs-1.5.0.dev0,genx-3_three_zones_w_co2_capture-no_uc +genx-3_three_zones_w_co2_capture-no_uc,3-1h,scip,8.0.3,2022.0,ok,optimal,136.216793323998,1013.06,6371.601824921385,,,135.441171,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 18:41:50.760606,c4-standard-2,us-central1-a,305f3ff,genx-3_three_zones_w_co2_capture-no_uc-3-1h,scip-8.0.3,genx-3_three_zones_w_co2_capture-no_uc +times-etimeseu-france-elec+heat-co2-multi_stage,1-64ts,gurobi,10.0.0,2022.0,ok,optimal,5.736057112997514,331.66,427842.1201974795,,,5.077528953552246,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 18:44:08.502772,c4-standard-2,us-central1-a,305f3ff,times-etimeseu-france-elec+heat-co2-multi_stage-1-64ts,gurobi-10.0.0,times-etimeseu-france-elec+heat-co2-multi_stage +times-etimeseu-france-elec+heat-co2-multi_stage,1-64ts,highs,1.5.0.dev0,2022.0,ok,optimal,20.71305102000042,362.488,427842.1201974797,,,19.98507046699524,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 18:44:15.434339,c4-standard-2,us-central1-a,305f3ff,times-etimeseu-france-elec+heat-co2-multi_stage-1-64ts,highs-1.5.0.dev0,times-etimeseu-france-elec+heat-co2-multi_stage +times-etimeseu-france-elec+heat-co2-multi_stage,1-64ts,scip,8.0.3,2022.0,ok,optimal,90.4243320339956,1858.504,427842.1201974794,,,89.722887,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 18:44:37.330475,c4-standard-2,us-central1-a,305f3ff,times-etimeseu-france-elec+heat-co2-multi_stage-1-64ts,scip-8.0.3,times-etimeseu-france-elec+heat-co2-multi_stage +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332,73-1h,gurobi,11.0.0,2023.0,TO,Timeout,3600.0,636.564,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 18:53:12.383261,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332,73-1h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,1014.808,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 19:57:03.166287,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332,73-1h,scip,8.1.0,2023.0,TO,Timeout,3600.0,1521.252,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 21:00:36.662051,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332,73-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,177.32,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 22:04:06.779509,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332 +pglib_opf_case162_ieee_dtc,162-NA,gurobi,11.0.0,2023.0,ok,optimal,41.545159887005866,184.32,97701.26756135892,,,41.28594708442688,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 23:07:39.281734,c4-standard-2,us-central1-a,305f3ff,pglib_opf_case162_ieee_dtc-162-NA,gurobi-11.0.0,pglib_opf_case162_ieee_dtc +pglib_opf_case162_ieee_dtc,162-NA,highs,1.6.0.dev0,2023.0,warning,infeasible,1203.754954801996,229.376,,,,1203.748726129532,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 23:08:21.564565,c4-standard-2,us-central1-a,305f3ff,pglib_opf_case162_ieee_dtc-162-NA,highs-1.6.0.dev0,pglib_opf_case162_ieee_dtc +pglib_opf_case162_ieee_dtc,162-NA,scip,8.1.0,2023.0,TO,Timeout,3600.0,641.608,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-28 23:28:26.044728,c4-standard-2,us-central1-a,305f3ff,pglib_opf_case162_ieee_dtc-162-NA,scip-8.1.0,pglib_opf_case162_ieee_dtc +pglib_opf_case162_ieee_dtc,162-NA,cbc,2.10.11,2023.0,TO,Timeout,3600.0,154.364,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 00:31:55.703161,c4-standard-2,us-central1-a,305f3ff,pglib_opf_case162_ieee_dtc-162-NA,cbc-2.10.11,pglib_opf_case162_ieee_dtc +SWITCH-planning-reserves,3-6ts,gurobi,11.0.0,2023.0,ok,optimal,0.2567802240009769,169.096,135901915.10941112,,,0.0056791305541992,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 01:35:26.035083,c4-standard-2,us-central1-a,305f3ff,SWITCH-planning-reserves-3-6ts,gurobi-11.0.0,SWITCH-planning-reserves +SWITCH-planning-reserves,3-6ts,highs,1.6.0.dev0,2023.0,ok,optimal,0.0100027529988437,159.008,135901915.10941112,,,0.0036525726318359,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 01:35:27.036794,c4-standard-2,us-central1-a,305f3ff,SWITCH-planning-reserves-3-6ts,highs-1.6.0.dev0,SWITCH-planning-reserves +SWITCH-planning-reserves,3-6ts,scip,8.1.0,2023.0,ok,optimal,0.0192822850003722,172.616,135901915.10941115,,,0.011411,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 01:35:27.773862,c4-standard-2,us-central1-a,305f3ff,SWITCH-planning-reserves-3-6ts,scip-8.1.0,SWITCH-planning-reserves +SWITCH-planning-reserves,3-6ts,cbc,2.10.11,2023.0,ok,optimal,0.0494315210016793,157.072,135901915.10941112,,,0.03,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 01:35:28.534320,c4-standard-2,us-central1-a,305f3ff,SWITCH-planning-reserves-3-6ts,cbc-2.10.11,SWITCH-planning-reserves +OEMOF-house-without-nonconvex-investment,1-365ts,gurobi,11.0.0,2023.0,ok,optimal,0.606622385996161,173.616,5544.678602755564,,,0.5920908451080322,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 01:35:29.306873,c4-standard-2,us-central1-a,305f3ff,OEMOF-house-without-nonconvex-investment-1-365ts,gurobi-11.0.0,OEMOF-house-without-nonconvex-investment +OEMOF-house-without-nonconvex-investment,1-365ts,highs,1.6.0.dev0,2023.0,ok,optimal,1.2555787329984014,184.696,5544.6786027555645,,,1.238245725631714,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 01:35:30.648835,c4-standard-2,us-central1-a,305f3ff,OEMOF-house-without-nonconvex-investment-1-365ts,highs-1.6.0.dev0,OEMOF-house-without-nonconvex-investment +OEMOF-house-without-nonconvex-investment,1-365ts,scip,8.1.0,2023.0,ok,optimal,2656.1283029900005,312.144,5544.678602755559,,,2656.106524,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 01:35:32.666669,c4-standard-2,us-central1-a,305f3ff,OEMOF-house-without-nonconvex-investment-1-365ts,scip-8.1.0,OEMOF-house-without-nonconvex-investment +OEMOF-house-without-nonconvex-investment,1-365ts,cbc,2.10.11,2023.0,ok,optimal,393.3393381900023,159.684,5544.67860276,,,393.3,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 02:19:49.531750,c4-standard-2,us-central1-a,305f3ff,OEMOF-house-without-nonconvex-investment-1-365ts,cbc-2.10.11,OEMOF-house-without-nonconvex-investment +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29,73-1h,gurobi,11.0.0,2023.0,ok,optimal,6.095935992001614,200.188,316166.19228112587,,,4.448256969451904,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 02:26:23.603693,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29,73-1h,highs,1.6.0.dev0,2023.0,ok,optimal,67.02957998700003,383.356,316166.1922811258,,,66.99979138374329,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 02:26:30.452067,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29,73-1h,scip,8.1.0,2023.0,ok,optimal,63.43979724500241,381.812,316166.1922811258,,,63.398235,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 02:27:38.228018,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29,73-1h,cbc,2.10.11,2023.0,ok,optimal,2356.058823377003,159.584,316166.19228113,,,2356.01,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 02:28:42.447161,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29 +tulipa-1_EU_investment_simple,28-13h,gurobi,11.0.0,2023.0,ok,optimal,6.3947615360084455,578.328,1201107611.7220223,,,5.67854905128479,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 03:11:29.145249,c4-standard-2,us-central1-a,305f3ff,tulipa-1_EU_investment_simple-28-13h,gurobi-11.0.0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-13h,highs,1.6.0.dev0,2023.0,ok,optimal,99.23825413700251,1900.74,1201065322.6590817,,,98.62405204772948,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 03:11:36.736617,c4-standard-2,us-central1-a,305f3ff,tulipa-1_EU_investment_simple-28-13h,highs-1.6.0.dev0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-13h,scip,8.1.0,2023.0,ok,optimal,95.79687168799865,1476.02,1201153267.0010223,,,94.750048,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 03:13:17.159473,c4-standard-2,us-central1-a,305f3ff,tulipa-1_EU_investment_simple-28-13h,scip-8.1.0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-13h,cbc,2.10.11,2023.0,ok,optimal,239.7106627559988,743.024,1201137235.09714,,,239.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 03:14:54.437561,c4-standard-2,us-central1-a,305f3ff,tulipa-1_EU_investment_simple-28-13h,cbc-2.10.11,tulipa-1_EU_investment_simple +genx-3_three_zones_w_co2_capture-no_uc,3-1h,gurobi,11.0.0,2023.0,ok,optimal,11.430480994997197,444.82,6371.601824921143,,,10.397307872772217,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 03:18:55.271384,c4-standard-2,us-central1-a,305f3ff,genx-3_three_zones_w_co2_capture-no_uc-3-1h,gurobi-11.0.0,genx-3_three_zones_w_co2_capture-no_uc +genx-3_three_zones_w_co2_capture-no_uc,3-1h,highs,1.6.0.dev0,2023.0,ok,optimal,51.92965636099689,496.956,6371.601824921261,,,51.20230460166931,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 03:19:07.996252,c4-standard-2,us-central1-a,305f3ff,genx-3_three_zones_w_co2_capture-no_uc-3-1h,highs-1.6.0.dev0,genx-3_three_zones_w_co2_capture-no_uc +genx-3_three_zones_w_co2_capture-no_uc,3-1h,scip,8.1.0,2023.0,ok,optimal,133.41798753800686,1015.952,6371.601824921385,,,132.776884,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 03:20:01.197697,c4-standard-2,us-central1-a,305f3ff,genx-3_three_zones_w_co2_capture-no_uc-3-1h,scip-8.1.0,genx-3_three_zones_w_co2_capture-no_uc +genx-3_three_zones_w_co2_capture-no_uc,3-1h,cbc,2.10.11,2023.0,ok,optimal,27.16483882599277,300.556,6371.60182492,,,,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 03:22:16.140806,c4-standard-2,us-central1-a,305f3ff,genx-3_three_zones_w_co2_capture-no_uc-3-1h,cbc-2.10.11,genx-3_three_zones_w_co2_capture-no_uc +times-etimeseu-france-elec+heat-co2-multi_stage,1-64ts,gurobi,11.0.0,2023.0,ok,optimal,5.536229065997759,336.084,427842.1201974795,,,5.033726930618286,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 03:22:44.574504,c4-standard-2,us-central1-a,305f3ff,times-etimeseu-france-elec+heat-co2-multi_stage-1-64ts,gurobi-11.0.0,times-etimeseu-france-elec+heat-co2-multi_stage +times-etimeseu-france-elec+heat-co2-multi_stage,1-64ts,highs,1.6.0.dev0,2023.0,ok,optimal,19.83914787400863,386.888,427842.1201974797,,,19.34779691696167,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 03:22:51.170759,c4-standard-2,us-central1-a,305f3ff,times-etimeseu-france-elec+heat-co2-multi_stage-1-64ts,highs-1.6.0.dev0,times-etimeseu-france-elec+heat-co2-multi_stage +times-etimeseu-france-elec+heat-co2-multi_stage,1-64ts,scip,8.1.0,2023.0,ok,optimal,88.40449107300083,1866.124,427842.1201974794,,,87.800358,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 03:23:12.066302,c4-standard-2,us-central1-a,305f3ff,times-etimeseu-france-elec+heat-co2-multi_stage-1-64ts,scip-8.1.0,times-etimeseu-france-elec+heat-co2-multi_stage +times-etimeseu-france-elec+heat-co2-multi_stage,1-64ts,cbc,2.10.11,2023.0,ER,,,199.228,,,,,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 03:24:41.773287,c4-standard-2,us-central1-a,305f3ff,times-etimeseu-france-elec+heat-co2-multi_stage-1-64ts,cbc-2.10.11,times-etimeseu-france-elec+heat-co2-multi_stage +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332,73-1h,gurobi,12.0.0,2024.0,TO,Timeout,3600.0,646.616,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 03:25:11.457512,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332,73-1h,highs,1.9.0,2024.0,TO,Timeout,3600.0,1032.248,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 04:28:41.775859,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332,73-1h,scip,9.2.0,2024.0,TO,Timeout,3600.0,1503.84,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 05:32:12.641452,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332,73-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,159.976,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 06:35:43.807451,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332 +pglib_opf_case162_ieee_dtc,162-NA,gurobi,12.0.0,2024.0,ok,optimal,60.19394027400995,180.38,97701.26756130432,0.0,0.0,59.92341995239258,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 07:39:50.276922,c4-standard-2,us-central1-a,305f3ff,pglib_opf_case162_ieee_dtc-162-NA,gurobi-12.0.0,pglib_opf_case162_ieee_dtc +pglib_opf_case162_ieee_dtc,162-NA,highs,1.9.0,2024.0,TO,Timeout,3600.0,311.848,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 07:40:51.058598,c4-standard-2,us-central1-a,305f3ff,pglib_opf_case162_ieee_dtc-162-NA,highs-1.9.0,pglib_opf_case162_ieee_dtc +pglib_opf_case162_ieee_dtc,162-NA,scip,9.2.0,2024.0,TO,Timeout,3600.0,623.556,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 08:44:45.767094,c4-standard-2,us-central1-a,305f3ff,pglib_opf_case162_ieee_dtc-162-NA,scip-9.2.0,pglib_opf_case162_ieee_dtc +pglib_opf_case162_ieee_dtc,162-NA,cbc,2.10.12,2024.0,TO,Timeout,3600.0,136.788,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 09:48:32.920989,c4-standard-2,us-central1-a,305f3ff,pglib_opf_case162_ieee_dtc-162-NA,cbc-2.10.12,pglib_opf_case162_ieee_dtc +SWITCH-planning-reserves,3-6ts,gurobi,12.0.0,2024.0,ok,optimal,0.3081980119895888,154.096,135901915.10941112,0.0,8.994016188165039e-05,0.0060310363769531,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 10:52:11.822414,c4-standard-2,us-central1-a,305f3ff,SWITCH-planning-reserves-3-6ts,gurobi-12.0.0,SWITCH-planning-reserves +SWITCH-planning-reserves,3-6ts,highs,1.9.0,2024.0,ok,optimal,0.0116209169937064,143.344,135901915.10941112,0.0,0.0,0.0041170120239257,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 10:52:12.646713,c4-standard-2,us-central1-a,305f3ff,SWITCH-planning-reserves-3-6ts,highs-1.9.0,SWITCH-planning-reserves +SWITCH-planning-reserves,3-6ts,scip,9.2.0,2024.0,ok,optimal,0.0194362309994176,156.988,135901915.10941115,0.0,0.0,0.011642,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 10:52:13.170288,c4-standard-2,us-central1-a,305f3ff,SWITCH-planning-reserves-3-6ts,scip-9.2.0,SWITCH-planning-reserves +SWITCH-planning-reserves,3-6ts,cbc,2.10.12,2024.0,ok,optimal,0.0585399630072061,142.236,135901915.10941112,0.0,,0.03,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 10:52:13.699730,c4-standard-2,us-central1-a,305f3ff,SWITCH-planning-reserves-3-6ts,cbc-2.10.12,SWITCH-planning-reserves +OEMOF-house-without-nonconvex-investment,1-365ts,gurobi,12.0.0,2024.0,ok,optimal,1.3623321420018328,159.332,5544.6786027555645,0.0,9.084057484404188e-05,1.346724033355713,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 10:52:14.265563,c4-standard-2,us-central1-a,305f3ff,OEMOF-house-without-nonconvex-investment-1-365ts,gurobi-12.0.0,OEMOF-house-without-nonconvex-investment +OEMOF-house-without-nonconvex-investment,1-365ts,highs,1.9.0,2024.0,ok,optimal,1.3325170230091317,163.928,5544.6786027555645,1.4432899320127035e-14,9.960454361130932e-06,1.3141067028045654,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 10:52:16.150335,c4-standard-2,us-central1-a,305f3ff,OEMOF-house-without-nonconvex-investment-1-365ts,highs-1.9.0,OEMOF-house-without-nonconvex-investment +OEMOF-house-without-nonconvex-investment,1-365ts,scip,9.2.0,2024.0,ok,optimal,2619.9419632229983,300.124,5544.678602755559,4.440892098500626e-16,0.0,2619.918824,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 10:52:18.014343,c4-standard-2,us-central1-a,305f3ff,OEMOF-house-without-nonconvex-investment-1-365ts,scip-9.2.0,OEMOF-house-without-nonconvex-investment +OEMOF-house-without-nonconvex-investment,1-365ts,cbc,2.10.12,2024.0,ok,optimal,422.18104054100695,148.56,5544.67860276,0.0,,422.12,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 11:35:58.492674,c4-standard-2,us-central1-a,305f3ff,OEMOF-house-without-nonconvex-investment-1-365ts,cbc-2.10.12,OEMOF-house-without-nonconvex-investment +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29,73-1h,gurobi,12.0.0,2024.0,ok,optimal,4.514982542008511,188.596,316166.1922811258,0.0,0.0,4.218513011932373,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 11:43:01.228912,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29,73-1h,highs,1.9.0,2024.0,ok,optimal,116.30953470499662,454.796,316166.19228060875,3.195838375948975e-14,5.620127264138029e-05,116.2531988620758,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 11:43:06.353811,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29,73-1h,scip,9.2.0,2024.0,ok,optimal,65.25701208801183,371.172,316166.1922811258,5.09940640461362e-16,0.0,65.214391,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 11:45:03.248555,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29,73-1h,cbc,2.10.12,2024.0,ok,optimal,2316.595940094994,149.808,316166.19228113,0.0,,2316.49,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 11:46:09.114585,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29 +tulipa-1_EU_investment_simple,28-13h,gurobi,12.0.0,2024.0,ok,optimal,6.216185780998785,573.972,1201108985.931106,0.0,9.816100772010912e-05,5.494509935379028,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 12:28:19.733287,c4-standard-2,us-central1-a,305f3ff,tulipa-1_EU_investment_simple-28-13h,gurobi-12.0.0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-13h,highs,1.9.0,2024.0,ok,optimal,110.6344869589957,1799.016,1201065322.6590817,8.526512829121202e-14,9.478675851476188e-05,109.59893655776978,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 12:28:27.460080,c4-standard-2,us-central1-a,305f3ff,tulipa-1_EU_investment_simple-28-13h,highs-1.9.0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-13h,scip,9.2.0,2024.0,ok,optimal,99.5372870459978,1512.188,1201153267.0010223,1.8758328224066645e-12,9.610584986787948e-05,98.461709,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 12:30:19.637415,c4-standard-2,us-central1-a,305f3ff,tulipa-1_EU_investment_simple-28-13h,scip-9.2.0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-13h,cbc,2.10.12,2024.0,ok,optimal,259.3384303919884,747.216,1201137235.09714,0.0,0.0,257.45,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 12:32:00.942313,c4-standard-2,us-central1-a,305f3ff,tulipa-1_EU_investment_simple-28-13h,cbc-2.10.12,tulipa-1_EU_investment_simple +genx-3_three_zones_w_co2_capture-no_uc,3-1h,gurobi,12.0.0,2024.0,ok,optimal,5.514799969008891,427.88,6371.601824921133,,,4.470582962036133,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 12:36:22.003187,c4-standard-2,us-central1-a,305f3ff,genx-3_three_zones_w_co2_capture-no_uc-3-1h,gurobi-12.0.0,genx-3_three_zones_w_co2_capture-no_uc +genx-3_three_zones_w_co2_capture-no_uc,3-1h,highs,1.9.0,2024.0,ok,optimal,76.76154013200721,473.22,6371.601824921261,,,75.6782808303833,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 12:36:29.315079,c4-standard-2,us-central1-a,305f3ff,genx-3_three_zones_w_co2_capture-no_uc-3-1h,highs-1.9.0,genx-3_three_zones_w_co2_capture-no_uc +genx-3_three_zones_w_co2_capture-no_uc,3-1h,scip,9.2.0,2024.0,ok,optimal,143.85528682600125,999.208,6371.601824921385,,,143.108923,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 12:37:47.967291,c4-standard-2,us-central1-a,305f3ff,genx-3_three_zones_w_co2_capture-no_uc-3-1h,scip-9.2.0,genx-3_three_zones_w_co2_capture-no_uc +genx-3_three_zones_w_co2_capture-no_uc,3-1h,cbc,2.10.12,2024.0,ok,optimal,29.937791124990326,340.224,6371.60182492,,,,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 12:40:13.909000,c4-standard-2,us-central1-a,305f3ff,genx-3_three_zones_w_co2_capture-no_uc-3-1h,cbc-2.10.12,genx-3_three_zones_w_co2_capture-no_uc +times-etimeseu-france-elec+heat-co2-multi_stage,1-64ts,gurobi,12.0.0,2024.0,ok,optimal,5.746646190003958,320.564,427842.1201974797,,,5.182789087295532,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 12:40:45.634247,c4-standard-2,us-central1-a,305f3ff,times-etimeseu-france-elec+heat-co2-multi_stage-1-64ts,gurobi-12.0.0,times-etimeseu-france-elec+heat-co2-multi_stage +times-etimeseu-france-elec+heat-co2-multi_stage,1-64ts,highs,1.9.0,2024.0,ok,optimal,20.290313808000064,362.168,427842.1201974798,,,19.3617160320282,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 12:40:53.063553,c4-standard-2,us-central1-a,305f3ff,times-etimeseu-france-elec+heat-co2-multi_stage-1-64ts,highs-1.9.0,times-etimeseu-france-elec+heat-co2-multi_stage +times-etimeseu-france-elec+heat-co2-multi_stage,1-64ts,scip,9.2.0,2024.0,ok,optimal,93.63738439900044,1851.168,427842.1201974794,,,92.964379,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 12:41:15.118056,c4-standard-2,us-central1-a,305f3ff,times-etimeseu-france-elec+heat-co2-multi_stage-1-64ts,scip-9.2.0,times-etimeseu-france-elec+heat-co2-multi_stage +times-etimeseu-france-elec+heat-co2-multi_stage,1-64ts,cbc,2.10.12,2024.0,ER,,,181.708,,,,,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 12:42:50.578930,c4-standard-2,us-central1-a,305f3ff,times-etimeseu-france-elec+heat-co2-multi_stage-1-64ts,cbc-2.10.12,times-etimeseu-france-elec+heat-co2-multi_stage +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332,73-1h,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,731.212,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 12:43:22.988150,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332,73-1h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1260.12,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 13:47:12.550299,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332 +Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332,73-1h,scip,10.0.0,2025.0,TO,Timeout,3600.0,1479.572,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 14:51:07.622336,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetDC_Horizon48_Day332 +pglib_opf_case162_ieee_dtc,162-NA,gurobi,13.0.0,2025.0,ok,optimal,142.40926164700068,208.4,97706.39353770492,0.0,5.246305935154222e-05,142.14490580558777,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 15:54:55.149614,c4-standard-2,us-central1-a,305f3ff,pglib_opf_case162_ieee_dtc-162-NA,gurobi-13.0.0,pglib_opf_case162_ieee_dtc +pglib_opf_case162_ieee_dtc,162-NA,highs,1.12.0,2025.0,TO,Timeout,3600.0,420.5,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 15:57:18.369584,c4-standard-2,us-central1-a,305f3ff,pglib_opf_case162_ieee_dtc-162-NA,highs-1.12.0,pglib_opf_case162_ieee_dtc +pglib_opf_case162_ieee_dtc,162-NA,scip,10.0.0,2025.0,TO,Timeout,3600.0,641.548,,,,3600.0,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 17:01:05.574448,c4-standard-2,us-central1-a,305f3ff,pglib_opf_case162_ieee_dtc-162-NA,scip-10.0.0,pglib_opf_case162_ieee_dtc +SWITCH-planning-reserves,3-6ts,gurobi,13.0.0,2025.0,ok,optimal,0.3006773980014259,181.94,135901915.10941112,0.0,8.994016188165039e-05,0.0054669380187988,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 18:04:38.022787,c4-standard-2,us-central1-a,305f3ff,SWITCH-planning-reserves-3-6ts,gurobi-13.0.0,SWITCH-planning-reserves +SWITCH-planning-reserves,3-6ts,highs,1.12.0,2025.0,ok,optimal,0.0141173590091057,170.628,135901915.10941112,0.0,0.0,0.0073225498199462,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 18:04:39.065735,c4-standard-2,us-central1-a,305f3ff,SWITCH-planning-reserves-3-6ts,highs-1.12.0,SWITCH-planning-reserves +SWITCH-planning-reserves,3-6ts,scip,10.0.0,2025.0,ok,optimal,0.0197497859917348,184.288,135901915.10941115,0.0,0.0,0.011252,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 18:04:39.809838,c4-standard-2,us-central1-a,305f3ff,SWITCH-planning-reserves-3-6ts,scip-10.0.0,SWITCH-planning-reserves +OEMOF-house-without-nonconvex-investment,1-365ts,gurobi,13.0.0,2025.0,ok,optimal,0.517853040000773,185.112,5544.6786027555645,0.0,9.678438976160912e-05,0.5020339488983154,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 18:04:40.568473,c4-standard-2,us-central1-a,305f3ff,OEMOF-house-without-nonconvex-investment-1-365ts,gurobi-13.0.0,OEMOF-house-without-nonconvex-investment +OEMOF-house-without-nonconvex-investment,1-365ts,highs,1.12.0,2025.0,ok,optimal,0.9948182839871152,191.908,5544.6786027555645,2.1405099914773018e-13,0.0,0.9778146743774414,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 18:04:41.839875,c4-standard-2,us-central1-a,305f3ff,OEMOF-house-without-nonconvex-investment-1-365ts,highs-1.12.0,OEMOF-house-without-nonconvex-investment +OEMOF-house-without-nonconvex-investment,1-365ts,scip,10.0.0,2025.0,ok,optimal,2656.2481192979903,327.392,5544.678602755559,4.440892098500626e-16,0.0,2656.222952,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 18:04:43.583602,c4-standard-2,us-central1-a,305f3ff,OEMOF-house-without-nonconvex-investment-1-365ts,scip-10.0.0,OEMOF-house-without-nonconvex-investment +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29,73-1h,gurobi,13.0.0,2025.0,ok,optimal,5.522124419003376,209.712,316166.1922811259,0.0,7.794483022265508e-05,5.259214162826538,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 18:49:00.615539,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29,73-1h,highs,1.12.0,2025.0,ok,optimal,95.62010984998778,435.7,316166.1922811259,3.108624468950438e-14,8.371907925554653e-05,95.58365154266356,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 18:49:07.012782,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29,73-1h,scip,10.0.0,2025.0,ok,optimal,67.04485109698726,385.724,316166.1922811258,5.09940640461362e-16,0.0,66.996801,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 18:50:43.498718,c4-standard-2,us-central1-a,305f3ff,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetCopperPlate_Horizon12_Day29 +tulipa-1_EU_investment_simple,28-13h,gurobi,13.0.0,2025.0,ok,optimal,7.965820034994977,528.024,1201110511.7891462,0.0,6.760354527228899e-05,7.456496953964233,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 18:51:51.444968,c4-standard-2,us-central1-a,305f3ff,tulipa-1_EU_investment_simple-28-13h,gurobi-13.0.0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-13h,highs,1.12.0,2025.0,ok,optimal,114.30496618100732,2147.18,1201041322.6590817,1.4210854715202006e-13,9.129761501874206e-05,113.50970578193665,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 18:52:00.961766,c4-standard-2,us-central1-a,305f3ff,tulipa-1_EU_investment_simple-28-13h,highs-1.12.0,tulipa-1_EU_investment_simple +tulipa-1_EU_investment_simple,28-13h,scip,10.0.0,2025.0,ok,optimal,105.31024946300022,1541.86,1201153267.0010223,1.8758328224066645e-12,9.610584986787948e-05,104.105043,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 18:53:56.701504,c4-standard-2,us-central1-a,305f3ff,tulipa-1_EU_investment_simple-28-13h,scip-10.0.0,tulipa-1_EU_investment_simple +genx-3_three_zones_w_co2_capture-no_uc,3-1h,gurobi,13.0.0,2025.0,ok,optimal,5.821469450005679,453.544,6371.601824921127,,,4.810559034347534,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 18:55:43.936067,c4-standard-2,us-central1-a,305f3ff,genx-3_three_zones_w_co2_capture-no_uc-3-1h,gurobi-13.0.0,genx-3_three_zones_w_co2_capture-no_uc +genx-3_three_zones_w_co2_capture-no_uc,3-1h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,36.10650454800634,261.944,6371.601825,,,36.10650454800634,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 18:55:51.342669,c4-standard-2,us-central1-a,305f3ff,genx-3_three_zones_w_co2_capture-no_uc-3-1h,highs-hipo-1.12.0-hipo,genx-3_three_zones_w_co2_capture-no_uc +genx-3_three_zones_w_co2_capture-no_uc,3-1h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,66.65968345299189,164.928,6371.6018249,,,66.65968345299189,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 18:56:28.278278,c4-standard-2,us-central1-a,305f3ff,genx-3_three_zones_w_co2_capture-no_uc-3-1h,highs-ipx-1.12.0-hipo,genx-3_three_zones_w_co2_capture-no_uc +genx-3_three_zones_w_co2_capture-no_uc,3-1h,highs,1.12.0,2025.0,ok,optimal,72.37137724300555,509.1,6371.601824921124,,,71.567622423172,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 18:57:35.754790,c4-standard-2,us-central1-a,305f3ff,genx-3_three_zones_w_co2_capture-no_uc-3-1h,highs-1.12.0,genx-3_three_zones_w_co2_capture-no_uc +genx-3_three_zones_w_co2_capture-no_uc,3-1h,scip,10.0.0,2025.0,ok,optimal,134.10808857799566,1026.884,6371.601824921385,,,133.439789,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 18:58:49.526941,c4-standard-2,us-central1-a,305f3ff,genx-3_three_zones_w_co2_capture-no_uc-3-1h,scip-10.0.0,genx-3_three_zones_w_co2_capture-no_uc +times-etimeseu-france-elec+heat-co2-multi_stage,1-64ts,gurobi,13.0.0,2025.0,ok,optimal,4.493932216006215,350.132,427842.12019748,,,3.7432050704956055,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 19:01:05.282334,c4-standard-2,us-central1-a,305f3ff,times-etimeseu-france-elec+heat-co2-multi_stage-1-64ts,gurobi-13.0.0,times-etimeseu-france-elec+heat-co2-multi_stage +times-etimeseu-france-elec+heat-co2-multi_stage,1-64ts,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,32.84855872299522,281.692,427842.11593,,,32.84855872299522,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 19:04:41.021556,c4-standard-2,us-central1-a,305f3ff,times-etimeseu-france-elec+heat-co2-multi_stage-1-64ts,highs-hipo-1.12.0-hipo,times-etimeseu-france-elec+heat-co2-multi_stage +times-etimeseu-france-elec+heat-co2-multi_stage,1-64ts,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,15.43091865700262,164.872,427842.12021,,,15.43091865700262,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 19:05:14.615934,c4-standard-2,us-central1-a,305f3ff,times-etimeseu-france-elec+heat-co2-multi_stage-1-64ts,highs-ipx-1.12.0-hipo,times-etimeseu-france-elec+heat-co2-multi_stage +times-etimeseu-france-elec+heat-co2-multi_stage,1-64ts,highs,1.12.0,2025.0,ok,optimal,20.056062998992275,394.528,427842.1201974796,,,19.49641823768616,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 19:05:30.773828,c4-standard-2,us-central1-a,305f3ff,times-etimeseu-france-elec+heat-co2-multi_stage-1-64ts,highs-1.12.0,times-etimeseu-france-elec+heat-co2-multi_stage +times-etimeseu-france-elec+heat-co2-multi_stage,1-64ts,scip,10.0.0,2025.0,ok,optimal,87.99608696800715,1880.892,427842.1201974794,,,87.374778,3600.0,benchmark-instance-s-m-08,20251228-rerun-3,2025-12-29 19:05:52.006814,c4-standard-2,us-central1-a,305f3ff,times-etimeseu-france-elec+heat-co2-multi_stage-1-64ts,scip-10.0.0,times-etimeseu-france-elec+heat-co2-multi_stage +pypsa-eur-elec-trex_copt-dfp,50-168h,glpk,5.0,2020.0,ok,optimal,270.18248018400004,239.136,35669946030.0,,,,3600.0,benchmark-instance-more-pypsa-30,20260102-more-pypsa,2026-01-02 20:48:42.759452,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-dfp-50-168h,glpk-5.0,pypsa-eur-elec-trex_copt-dfp +pypsa-eur-elec-trex_copt-dfp,50-168h,gurobi,10.0.0,2022.0,ok,optimal,203.306780883,347.572,35669946025.908775,,,202.34028816223145,3600.0,benchmark-instance-more-pypsa-30,20260102-more-pypsa,2026-01-02 20:57:27.146076,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-dfp-50-168h,gurobi-10.0.0,pypsa-eur-elec-trex_copt-dfp +pypsa-eur-elec-trex_copt-dfp,50-168h,highs,1.5.0.dev0,2022.0,ok,optimal,255.1925332410001,387.584,35669946025.90911,,,254.54421854019165,3600.0,benchmark-instance-more-pypsa-30,20260102-more-pypsa,2026-01-02 21:04:29.008020,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-dfp-50-168h,highs-1.5.0.dev0,pypsa-eur-elec-trex_copt-dfp +pypsa-eur-elec-trex_copt-dfp,50-168h,scip,8.0.3,2022.0,ok,optimal,843.0652358039999,832.364,35669946025.91094,,,842.417026,3600.0,benchmark-instance-more-pypsa-30,20260102-more-pypsa,2026-01-02 21:08:45.276201,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-dfp-50-168h,scip-8.0.3,pypsa-eur-elec-trex_copt-dfp +pypsa-eur-elec-trex_copt-dfp,50-168h,gurobi,11.0.0,2023.0,ok,optimal,314.5404122529999,352.62,35669946025.908806,,,313.80189299583435,3600.0,benchmark-instance-more-pypsa-30,20260102-more-pypsa,2026-01-02 21:26:09.774517,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-dfp-50-168h,gurobi-11.0.0,pypsa-eur-elec-trex_copt-dfp +pypsa-eur-elec-trex_copt-dfp,50-168h,highs,1.6.0.dev0,2023.0,ok,optimal,252.4980912760002,386.408,35669946025.90911,,,252.03610849380493,3600.0,benchmark-instance-more-pypsa-30,20260102-more-pypsa,2026-01-02 21:35:01.942232,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-dfp-50-168h,highs-1.6.0.dev0,pypsa-eur-elec-trex_copt-dfp +pypsa-eur-elec-trex_copt-dfp,50-168h,scip,8.1.0,2023.0,ok,optimal,841.5254147169999,836.304,35669946025.91094,,,840.982786,3600.0,benchmark-instance-more-pypsa-30,20260102-more-pypsa,2026-01-02 21:39:15.478330,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-dfp-50-168h,scip-8.1.0,pypsa-eur-elec-trex_copt-dfp +pypsa-eur-elec-trex_copt-dfp,50-168h,cbc,2.10.11,2023.0,ok,optimal,959.596117905,213.596,35669946025.90867,,,,3600.0,benchmark-instance-more-pypsa-30,20260102-more-pypsa,2026-01-02 21:53:18.205007,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-dfp-50-168h,cbc-2.10.11,pypsa-eur-elec-trex_copt-dfp +pypsa-eur-elec-trex_copt-dfp,50-168h,gurobi,12.0.0,2024.0,ok,optimal,185.3623361070004,334.176,35669946025.90891,,,184.54534816741943,3600.0,benchmark-instance-more-pypsa-30,20260102-more-pypsa,2026-01-02 22:09:47.256634,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-dfp-50-168h,gurobi-12.0.0,pypsa-eur-elec-trex_copt-dfp +pypsa-eur-elec-trex_copt-dfp,50-168h,highs,1.9.0,2024.0,ok,optimal,337.1273812599993,371.796,35669946025.90914,,,336.37108993530273,3600.0,benchmark-instance-more-pypsa-30,20260102-more-pypsa,2026-01-02 22:16:31.553604,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-dfp-50-168h,highs-1.9.0,pypsa-eur-elec-trex_copt-dfp +pypsa-eur-elec-trex_copt-dfp,50-168h,scip,9.2.0,2024.0,ok,optimal,842.6074856340001,819.604,35669946025.91094,,,842.054001,3600.0,benchmark-instance-more-pypsa-30,20260102-more-pypsa,2026-01-02 22:22:09.964311,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-dfp-50-168h,scip-9.2.0,pypsa-eur-elec-trex_copt-dfp +pypsa-eur-elec-trex_copt-dfp,50-168h,cbc,2.10.12,2024.0,ok,optimal,959.030478386,228.32,35669946025.90867,,,,3600.0,benchmark-instance-more-pypsa-30,20260102-more-pypsa,2026-01-02 22:36:14.028601,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-dfp-50-168h,cbc-2.10.12,pypsa-eur-elec-trex_copt-dfp +pypsa-eur-elec-trex_copt-dfp,50-168h,gurobi,13.0.0,2025.0,ok,optimal,159.2044994859998,367.928,35669946025.90885,,,158.38282322883606,3600.0,benchmark-instance-more-pypsa-30,20260102-more-pypsa,2026-01-02 22:53:16.905922,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-dfp-50-168h,gurobi-13.0.0,pypsa-eur-elec-trex_copt-dfp +pypsa-eur-elec-trex_copt-dfp,50-168h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,23.9586212410004,198.192,35669946026.0,,,23.9586212410004,3600.0,benchmark-instance-more-pypsa-30,20260102-more-pypsa,2026-01-02 22:59:34.215197,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-dfp-50-168h,highs-hipo-1.12.0-hipo,pypsa-eur-elec-trex_copt-dfp +pypsa-eur-elec-trex_copt-dfp,50-168h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,29.30037143500067,162.908,35669946027.0,,,29.30037143500067,3600.0,benchmark-instance-more-pypsa-30,20260102-more-pypsa,2026-01-02 22:59:59.183235,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-dfp-50-168h,highs-ipx-1.12.0-hipo,pypsa-eur-elec-trex_copt-dfp +pypsa-eur-elec-trex_copt-dfp,50-168h,highs,1.12.0,2025.0,ok,optimal,331.0109143380014,379.72,35669946025.90873,,,330.49356746673584,3600.0,benchmark-instance-more-pypsa-30,20260102-more-pypsa,2026-01-02 23:00:29.223473,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-dfp-50-168h,highs-1.12.0,pypsa-eur-elec-trex_copt-dfp +pypsa-eur-elec-trex_copt-dfp,50-168h,scip,10.0.0,2025.0,ok,optimal,845.0222157710014,843.904,35669946025.91094,,,844.450545,3600.0,benchmark-instance-more-pypsa-30,20260102-more-pypsa,2026-01-02 23:06:01.317051,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-dfp-50-168h,scip-10.0.0,pypsa-eur-elec-trex_copt-dfp +pypsa-eur-elec-trex_vopt,100-12h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,835.24,,,,86400.0,86400.0,benchmark-instance-more-pypsa-07,20260102-more-pypsa,2026-01-02 20:51:23.500285,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-100-12h,cbc-2.10.12,pypsa-eur-elec-trex_vopt +pypsa-eur-elec-trex_vopt,100-12h,gurobi,13.0.0,2025.0,ok,optimal,2335.947780443006,7919.74,36238244992.98922,,,2320.587463140488,86400.0,benchmark-instance-more-pypsa-07,20260102-more-pypsa,2026-01-03 20:55:26.513177,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-100-12h,gurobi-13.0.0,pypsa-eur-elec-trex_vopt +pypsa-eur-elec-trex_vopt,100-12h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,6487.06390991401,26532.108,36238244994.0,,,6487.06390991401,86400.0,benchmark-instance-more-pypsa-07,20260102-more-pypsa,2026-01-03 21:38:30.393774,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-100-12h,highs-hipo-1.12.0-hipo,pypsa-eur-elec-trex_vopt +pypsa-eur-elec-trex_vopt,100-12h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,26006.440206748,2862.648,36238244994.0,,,26006.440206748,86400.0,benchmark-instance-more-pypsa-07,20260102-more-pypsa,2026-01-03 23:30:10.100398,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-100-12h,highs-ipx-1.12.0-hipo,pypsa-eur-elec-trex_vopt +pypsa-eur-elec-trex_vopt,100-12h,highs,1.12.0,2025.0,TO,Timeout,86400.0,3435.76,,,,86400.0,86400.0,benchmark-instance-more-pypsa-07,20260102-more-pypsa,2026-01-04 06:47:14.824117,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-100-12h,highs-1.12.0,pypsa-eur-elec-trex_vopt +pypsa-eur-elec-trex_vopt,100-12h,scip,10.0.0,2025.0,TO,Timeout,86400.0,13965.704,,,,86400.0,86400.0,benchmark-instance-more-pypsa-07,20260102-more-pypsa,2026-01-05 06:50:52.425944,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-100-12h,scip-10.0.0,pypsa-eur-elec-trex_vopt +pypsa-de-elec-trex_vopt-dfp,50-24h,glpk,5.0,2020.0,ok,optimal,3386.561672926,762.028,7061411465.0,,,,3600.0,benchmark-instance-more-pypsa-16,20260102-more-pypsa,2026-01-02 20:49:32.432108,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-dfp-50-24h,glpk-5.0,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,50-24h,gurobi,10.0.0,2022.0,ok,optimal,598.2864280519998,1188.184,7061411464.426516,,,594.062294960022,3600.0,benchmark-instance-more-pypsa-16,20260102-more-pypsa,2026-01-02 21:50:41.368021,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-dfp-50-24h,gurobi-10.0.0,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,50-24h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1037.176,,,,3600.0,3600.0,benchmark-instance-more-pypsa-16,20260102-more-pypsa,2026-01-02 22:04:32.120368,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-dfp-50-24h,highs-1.5.0.dev0,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,50-24h,scip,8.0.3,2022.0,TO,Timeout,3600.0,3276.848,,,,3600.0,3600.0,benchmark-instance-more-pypsa-16,20260102-more-pypsa,2026-01-02 23:08:30.582480,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-dfp-50-24h,scip-8.0.3,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,50-24h,gurobi,11.0.0,2023.0,ok,optimal,607.9973963150005,1149.084,7061411464.4265,,,604.5845630168915,3600.0,benchmark-instance-more-pypsa-16,20260102-more-pypsa,2026-01-03 00:15:53.156883,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-dfp-50-24h,gurobi-11.0.0,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,50-24h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,969.372,,,,3600.0,3600.0,benchmark-instance-more-pypsa-16,20260102-more-pypsa,2026-01-03 00:29:55.734998,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-dfp-50-24h,highs-1.6.0.dev0,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,50-24h,scip,8.1.0,2023.0,TO,Timeout,3600.0,3331.832,,,,3600.0,3600.0,benchmark-instance-more-pypsa-16,20260102-more-pypsa,2026-01-03 01:33:46.631057,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-dfp-50-24h,scip-8.1.0,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,50-24h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,306.744,,,,3600.0,3600.0,benchmark-instance-more-pypsa-16,20260102-more-pypsa,2026-01-03 02:37:35.765738,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-dfp-50-24h,cbc-2.10.11,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,50-24h,gurobi,12.0.0,2024.0,TO,Timeout,3600.0,693.856,,,,3600.0,3600.0,benchmark-instance-more-pypsa-16,20260102-more-pypsa,2026-01-03 03:41:55.831722,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-dfp-50-24h,gurobi-12.0.0,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,50-24h,highs,1.9.0,2024.0,TO,Timeout,3600.0,996.156,,,,3600.0,3600.0,benchmark-instance-more-pypsa-16,20260102-more-pypsa,2026-01-03 04:45:44.469093,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-dfp-50-24h,highs-1.9.0,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,50-24h,scip,9.2.0,2024.0,TO,Timeout,3600.0,3328.876,,,,3600.0,3600.0,benchmark-instance-more-pypsa-16,20260102-more-pypsa,2026-01-03 05:49:31.944440,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-dfp-50-24h,scip-9.2.0,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,50-24h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,289.292,,,,3600.0,3600.0,benchmark-instance-more-pypsa-16,20260102-more-pypsa,2026-01-03 06:53:29.097627,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-dfp-50-24h,cbc-2.10.12,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,50-24h,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,707.908,,,,3600.0,3600.0,benchmark-instance-more-pypsa-16,20260102-more-pypsa,2026-01-03 07:57:48.630242,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-dfp-50-24h,gurobi-13.0.0,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,50-24h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,601.769648002999,3245.28,7061411464.4,,,601.769648002999,3600.0,benchmark-instance-more-pypsa-16,20260102-more-pypsa,2026-01-03 09:01:35.739325,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-dfp-50-24h,highs-hipo-1.12.0-hipo,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,50-24h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,757.7721633740002,647.62,7061411464.4,,,757.7721633740002,3600.0,benchmark-instance-more-pypsa-16,20260102-more-pypsa,2026-01-03 09:11:38.362348,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-dfp-50-24h,highs-ipx-1.12.0-hipo,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,50-24h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1007.588,,,,3600.0,3600.0,benchmark-instance-more-pypsa-16,20260102-more-pypsa,2026-01-03 09:24:17.353841,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-dfp-50-24h,highs-1.12.0,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,50-24h,scip,10.0.0,2025.0,TO,Timeout,3600.0,3343.88,,,,3600.0,3600.0,benchmark-instance-more-pypsa-16,20260102-more-pypsa,2026-01-03 10:27:59.313624,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-dfp-50-24h,scip-10.0.0,pypsa-de-elec-trex_vopt-dfp +pypsa-eur-sec-trex_vopt,50-168h,glpk,5.0,2020.0,TO,Timeout,3600.0,272.204,,,,3600.0,3600.0,benchmark-instance-more-pypsa-21,20260102-more-pypsa,2026-01-02 20:50:01.284202,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_vopt-50-168h,glpk-5.0,pypsa-eur-sec-trex_vopt +pypsa-eur-sec-trex_vopt,50-168h,gurobi,10.0.0,2022.0,TO,Timeout,3600.0,606.372,,,,3600.0,3600.0,benchmark-instance-more-pypsa-21,20260102-more-pypsa,2026-01-02 21:54:27.648983,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_vopt-50-168h,gurobi-10.0.0,pypsa-eur-sec-trex_vopt +pypsa-eur-sec-trex_vopt,50-168h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,897.424,,,,3600.0,3600.0,benchmark-instance-more-pypsa-21,20260102-more-pypsa,2026-01-02 22:58:13.244758,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_vopt-50-168h,highs-1.5.0.dev0,pypsa-eur-sec-trex_vopt +pypsa-eur-sec-trex_vopt,50-168h,scip,8.0.3,2022.0,TO,Timeout,3600.0,3069.708,,,,3600.0,3600.0,benchmark-instance-more-pypsa-21,20260102-more-pypsa,2026-01-03 00:01:51.820228,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_vopt-50-168h,scip-8.0.3,pypsa-eur-sec-trex_vopt +pypsa-eur-sec-trex_vopt,50-168h,gurobi,11.0.0,2023.0,TO,Timeout,3600.0,620.084,,,,3600.0,3600.0,benchmark-instance-more-pypsa-21,20260102-more-pypsa,2026-01-03 01:08:49.807726,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_vopt-50-168h,gurobi-11.0.0,pypsa-eur-sec-trex_vopt +pypsa-eur-sec-trex_vopt,50-168h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,857.716,,,,3600.0,3600.0,benchmark-instance-more-pypsa-21,20260102-more-pypsa,2026-01-03 02:12:34.236865,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_vopt-50-168h,highs-1.6.0.dev0,pypsa-eur-sec-trex_vopt +pypsa-eur-sec-trex_vopt,50-168h,scip,8.1.0,2023.0,TO,Timeout,3600.0,3110.056,,,,3600.0,3600.0,benchmark-instance-more-pypsa-21,20260102-more-pypsa,2026-01-03 03:16:12.234266,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_vopt-50-168h,scip-8.1.0,pypsa-eur-sec-trex_vopt +pypsa-eur-sec-trex_vopt,50-168h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,302.668,,,,3600.0,3600.0,benchmark-instance-more-pypsa-21,20260102-more-pypsa,2026-01-03 04:19:57.282022,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_vopt-50-168h,cbc-2.10.11,pypsa-eur-sec-trex_vopt +pypsa-eur-sec-trex_vopt,50-168h,gurobi,12.0.0,2024.0,TO,Timeout,3600.0,614.42,,,,3600.0,3600.0,benchmark-instance-more-pypsa-21,20260102-more-pypsa,2026-01-03 05:24:09.283611,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_vopt-50-168h,gurobi-12.0.0,pypsa-eur-sec-trex_vopt +pypsa-eur-sec-trex_vopt,50-168h,highs,1.9.0,2024.0,TO,Timeout,3600.0,883.22,,,,3600.0,3600.0,benchmark-instance-more-pypsa-21,20260102-more-pypsa,2026-01-03 06:27:56.150109,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_vopt-50-168h,highs-1.9.0,pypsa-eur-sec-trex_vopt +pypsa-eur-sec-trex_vopt,50-168h,scip,9.2.0,2024.0,TO,Timeout,3600.0,3101.332,,,,3600.0,3600.0,benchmark-instance-more-pypsa-21,20260102-more-pypsa,2026-01-03 07:31:39.862595,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_vopt-50-168h,scip-9.2.0,pypsa-eur-sec-trex_vopt +pypsa-eur-sec-trex_vopt,50-168h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,285.684,,,,3600.0,3600.0,benchmark-instance-more-pypsa-21,20260102-more-pypsa,2026-01-03 08:35:20.010830,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_vopt-50-168h,cbc-2.10.12,pypsa-eur-sec-trex_vopt +pypsa-eur-sec-trex_vopt,50-168h,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,649.932,,,,3600.0,3600.0,benchmark-instance-more-pypsa-21,20260102-more-pypsa,2026-01-03 09:39:30.968243,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_vopt-50-168h,gurobi-13.0.0,pypsa-eur-sec-trex_vopt +pypsa-eur-sec-trex_vopt,50-168h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,445.0670673700006,1239.94,377057245080.0,,,445.0670673700006,3600.0,benchmark-instance-more-pypsa-21,20260102-more-pypsa,2026-01-03 10:43:14.631925,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_vopt-50-168h,highs-hipo-1.12.0-hipo,pypsa-eur-sec-trex_vopt +pypsa-eur-sec-trex_vopt,50-168h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,578.6686117119971,571.748,377057245080.0,,,578.6686117119971,3600.0,benchmark-instance-more-pypsa-21,20260102-more-pypsa,2026-01-03 10:50:40.842916,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_vopt-50-168h,highs-ipx-1.12.0-hipo,pypsa-eur-sec-trex_vopt +pypsa-eur-sec-trex_vopt,50-168h,highs,1.12.0,2025.0,TO,Timeout,3600.0,843.884,,,,3600.0,3600.0,benchmark-instance-more-pypsa-21,20260102-more-pypsa,2026-01-03 11:00:20.286778,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_vopt-50-168h,highs-1.12.0,pypsa-eur-sec-trex_vopt +pypsa-eur-sec-trex_vopt,50-168h,scip,10.0.0,2025.0,TO,Timeout,3600.0,3113.412,,,,3600.0,3600.0,benchmark-instance-more-pypsa-21,20260102-more-pypsa,2026-01-03 12:04:04.320723,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_vopt-50-168h,scip-10.0.0,pypsa-eur-sec-trex_vopt +pypsa-de-sec-trex_copt,50-168h,glpk,5.0,2020.0,TO,Timeout,3600.0,270.612,,,,3600.0,3600.0,benchmark-instance-more-pypsa-24,20260102-more-pypsa,2026-01-02 20:49:39.200285,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-50-168h,glpk-5.0,pypsa-de-sec-trex_copt +pypsa-de-sec-trex_copt,50-168h,gurobi,10.0.0,2022.0,TO,Timeout,3600.0,604.812,,,,3600.0,3600.0,benchmark-instance-more-pypsa-24,20260102-more-pypsa,2026-01-02 21:54:01.740770,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-50-168h,gurobi-10.0.0,pypsa-de-sec-trex_copt +pypsa-de-sec-trex_copt,50-168h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,927.404,,,,3600.0,3600.0,benchmark-instance-more-pypsa-24,20260102-more-pypsa,2026-01-02 22:57:42.998507,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-50-168h,highs-1.5.0.dev0,pypsa-de-sec-trex_copt +pypsa-de-sec-trex_copt,50-168h,scip,8.0.3,2022.0,TO,Timeout,3600.0,3014.864,,,,3600.0,3600.0,benchmark-instance-more-pypsa-24,20260102-more-pypsa,2026-01-03 00:01:25.935167,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-50-168h,scip-8.0.3,pypsa-de-sec-trex_copt +pypsa-de-sec-trex_copt,50-168h,gurobi,11.0.0,2023.0,TO,Timeout,3600.0,611.392,,,,3600.0,3600.0,benchmark-instance-more-pypsa-24,20260102-more-pypsa,2026-01-03 01:08:36.941570,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-50-168h,gurobi-11.0.0,pypsa-de-sec-trex_copt +pypsa-de-sec-trex_copt,50-168h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,896.456,,,,3600.0,3600.0,benchmark-instance-more-pypsa-24,20260102-more-pypsa,2026-01-03 02:12:19.355598,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-50-168h,highs-1.6.0.dev0,pypsa-de-sec-trex_copt +pypsa-de-sec-trex_copt,50-168h,scip,8.1.0,2023.0,TO,Timeout,3600.0,3039.232,,,,3600.0,3600.0,benchmark-instance-more-pypsa-24,20260102-more-pypsa,2026-01-03 03:15:59.747390,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-50-168h,scip-8.1.0,pypsa-de-sec-trex_copt +pypsa-de-sec-trex_copt,50-168h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,301.284,,,,3600.0,3600.0,benchmark-instance-more-pypsa-24,20260102-more-pypsa,2026-01-03 04:19:40.042672,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-50-168h,cbc-2.10.11,pypsa-de-sec-trex_copt +pypsa-de-sec-trex_copt,50-168h,gurobi,12.0.0,2024.0,TO,Timeout,3600.0,608.816,,,,3600.0,3600.0,benchmark-instance-more-pypsa-24,20260102-more-pypsa,2026-01-03 05:23:50.695685,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-50-168h,gurobi-12.0.0,pypsa-de-sec-trex_copt +pypsa-de-sec-trex_copt,50-168h,highs,1.9.0,2024.0,TO,Timeout,3600.0,873.932,,,,3600.0,3600.0,benchmark-instance-more-pypsa-24,20260102-more-pypsa,2026-01-03 06:27:31.822850,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-50-168h,highs-1.9.0,pypsa-de-sec-trex_copt +pypsa-de-sec-trex_copt,50-168h,scip,9.2.0,2024.0,TO,Timeout,3600.0,3033.96,,,,3600.0,3600.0,benchmark-instance-more-pypsa-24,20260102-more-pypsa,2026-01-03 07:31:11.461741,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-50-168h,scip-9.2.0,pypsa-de-sec-trex_copt +pypsa-de-sec-trex_copt,50-168h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,284.06,,,,3600.0,3600.0,benchmark-instance-more-pypsa-24,20260102-more-pypsa,2026-01-03 08:34:52.031826,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-50-168h,cbc-2.10.12,pypsa-de-sec-trex_copt +pypsa-de-sec-trex_copt,50-168h,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,641.3,,,,3600.0,3600.0,benchmark-instance-more-pypsa-24,20260102-more-pypsa,2026-01-03 09:39:03.126303,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-50-168h,gurobi-13.0.0,pypsa-de-sec-trex_copt +pypsa-de-sec-trex_copt,50-168h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,525.755529602,1383.964,76425738145.0,,,525.755529602,3600.0,benchmark-instance-more-pypsa-24,20260102-more-pypsa,2026-01-03 10:42:43.597632,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-50-168h,highs-hipo-1.12.0-hipo,pypsa-de-sec-trex_copt +pypsa-de-sec-trex_copt,50-168h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,469.1782461370021,590.164,76425738138.0,,,469.1782461370021,3600.0,benchmark-instance-more-pypsa-24,20260102-more-pypsa,2026-01-03 10:51:30.647442,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-50-168h,highs-ipx-1.12.0-hipo,pypsa-de-sec-trex_copt +pypsa-de-sec-trex_copt,50-168h,highs,1.12.0,2025.0,TO,Timeout,3600.0,840.656,,,,3600.0,3600.0,benchmark-instance-more-pypsa-24,20260102-more-pypsa,2026-01-03 10:59:20.596410,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-50-168h,highs-1.12.0,pypsa-de-sec-trex_copt +pypsa-de-sec-trex_copt,50-168h,scip,10.0.0,2025.0,TO,Timeout,3600.0,3067.296,,,,3600.0,3600.0,benchmark-instance-more-pypsa-24,20260102-more-pypsa,2026-01-03 12:03:02.092688,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-50-168h,scip-10.0.0,pypsa-de-sec-trex_copt +pypsa-de-elec-trex_copt,20-3h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,671.724,,,,86400.0,86400.0,benchmark-instance-more-pypsa-13,20260102-more-pypsa,2026-01-02 20:51:09.312810,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-20-3h,cbc-2.10.12,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,20-3h,gurobi,13.0.0,2025.0,ok,optimal,201.82831102400087,5112.072,7528360799.695868,,,190.85592103004456,86400.0,benchmark-instance-more-pypsa-13,20260102-more-pypsa,2026-01-03 20:55:12.807994,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-20-3h,gurobi-13.0.0,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,20-3h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,1436.14697033001,3715.884,7528360799.8,,,1436.14697033001,86400.0,benchmark-instance-more-pypsa-13,20260102-more-pypsa,2026-01-03 21:02:20.726969,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-20-3h,highs-hipo-1.12.0-hipo,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,20-3h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,14437.582729966,2130.684,7528360799.7,,,14437.582729966,86400.0,benchmark-instance-more-pypsa-13,20260102-more-pypsa,2026-01-03 21:26:17.621988,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-20-3h,highs-ipx-1.12.0-hipo,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,20-3h,highs,1.12.0,2025.0,TO,Timeout,86400.0,2628.14,,,,86400.0,86400.0,benchmark-instance-more-pypsa-13,20260102-more-pypsa,2026-01-04 01:30:14.227961,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-20-3h,highs-1.12.0,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,20-3h,scip,10.0.0,2025.0,TO,Timeout,86400.0,10878.048,,,,86400.0,86400.0,benchmark-instance-more-pypsa-13,20260102-more-pypsa,2026-01-05 01:33:39.813376,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-20-3h,scip-10.0.0,pypsa-de-elec-trex_copt +pypsa-eur-elec-trex_vopt,50-168h,glpk,5.0,2020.0,ok,optimal,256.200812341,239.988,35669977580.0,,,,3600.0,benchmark-instance-more-pypsa-29,20260102-more-pypsa,2026-01-02 20:49:26.599912,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-50-168h,glpk-5.0,pypsa-eur-elec-trex_vopt +pypsa-eur-elec-trex_vopt,50-168h,gurobi,10.0.0,2022.0,ok,optimal,233.19790070500005,347.188,35669977577.239235,,,232.23119282722476,3600.0,benchmark-instance-more-pypsa-29,20260102-more-pypsa,2026-01-02 20:57:56.007260,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-50-168h,gurobi-10.0.0,pypsa-eur-elec-trex_vopt +pypsa-eur-elec-trex_vopt,50-168h,highs,1.5.0.dev0,2022.0,ok,optimal,239.63526237199997,383.216,35669977577.23937,,,238.9771122932434,3600.0,benchmark-instance-more-pypsa-29,20260102-more-pypsa,2026-01-02 21:05:30.513122,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-50-168h,highs-1.5.0.dev0,pypsa-eur-elec-trex_vopt +pypsa-eur-elec-trex_vopt,50-168h,scip,8.0.3,2022.0,ok,optimal,1156.7834624190002,829.796,35669977577.23863,,,1156.115986,3600.0,benchmark-instance-more-pypsa-29,20260102-more-pypsa,2026-01-02 21:09:31.246757,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-50-168h,scip-8.0.3,pypsa-eur-elec-trex_vopt +pypsa-eur-elec-trex_vopt,50-168h,gurobi,11.0.0,2023.0,ok,optimal,201.9750775540001,349.636,35669977577.23916,,,201.191025018692,3600.0,benchmark-instance-more-pypsa-29,20260102-more-pypsa,2026-01-02 21:32:15.353827,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-50-168h,gurobi-11.0.0,pypsa-eur-elec-trex_vopt +pypsa-eur-elec-trex_vopt,50-168h,highs,1.6.0.dev0,2023.0,ok,optimal,234.84857923599972,388.024,35669977577.23937,,,234.36575317382807,3600.0,benchmark-instance-more-pypsa-29,20260102-more-pypsa,2026-01-02 21:39:30.338101,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-50-168h,highs-1.6.0.dev0,pypsa-eur-elec-trex_vopt +pypsa-eur-elec-trex_vopt,50-168h,scip,8.1.0,2023.0,ok,optimal,1155.429585024,834.912,35669977577.23863,,,1154.845201,3600.0,benchmark-instance-more-pypsa-29,20260102-more-pypsa,2026-01-02 21:43:26.270120,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-50-168h,scip-8.1.0,pypsa-eur-elec-trex_vopt +pypsa-eur-elec-trex_vopt,50-168h,cbc,2.10.11,2023.0,ok,optimal,378.1863681390005,214.4,35669977577.239265,,,,3600.0,benchmark-instance-more-pypsa-29,20260102-more-pypsa,2026-01-02 22:02:42.931186,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-50-168h,cbc-2.10.11,pypsa-eur-elec-trex_vopt +pypsa-eur-elec-trex_vopt,50-168h,gurobi,12.0.0,2024.0,ok,optimal,174.12410648200057,334.208,35669977577.23919,,,173.3073058128357,3600.0,benchmark-instance-more-pypsa-29,20260102-more-pypsa,2026-01-02 22:09:28.937893,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-50-168h,gurobi-12.0.0,pypsa-eur-elec-trex_vopt +pypsa-eur-elec-trex_vopt,50-168h,highs,1.9.0,2024.0,ok,optimal,225.878932054,384.948,35669977577.2394,,,225.12217330932617,3600.0,benchmark-instance-more-pypsa-29,20260102-more-pypsa,2026-01-02 22:16:05.367127,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-50-168h,highs-1.9.0,pypsa-eur-elec-trex_vopt +pypsa-eur-elec-trex_vopt,50-168h,scip,9.2.0,2024.0,ok,optimal,1152.000253954,819.032,35669977577.23863,,,1151.439918,3600.0,benchmark-instance-more-pypsa-29,20260102-more-pypsa,2026-01-02 22:19:52.596674,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-50-168h,scip-9.2.0,pypsa-eur-elec-trex_vopt +pypsa-eur-elec-trex_vopt,50-168h,cbc,2.10.12,2024.0,ok,optimal,372.9112869179999,227.996,35669977577.239265,,,,3600.0,benchmark-instance-more-pypsa-29,20260102-more-pypsa,2026-01-02 22:39:06.050083,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-50-168h,cbc-2.10.12,pypsa-eur-elec-trex_vopt +pypsa-eur-elec-trex_vopt,50-168h,gurobi,13.0.0,2025.0,ok,optimal,181.61456405399983,366.348,35669977577.239204,,,180.84040689468384,3600.0,benchmark-instance-more-pypsa-29,20260102-more-pypsa,2026-01-02 22:45:49.567052,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-50-168h,gurobi-13.0.0,pypsa-eur-elec-trex_vopt +pypsa-eur-elec-trex_vopt,50-168h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,23.89380702299968,198.964,35669977577.0,,,23.89380702299968,3600.0,benchmark-instance-more-pypsa-29,20260102-more-pypsa,2026-01-02 22:52:31.474191,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-50-168h,highs-hipo-1.12.0-hipo,pypsa-eur-elec-trex_vopt +pypsa-eur-elec-trex_vopt,50-168h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,29.568133349000163,163.984,35669977577.0,,,29.568133349000163,3600.0,benchmark-instance-more-pypsa-29,20260102-more-pypsa,2026-01-02 22:52:56.734028,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-50-168h,highs-ipx-1.12.0-hipo,pypsa-eur-elec-trex_vopt +pypsa-eur-elec-trex_vopt,50-168h,highs,1.12.0,2025.0,ok,optimal,219.76056145700025,397.748,35669977577.239174,,,219.23968529701236,3600.0,benchmark-instance-more-pypsa-29,20260102-more-pypsa,2026-01-02 22:53:27.054924,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-50-168h,highs-1.12.0,pypsa-eur-elec-trex_vopt +pypsa-eur-elec-trex_vopt,50-168h,scip,10.0.0,2025.0,ok,optimal,1153.003599478,846.08,35669977577.23863,,,1152.4219,3600.0,benchmark-instance-more-pypsa-29,20260102-more-pypsa,2026-01-02 22:57:07.915674,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-50-168h,scip-10.0.0,pypsa-eur-elec-trex_vopt +pypsa-eur-sec,50-24h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,1167.644,,,,86400.0,86400.0,benchmark-instance-more-pypsa-02,20260102-more-pypsa,2026-01-02 20:51:49.815207,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-sec-50-24h,cbc-2.10.12,pypsa-eur-sec +pypsa-eur-sec,50-24h,gurobi,13.0.0,2025.0,TO,Timeout,86400.0,11782.08,,,,86400.0,86400.0,benchmark-instance-more-pypsa-02,20260102-more-pypsa,2026-01-03 20:56:02.753340,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-sec-50-24h,gurobi-13.0.0,pypsa-eur-sec +pypsa-eur-sec,50-24h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,28017.693696939008,35287.708,393814433160.0,,,28017.693696939008,86400.0,benchmark-instance-more-pypsa-02,20260102-more-pypsa,2026-01-04 20:59:34.931490,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-sec-50-24h,highs-hipo-1.12.0-hipo,pypsa-eur-sec +pypsa-eur-sec,50-24h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,45575.351285682,3728.584,393814433050.0,,,45575.351285682,86400.0,benchmark-instance-more-pypsa-02,20260102-more-pypsa,2026-01-05 04:50:06.136604,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-sec-50-24h,highs-ipx-1.12.0-hipo,pypsa-eur-sec +pypsa-eur-sec,50-24h,highs,1.12.0,2025.0,TO,Timeout,86400.0,3879.348,,,,86400.0,86400.0,benchmark-instance-more-pypsa-02,20260102-more-pypsa,2026-01-05 17:33:17.440075,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-sec-50-24h,highs-1.12.0,pypsa-eur-sec +pypsa-eur-sec,50-24h,scip,10.0.0,2025.0,TO,Timeout,86400.0,18264.084,,,,86400.0,86400.0,benchmark-instance-more-pypsa-02,20260102-more-pypsa,2026-01-06 17:36:59.621662,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-sec-50-24h,scip-10.0.0,pypsa-eur-sec +pypsa-eur-elec-dfp,50-168h,glpk,5.0,2020.0,ok,optimal,153.261348779,240.752,36132367450.0,,,,3600.0,benchmark-instance-more-pypsa-32,20260102-more-pypsa,2026-01-02 20:49:50.584130,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-dfp-50-168h,glpk-5.0,pypsa-eur-elec-dfp +pypsa-eur-elec-dfp,50-168h,gurobi,10.0.0,2022.0,ok,optimal,28.32603158099994,345.388,36132367446.48273,,,27.311707973480225,3600.0,benchmark-instance-more-pypsa-32,20260102-more-pypsa,2026-01-02 20:56:58.979895,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-dfp-50-168h,gurobi-10.0.0,pypsa-eur-elec-dfp +pypsa-eur-elec-dfp,50-168h,highs,1.5.0.dev0,2022.0,ok,optimal,115.086105287,365.352,36132367446.48335,,,114.38655495643616,3600.0,benchmark-instance-more-pypsa-32,20260102-more-pypsa,2026-01-02 21:01:24.693108,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-dfp-50-168h,highs-1.5.0.dev0,pypsa-eur-elec-dfp +pypsa-eur-elec-dfp,50-168h,scip,8.0.3,2022.0,ok,optimal,389.055875062,768.388,36132367446.48417,,,388.336147,3600.0,benchmark-instance-more-pypsa-32,20260102-more-pypsa,2026-01-02 21:03:20.980189,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-dfp-50-168h,scip-8.0.3,pypsa-eur-elec-dfp +pypsa-eur-elec-dfp,50-168h,gurobi,11.0.0,2023.0,ok,optimal,23.620680742999863,344.532,36132367446.482666,,,22.81108808517456,3600.0,benchmark-instance-more-pypsa-32,20260102-more-pypsa,2026-01-02 21:13:21.082156,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-dfp-50-168h,gurobi-11.0.0,pypsa-eur-elec-dfp +pypsa-eur-elec-dfp,50-168h,highs,1.6.0.dev0,2023.0,ok,optimal,113.5746951000001,373.964,36132367446.48335,,,113.08545303344728,3600.0,benchmark-instance-more-pypsa-32,20260102-more-pypsa,2026-01-02 21:17:43.125386,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-dfp-50-168h,highs-1.6.0.dev0,pypsa-eur-elec-dfp +pypsa-eur-elec-dfp,50-168h,scip,8.1.0,2023.0,ok,optimal,387.09086810200006,773.564,36132367446.48417,,,386.490055,3600.0,benchmark-instance-more-pypsa-32,20260102-more-pypsa,2026-01-02 21:19:37.821173,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-dfp-50-168h,scip-8.1.0,pypsa-eur-elec-dfp +pypsa-eur-elec-dfp,50-168h,cbc,2.10.11,2023.0,ok,optimal,97.28011957099989,208.696,36132367446.48259,,,,3600.0,benchmark-instance-more-pypsa-32,20260102-more-pypsa,2026-01-02 21:26:06.181382,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-dfp-50-168h,cbc-2.10.11,pypsa-eur-elec-dfp +pypsa-eur-elec-dfp,50-168h,gurobi,12.0.0,2024.0,ok,optimal,29.237516342000163,331.624,36132367446.48262,,,28.43217897415161,3600.0,benchmark-instance-more-pypsa-32,20260102-more-pypsa,2026-01-02 21:28:11.621318,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-dfp-50-168h,gurobi-12.0.0,pypsa-eur-elec-dfp +pypsa-eur-elec-dfp,50-168h,highs,1.9.0,2024.0,ok,optimal,73.45484517099976,347.056,36132367446.483536,,,72.65511584281921,3600.0,benchmark-instance-more-pypsa-32,20260102-more-pypsa,2026-01-02 21:32:38.074413,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-dfp-50-168h,highs-1.9.0,pypsa-eur-elec-dfp +pypsa-eur-elec-dfp,50-168h,scip,9.2.0,2024.0,ok,optimal,388.6451142310002,757.692,36132367446.48417,,,388.03107,3600.0,benchmark-instance-more-pypsa-32,20260102-more-pypsa,2026-01-02 21:33:52.973984,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-dfp-50-168h,scip-9.2.0,pypsa-eur-elec-dfp +pypsa-eur-elec-dfp,50-168h,cbc,2.10.12,2024.0,ok,optimal,98.04160345199988,231.948,36132367446.48259,,,,3600.0,benchmark-instance-more-pypsa-32,20260102-more-pypsa,2026-01-02 21:40:23.172028,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-dfp-50-168h,cbc-2.10.12,pypsa-eur-elec-dfp +pypsa-eur-elec-dfp,50-168h,gurobi,13.0.0,2025.0,ok,optimal,27.34208927199961,354.808,36132367446.48271,,,26.515463829040527,3600.0,benchmark-instance-more-pypsa-32,20260102-more-pypsa,2026-01-02 21:42:33.624140,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-dfp-50-168h,gurobi-13.0.0,pypsa-eur-elec-dfp +pypsa-eur-elec-dfp,50-168h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,17.067341395000312,180.94,36132367448.0,,,17.067341395000312,3600.0,benchmark-instance-more-pypsa-32,20260102-more-pypsa,2026-01-02 21:46:59.789124,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-dfp-50-168h,highs-hipo-1.12.0-hipo,pypsa-eur-elec-dfp +pypsa-eur-elec-dfp,50-168h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,18.71816651900008,163.692,36132367447.0,,,18.71816651900008,3600.0,benchmark-instance-more-pypsa-32,20260102-more-pypsa,2026-01-02 21:47:17.801725,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-dfp-50-168h,highs-ipx-1.12.0-hipo,pypsa-eur-elec-dfp +pypsa-eur-elec-dfp,50-168h,highs,1.12.0,2025.0,ok,optimal,72.47564290400032,374.18,36132367446.4827,,,71.90499496459961,3600.0,benchmark-instance-more-pypsa-32,20260102-more-pypsa,2026-01-02 21:47:37.320331,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-dfp-50-168h,highs-1.12.0,pypsa-eur-elec-dfp +pypsa-eur-elec-dfp,50-168h,scip,10.0.0,2025.0,ok,optimal,387.0382265479998,784.808,36132367446.48417,,,386.407304,3600.0,benchmark-instance-more-pypsa-32,20260102-more-pypsa,2026-01-02 21:48:50.972785,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-dfp-50-168h,scip-10.0.0,pypsa-eur-elec-dfp +pypsa-de-elec-trex_copt,50-24h,glpk,5.0,2020.0,ok,optimal,3361.18702187,760.02,7061421194.0,,,,3600.0,benchmark-instance-more-pypsa-19,20260102-more-pypsa,2026-01-02 20:49:36.268698,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-50-24h,glpk-5.0,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,50-24h,gurobi,10.0.0,2022.0,ok,optimal,2448.093920921,1180.224,7061421194.266729,,,2443.8157119750977,3600.0,benchmark-instance-more-pypsa-19,20260102-more-pypsa,2026-01-02 21:50:14.638783,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-50-24h,gurobi-10.0.0,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,50-24h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1048.964,,,,3600.0,3600.0,benchmark-instance-more-pypsa-19,20260102-more-pypsa,2026-01-02 22:34:50.515698,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-50-24h,highs-1.5.0.dev0,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,50-24h,scip,8.0.3,2022.0,TO,Timeout,3600.0,3284.088,,,,3600.0,3600.0,benchmark-instance-more-pypsa-19,20260102-more-pypsa,2026-01-02 23:38:34.055747,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-50-24h,scip-8.0.3,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,50-24h,gurobi,11.0.0,2023.0,ok,optimal,1380.3224495119994,1161.392,7061421194.266718,,,1376.9408988952637,3600.0,benchmark-instance-more-pypsa-19,20260102-more-pypsa,2026-01-03 00:46:01.453695,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-50-24h,gurobi-11.0.0,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,50-24h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,971.352,,,,3600.0,3600.0,benchmark-instance-more-pypsa-19,20260102-more-pypsa,2026-01-03 01:12:47.821635,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-50-24h,highs-1.6.0.dev0,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,50-24h,scip,8.1.0,2023.0,TO,Timeout,3600.0,3349.136,,,,3600.0,3600.0,benchmark-instance-more-pypsa-19,20260102-more-pypsa,2026-01-03 02:16:30.759389,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-50-24h,scip-8.1.0,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,50-24h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,306.592,,,,3600.0,3600.0,benchmark-instance-more-pypsa-19,20260102-more-pypsa,2026-01-03 03:20:14.661038,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-50-24h,cbc-2.10.11,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,50-24h,gurobi,12.0.0,2024.0,TO,Timeout,3600.0,677.352,,,,3600.0,3600.0,benchmark-instance-more-pypsa-19,20260102-more-pypsa,2026-01-03 04:24:28.824168,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-50-24h,gurobi-12.0.0,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,50-24h,highs,1.9.0,2024.0,TO,Timeout,3600.0,982.712,,,,3600.0,3600.0,benchmark-instance-more-pypsa-19,20260102-more-pypsa,2026-01-03 05:28:14.236553,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-50-24h,highs-1.9.0,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,50-24h,scip,9.2.0,2024.0,TO,Timeout,3600.0,3336.984,,,,3600.0,3600.0,benchmark-instance-more-pypsa-19,20260102-more-pypsa,2026-01-03 06:31:57.872480,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-50-24h,scip-9.2.0,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,50-24h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,288.892,,,,3600.0,3600.0,benchmark-instance-more-pypsa-19,20260102-more-pypsa,2026-01-03 07:35:40.218044,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-50-24h,cbc-2.10.12,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,50-24h,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,748.932,,,,3600.0,3600.0,benchmark-instance-more-pypsa-19,20260102-more-pypsa,2026-01-03 08:40:01.639876,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-50-24h,gurobi-13.0.0,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,50-24h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,600.9243279350048,3192.512,7061421194.3,,,600.9243279350048,3600.0,benchmark-instance-more-pypsa-19,20260102-more-pypsa,2026-01-03 09:43:50.650623,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-50-24h,highs-hipo-1.12.0-hipo,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,50-24h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,784.354695697999,649.38,7061421194.3,,,784.354695697999,3600.0,benchmark-instance-more-pypsa-19,20260102-more-pypsa,2026-01-03 09:53:52.470582,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-50-24h,highs-ipx-1.12.0-hipo,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,50-24h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1004.944,,,,3600.0,3600.0,benchmark-instance-more-pypsa-19,20260102-more-pypsa,2026-01-03 10:06:58.036658,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-50-24h,highs-1.12.0,pypsa-de-elec-trex_copt +pypsa-de-elec-trex_copt,50-24h,scip,10.0.0,2025.0,TO,Timeout,3600.0,3362.044,,,,3600.0,3600.0,benchmark-instance-more-pypsa-19,20260102-more-pypsa,2026-01-03 11:10:51.484586,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-50-24h,scip-10.0.0,pypsa-de-elec-trex_copt +pypsa-eur-elec-trex_copt-dfp,100-12h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,835.436,,,,86400.0,86400.0,benchmark-instance-more-pypsa-08,20260102-more-pypsa,2026-01-02 20:51:30.302096,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-dfp-100-12h,cbc-2.10.12,pypsa-eur-elec-trex_copt-dfp +pypsa-eur-elec-trex_copt-dfp,100-12h,gurobi,13.0.0,2025.0,ok,optimal,2483.7678678509983,7919.684,36238241318.97456,,,2468.7060930728912,86400.0,benchmark-instance-more-pypsa-08,20260102-more-pypsa,2026-01-03 20:55:28.953624,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-dfp-100-12h,gurobi-13.0.0,pypsa-eur-elec-trex_copt-dfp +pypsa-eur-elec-trex_copt-dfp,100-12h,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,86400.0,162.98,,,,86400.0,86400.0,benchmark-instance-more-pypsa-08,20260102-more-pypsa,2026-01-03 21:40:47.280199,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-dfp-100-12h,highs-hipo-1.12.0-hipo,pypsa-eur-elec-trex_copt-dfp +pypsa-eur-elec-trex_copt-dfp,100-12h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,27996.563144254997,2869.936,36238241320.0,,,27996.563144254997,86400.0,benchmark-instance-more-pypsa-08,20260102-more-pypsa,2026-01-04 21:44:27.155053,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-dfp-100-12h,highs-ipx-1.12.0-hipo,pypsa-eur-elec-trex_copt-dfp +pypsa-eur-elec-trex_copt-dfp,100-12h,highs,1.12.0,2025.0,TO,Timeout,86400.0,3882.552,,,,86400.0,86400.0,benchmark-instance-more-pypsa-08,20260102-more-pypsa,2026-01-05 05:34:48.167707,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-dfp-100-12h,highs-1.12.0,pypsa-eur-elec-trex_copt-dfp +pypsa-eur-elec-trex_copt-dfp,100-12h,scip,10.0.0,2025.0,TO,Timeout,86400.0,13920.848,,,,86400.0,86400.0,benchmark-instance-more-pypsa-08,20260102-more-pypsa,2026-01-06 05:38:23.942096,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-dfp-100-12h,scip-10.0.0,pypsa-eur-elec-trex_copt-dfp +pypsa-de-sec-trex_vopt,50-168h,glpk,5.0,2020.0,TO,Timeout,3600.0,270.34,,,,3600.0,3600.0,benchmark-instance-more-pypsa-23,20260102-more-pypsa,2026-01-03 04:30:50.932053,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-50-168h,glpk-5.0,pypsa-de-sec-trex_vopt +pypsa-de-sec-trex_vopt,50-168h,gurobi,10.0.0,2022.0,TO,Timeout,3600.0,601.572,,,,3600.0,3600.0,benchmark-instance-more-pypsa-23,20260102-more-pypsa,2026-01-03 05:35:17.681786,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-50-168h,gurobi-10.0.0,pypsa-de-sec-trex_vopt +pypsa-de-sec-trex_vopt,50-168h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,803.116,,,,3600.0,3600.0,benchmark-instance-more-pypsa-23,20260102-more-pypsa,2026-01-03 06:39:05.517383,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-50-168h,highs-1.5.0.dev0,pypsa-de-sec-trex_vopt +pypsa-de-sec-trex_vopt,50-168h,scip,8.0.3,2022.0,TO,Timeout,3600.0,3005.54,,,,3600.0,3600.0,benchmark-instance-more-pypsa-23,20260102-more-pypsa,2026-01-03 07:43:01.834216,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-50-168h,scip-8.0.3,pypsa-de-sec-trex_vopt +pypsa-de-sec-trex_vopt,50-168h,gurobi,11.0.0,2023.0,TO,Timeout,3600.0,608.348,,,,3600.0,3600.0,benchmark-instance-more-pypsa-23,20260102-more-pypsa,2026-01-03 08:50:27.341875,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-50-168h,gurobi-11.0.0,pypsa-de-sec-trex_vopt +pypsa-de-sec-trex_vopt,50-168h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,853.688,,,,3600.0,3600.0,benchmark-instance-more-pypsa-23,20260102-more-pypsa,2026-01-03 09:54:13.085868,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-50-168h,highs-1.6.0.dev0,pypsa-de-sec-trex_vopt +pypsa-de-sec-trex_vopt,50-168h,scip,8.1.0,2023.0,TO,Timeout,3600.0,3036.68,,,,3600.0,3600.0,benchmark-instance-more-pypsa-23,20260102-more-pypsa,2026-01-03 10:58:00.145625,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-50-168h,scip-8.1.0,pypsa-de-sec-trex_vopt +pypsa-de-sec-trex_vopt,50-168h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,301.64,,,,3600.0,3600.0,benchmark-instance-more-pypsa-23,20260102-more-pypsa,2026-01-03 12:01:48.004764,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-50-168h,cbc-2.10.11,pypsa-de-sec-trex_vopt +pypsa-de-sec-trex_vopt,50-168h,gurobi,12.0.0,2024.0,TO,Timeout,3600.0,606.984,,,,3600.0,3600.0,benchmark-instance-more-pypsa-23,20260102-more-pypsa,2026-01-03 13:06:03.450857,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-50-168h,gurobi-12.0.0,pypsa-de-sec-trex_vopt +pypsa-de-sec-trex_vopt,50-168h,highs,1.9.0,2024.0,TO,Timeout,3600.0,860.252,,,,3600.0,3600.0,benchmark-instance-more-pypsa-23,20260102-more-pypsa,2026-01-03 14:09:45.650213,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-50-168h,highs-1.9.0,pypsa-de-sec-trex_vopt +pypsa-de-sec-trex_vopt,50-168h,scip,9.2.0,2024.0,TO,Timeout,3600.0,3026.544,,,,3600.0,3600.0,benchmark-instance-more-pypsa-23,20260102-more-pypsa,2026-01-03 15:13:25.944367,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-50-168h,scip-9.2.0,pypsa-de-sec-trex_vopt +pypsa-de-sec-trex_vopt,50-168h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,283.804,,,,3600.0,3600.0,benchmark-instance-more-pypsa-23,20260102-more-pypsa,2026-01-03 16:17:10.595508,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-50-168h,cbc-2.10.12,pypsa-de-sec-trex_vopt +pypsa-de-sec-trex_vopt,50-168h,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,641.472,,,,3600.0,3600.0,benchmark-instance-more-pypsa-23,20260102-more-pypsa,2026-01-03 17:21:28.934995,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-50-168h,gurobi-13.0.0,pypsa-de-sec-trex_vopt +pypsa-de-sec-trex_vopt,50-168h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,465.8531158500045,1335.02,76425760175.0,,,465.8531158500045,3600.0,benchmark-instance-more-pypsa-23,20260102-more-pypsa,2026-01-03 18:25:13.660457,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-50-168h,highs-hipo-1.12.0-hipo,pypsa-de-sec-trex_vopt +pypsa-de-sec-trex_vopt,50-168h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,482.73275342899433,580.436,76425760182.0,,,482.73275342899433,3600.0,benchmark-instance-more-pypsa-23,20260102-more-pypsa,2026-01-03 18:33:00.732491,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-50-168h,highs-ipx-1.12.0-hipo,pypsa-de-sec-trex_vopt +pypsa-de-sec-trex_vopt,50-168h,highs,1.12.0,2025.0,TO,Timeout,3600.0,871.12,,,,3600.0,3600.0,benchmark-instance-more-pypsa-23,20260102-more-pypsa,2026-01-03 18:41:04.229644,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-50-168h,highs-1.12.0,pypsa-de-sec-trex_vopt +pypsa-de-sec-trex_vopt,50-168h,scip,10.0.0,2025.0,TO,Timeout,3600.0,3023.024,,,,3600.0,3600.0,benchmark-instance-more-pypsa-23,20260102-more-pypsa,2026-01-03 19:45:03.963794,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-50-168h,scip-10.0.0,pypsa-de-sec-trex_vopt +pypsa-de-sec-trex_vopt,10-24h,glpk,5.0,2020.0,TO,Timeout,3600.0,334.86,,,,3600.0,3600.0,benchmark-instance-more-pypsa-14,20260102-more-pypsa,2026-01-02 20:49:13.198163,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-10-24h,glpk-5.0,pypsa-de-sec-trex_vopt +pypsa-de-sec-trex_vopt,10-24h,gurobi,10.0.0,2022.0,TO,Timeout,3600.0,801.932,,,,3600.0,3600.0,benchmark-instance-more-pypsa-14,20260102-more-pypsa,2026-01-02 21:53:29.149899,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-10-24h,gurobi-10.0.0,pypsa-de-sec-trex_vopt +pypsa-de-sec-trex_vopt,10-24h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1336.616,,,,3600.0,3600.0,benchmark-instance-more-pypsa-14,20260102-more-pypsa,2026-01-02 22:57:04.827345,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-10-24h,highs-1.5.0.dev0,pypsa-de-sec-trex_vopt +pypsa-de-sec-trex_vopt,10-24h,scip,8.0.3,2022.0,TO,Timeout,3600.0,4237.552,,,,3600.0,3600.0,benchmark-instance-more-pypsa-14,20260102-more-pypsa,2026-01-03 00:00:41.194716,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-10-24h,scip-8.0.3,pypsa-de-sec-trex_vopt +pypsa-de-sec-trex_vopt,10-24h,gurobi,11.0.0,2023.0,TO,Timeout,3600.0,807.176,,,,3600.0,3600.0,benchmark-instance-more-pypsa-14,20260102-more-pypsa,2026-01-03 01:07:36.332212,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-10-24h,gurobi-11.0.0,pypsa-de-sec-trex_vopt +pypsa-de-sec-trex_vopt,10-24h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,1272.236,,,,3600.0,3600.0,benchmark-instance-more-pypsa-14,20260102-more-pypsa,2026-01-03 02:11:11.993335,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-10-24h,highs-1.6.0.dev0,pypsa-de-sec-trex_vopt +pypsa-de-sec-trex_vopt,10-24h,scip,8.1.0,2023.0,TO,Timeout,3600.0,4280.248,,,,3600.0,3600.0,benchmark-instance-more-pypsa-14,20260102-more-pypsa,2026-01-03 03:14:56.473430,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-10-24h,scip-8.1.0,pypsa-de-sec-trex_vopt +pypsa-de-sec-trex_vopt,10-24h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,365.436,,,,3600.0,3600.0,benchmark-instance-more-pypsa-14,20260102-more-pypsa,2026-01-03 04:18:31.771182,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-10-24h,cbc-2.10.11,pypsa-de-sec-trex_vopt +pypsa-de-sec-trex_vopt,10-24h,gurobi,12.0.0,2024.0,TO,Timeout,3600.0,819.208,,,,3600.0,3600.0,benchmark-instance-more-pypsa-14,20260102-more-pypsa,2026-01-03 05:22:36.036080,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-10-24h,gurobi-12.0.0,pypsa-de-sec-trex_vopt +pypsa-de-sec-trex_vopt,10-24h,highs,1.9.0,2024.0,TO,Timeout,3600.0,1137.248,,,,3600.0,3600.0,benchmark-instance-more-pypsa-14,20260102-more-pypsa,2026-01-03 06:26:11.461826,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-10-24h,highs-1.9.0,pypsa-de-sec-trex_vopt +pypsa-de-sec-trex_vopt,10-24h,scip,9.2.0,2024.0,TO,Timeout,3600.0,4260.164,,,,3600.0,3600.0,benchmark-instance-more-pypsa-14,20260102-more-pypsa,2026-01-03 07:29:46.603438,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-10-24h,scip-9.2.0,pypsa-de-sec-trex_vopt +pypsa-de-sec-trex_vopt,10-24h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,348.116,,,,3600.0,3600.0,benchmark-instance-more-pypsa-14,20260102-more-pypsa,2026-01-03 08:33:25.197763,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-10-24h,cbc-2.10.12,pypsa-de-sec-trex_vopt +pypsa-de-sec-trex_vopt,10-24h,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,846.244,,,,3600.0,3600.0,benchmark-instance-more-pypsa-14,20260102-more-pypsa,2026-01-03 09:37:31.784590,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-10-24h,gurobi-13.0.0,pypsa-de-sec-trex_vopt +pypsa-de-sec-trex_vopt,10-24h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,575.9568120460026,3392.968,79059509545.0,,,575.9568120460026,3600.0,benchmark-instance-more-pypsa-14,20260102-more-pypsa,2026-01-03 10:41:08.749373,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-10-24h,highs-hipo-1.12.0-hipo,pypsa-de-sec-trex_vopt +pypsa-de-sec-trex_vopt,10-24h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,1828.070677771,789.916,79059509539.0,,,1828.070677771,3600.0,benchmark-instance-more-pypsa-14,20260102-more-pypsa,2026-01-03 10:50:45.477934,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-10-24h,highs-ipx-1.12.0-hipo,pypsa-de-sec-trex_vopt +pypsa-de-sec-trex_vopt,10-24h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1096.76,,,,3600.0,3600.0,benchmark-instance-more-pypsa-14,20260102-more-pypsa,2026-01-03 11:21:14.361645,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-10-24h,highs-1.12.0,pypsa-de-sec-trex_vopt +pypsa-de-sec-trex_vopt,10-24h,scip,10.0.0,2025.0,TO,Timeout,3600.0,4273.716,,,,3600.0,3600.0,benchmark-instance-more-pypsa-14,20260102-more-pypsa,2026-01-03 12:24:50.872785,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-10-24h,scip-10.0.0,pypsa-de-sec-trex_vopt +pypsa-de-elec-trex_vopt-dfp,20-3h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,671.56,,,,86400.0,86400.0,benchmark-instance-more-pypsa-11,20260102-more-pypsa,2026-01-02 20:50:24.676214,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-dfp-20-3h,cbc-2.10.12,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,20-3h,gurobi,13.0.0,2025.0,ok,optimal,115.81811271500192,4962.404,7528331867.077795,,,106.29105591773988,86400.0,benchmark-instance-more-pypsa-11,20260102-more-pypsa,2026-01-03 20:53:58.076379,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-dfp-20-3h,gurobi-13.0.0,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,20-3h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,1385.6175398240011,3685.216,7528331867.1,,,1385.6175398240011,86400.0,benchmark-instance-more-pypsa-11,20260102-more-pypsa,2026-01-03 20:59:03.462838,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-dfp-20-3h,highs-hipo-1.12.0-hipo,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,20-3h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,12545.108397517994,2142.644,7528331867.1,,,12545.108397517994,86400.0,benchmark-instance-more-pypsa-11,20260102-more-pypsa,2026-01-03 21:22:09.747334,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-dfp-20-3h,highs-ipx-1.12.0-hipo,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,20-3h,highs,1.12.0,2025.0,ok,optimal,73388.65796904099,3951.336,7528331867.077734,,,73377.96126055717,86400.0,benchmark-instance-more-pypsa-11,20260102-more-pypsa,2026-01-04 00:54:22.922358,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-dfp-20-3h,highs-1.12.0,pypsa-de-elec-trex_vopt-dfp +pypsa-de-elec-trex_vopt-dfp,20-3h,scip,10.0.0,2025.0,TO,Timeout,86400.0,10971.932,,,,86400.0,86400.0,benchmark-instance-more-pypsa-11,20260102-more-pypsa,2026-01-04 21:20:46.170280,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-dfp-20-3h,scip-10.0.0,pypsa-de-elec-trex_vopt-dfp +pypsa-de-sec,50-168h,glpk,5.0,2020.0,TO,Timeout,3600.0,270.504,,,,3600.0,3600.0,benchmark-instance-more-pypsa-26,20260102-more-pypsa,2026-01-02 20:50:26.521299,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-50-168h,glpk-5.0,pypsa-de-sec +pypsa-de-sec,50-168h,gurobi,10.0.0,2022.0,TO,Timeout,3600.0,601.86,,,,3600.0,3600.0,benchmark-instance-more-pypsa-26,20260102-more-pypsa,2026-01-02 21:54:51.939335,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-50-168h,gurobi-10.0.0,pypsa-de-sec +pypsa-de-sec,50-168h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,778.588,,,,3600.0,3600.0,benchmark-instance-more-pypsa-26,20260102-more-pypsa,2026-01-02 22:58:31.627111,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-50-168h,highs-1.5.0.dev0,pypsa-de-sec +pypsa-de-sec,50-168h,scip,8.0.3,2022.0,TO,Timeout,3600.0,2956.488,,,,3600.0,3600.0,benchmark-instance-more-pypsa-26,20260102-more-pypsa,2026-01-03 00:02:11.058545,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-50-168h,scip-8.0.3,pypsa-de-sec +pypsa-de-sec,50-168h,gurobi,11.0.0,2023.0,TO,Timeout,3600.0,610.336,,,,3600.0,3600.0,benchmark-instance-more-pypsa-26,20260102-more-pypsa,2026-01-03 01:08:59.107310,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-50-168h,gurobi-11.0.0,pypsa-de-sec +pypsa-de-sec,50-168h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,827.988,,,,3600.0,3600.0,benchmark-instance-more-pypsa-26,20260102-more-pypsa,2026-01-03 02:12:39.613132,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-50-168h,highs-1.6.0.dev0,pypsa-de-sec +pypsa-de-sec,50-168h,scip,8.1.0,2023.0,TO,Timeout,3600.0,2984.068,,,,3600.0,3600.0,benchmark-instance-more-pypsa-26,20260102-more-pypsa,2026-01-03 03:16:12.335274,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-50-168h,scip-8.1.0,pypsa-de-sec +pypsa-de-sec,50-168h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,301.508,,,,3600.0,3600.0,benchmark-instance-more-pypsa-26,20260102-more-pypsa,2026-01-03 04:19:43.953519,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-50-168h,cbc-2.10.11,pypsa-de-sec +pypsa-de-sec,50-168h,gurobi,12.0.0,2024.0,TO,Timeout,3600.0,549.824,,,,3600.0,3600.0,benchmark-instance-more-pypsa-26,20260102-more-pypsa,2026-01-03 05:23:44.072839,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-50-168h,gurobi-12.0.0,pypsa-de-sec +pypsa-de-sec,50-168h,highs,1.9.0,2024.0,TO,Timeout,3600.0,840.156,,,,3600.0,3600.0,benchmark-instance-more-pypsa-26,20260102-more-pypsa,2026-01-03 06:27:04.304770,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-50-168h,highs-1.9.0,pypsa-de-sec +pypsa-de-sec,50-168h,scip,9.2.0,2024.0,TO,Timeout,3600.0,2977.62,,,,3600.0,3600.0,benchmark-instance-more-pypsa-26,20260102-more-pypsa,2026-01-03 07:30:18.793037,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-50-168h,scip-9.2.0,pypsa-de-sec +pypsa-de-sec,50-168h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,284.144,,,,3600.0,3600.0,benchmark-instance-more-pypsa-26,20260102-more-pypsa,2026-01-03 08:33:52.213767,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-50-168h,cbc-2.10.12,pypsa-de-sec +pypsa-de-sec,50-168h,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,580.612,,,,3600.0,3600.0,benchmark-instance-more-pypsa-26,20260102-more-pypsa,2026-01-03 09:38:00.220717,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-50-168h,gurobi-13.0.0,pypsa-de-sec +pypsa-de-sec,50-168h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,422.0756080729989,1248.716,76995150942.0,,,422.0756080729989,3600.0,benchmark-instance-more-pypsa-26,20260102-more-pypsa,2026-01-03 10:41:42.017283,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-50-168h,highs-hipo-1.12.0-hipo,pypsa-de-sec +pypsa-de-sec,50-168h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,364.7384768460033,580.328,76995150944.0,,,364.7384768460033,3600.0,benchmark-instance-more-pypsa-26,20260102-more-pypsa,2026-01-03 10:48:45.281171,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-50-168h,highs-ipx-1.12.0-hipo,pypsa-de-sec +pypsa-de-sec,50-168h,highs,1.12.0,2025.0,TO,Timeout,3600.0,869.96,,,,3600.0,3600.0,benchmark-instance-more-pypsa-26,20260102-more-pypsa,2026-01-03 10:54:50.707286,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-50-168h,highs-1.12.0,pypsa-de-sec +pypsa-de-sec,50-168h,scip,10.0.0,2025.0,TO,Timeout,3600.0,2995.892,,,,3600.0,3600.0,benchmark-instance-more-pypsa-26,20260102-more-pypsa,2026-01-03 11:58:06.878880,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-50-168h,scip-10.0.0,pypsa-de-sec +pypsa-eur-sec-trex_vopt,50-24h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,1167.6,,,,86400.0,86400.0,benchmark-instance-more-pypsa-00,20260102-more-pypsa,2026-01-02 20:51:30.352218,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-sec-trex_vopt-50-24h,cbc-2.10.12,pypsa-eur-sec-trex_vopt +pypsa-eur-sec-trex_vopt,50-24h,gurobi,13.0.0,2025.0,TO,Timeout,86400.0,12509.524,,,,86400.0,86400.0,benchmark-instance-more-pypsa-00,20260102-more-pypsa,2026-01-03 20:55:41.058870,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-sec-trex_vopt-50-24h,gurobi-13.0.0,pypsa-eur-sec-trex_vopt +pypsa-eur-sec-trex_vopt,50-24h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,28702.95112564601,38260.336,385369358880.0,,,28702.95112564601,86400.0,benchmark-instance-more-pypsa-00,20260102-more-pypsa,2026-01-04 20:59:25.592084,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-sec-trex_vopt-50-24h,highs-hipo-1.12.0-hipo,pypsa-eur-sec-trex_vopt +pypsa-eur-sec-trex_vopt,50-24h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,49775.122470781,4012.896,385369358940.0,,,49775.122470781,86400.0,benchmark-instance-more-pypsa-00,20260102-more-pypsa,2026-01-05 05:01:40.916853,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-sec-trex_vopt-50-24h,highs-ipx-1.12.0-hipo,pypsa-eur-sec-trex_vopt +pypsa-eur-sec-trex_vopt,50-24h,highs,1.12.0,2025.0,TO,Timeout,86400.0,3888.232,,,,86400.0,86400.0,benchmark-instance-more-pypsa-00,20260102-more-pypsa,2026-01-05 18:54:58.148684,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-sec-trex_vopt-50-24h,highs-1.12.0,pypsa-eur-sec-trex_vopt +pypsa-eur-sec-trex_vopt,50-24h,scip,10.0.0,2025.0,TO,Timeout,86400.0,18574.792,,,,86400.0,86400.0,benchmark-instance-more-pypsa-00,20260102-more-pypsa,2026-01-06 18:58:32.583730,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-sec-trex_vopt-50-24h,scip-10.0.0,pypsa-eur-sec-trex_vopt +pypsa-de-elec-trex_vopt,20-3h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,671.8,,,,86400.0,86400.0,benchmark-instance-more-pypsa-12,20260102-more-pypsa,2026-01-02 20:50:14.013020,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-20-3h,cbc-2.10.12,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,20-3h,gurobi,13.0.0,2025.0,ok,optimal,126.3865236290003,4910.452,7528335115.560469,,,115.38533687591551,86400.0,benchmark-instance-more-pypsa-12,20260102-more-pypsa,2026-01-03 20:54:15.604407,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-20-3h,gurobi-13.0.0,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,20-3h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,1440.023066277994,3749.332,7528335115.6,,,1440.023066277994,86400.0,benchmark-instance-more-pypsa-12,20260102-more-pypsa,2026-01-03 21:00:02.829028,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-20-3h,highs-hipo-1.12.0-hipo,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,20-3h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,14309.817288521996,2128.016,7528335115.6,,,14309.817288521996,86400.0,benchmark-instance-more-pypsa-12,20260102-more-pypsa,2026-01-03 21:24:03.625045,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-20-3h,highs-ipx-1.12.0-hipo,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,20-3h,highs,1.12.0,2025.0,TO,Timeout,86400.0,2629.768,,,,86400.0,86400.0,benchmark-instance-more-pypsa-12,20260102-more-pypsa,2026-01-04 01:26:05.403711,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-20-3h,highs-1.12.0,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,20-3h,scip,10.0.0,2025.0,TO,Timeout,86400.0,11028.524,,,,86400.0,86400.0,benchmark-instance-more-pypsa-12,20260102-more-pypsa,2026-01-05 01:29:45.741057,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-20-3h,scip-10.0.0,pypsa-de-elec-trex_vopt +pypsa-eur-elec-trex_vopt-dfp,50-168h,glpk,5.0,2020.0,ok,optimal,259.307713394,240.088,35670084070.0,,,,3600.0,benchmark-instance-more-pypsa-28,20260102-more-pypsa,2026-01-02 20:49:18.471542,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-dfp-50-168h,glpk-5.0,pypsa-eur-elec-trex_vopt-dfp +pypsa-eur-elec-trex_vopt-dfp,50-168h,gurobi,10.0.0,2022.0,ok,optimal,227.291879969,347.916,35670084070.76351,,,226.33072209358212,3600.0,benchmark-instance-more-pypsa-28,20260102-more-pypsa,2026-01-02 20:58:03.685434,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-dfp-50-168h,gurobi-10.0.0,pypsa-eur-elec-trex_vopt-dfp +pypsa-eur-elec-trex_vopt-dfp,50-168h,highs,1.5.0.dev0,2022.0,ok,optimal,233.928868343,377.86,35670084070.76392,,,233.24233317375183,3600.0,benchmark-instance-more-pypsa-28,20260102-more-pypsa,2026-01-02 21:05:37.702174,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-dfp-50-168h,highs-1.5.0.dev0,pypsa-eur-elec-trex_vopt-dfp +pypsa-eur-elec-trex_vopt-dfp,50-168h,scip,8.0.3,2022.0,ok,optimal,1037.789125936,829.26,35670084070.764786,,,1037.135995,3600.0,benchmark-instance-more-pypsa-28,20260102-more-pypsa,2026-01-02 21:09:32.759017,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-dfp-50-168h,scip-8.0.3,pypsa-eur-elec-trex_vopt-dfp +pypsa-eur-elec-trex_vopt-dfp,50-168h,gurobi,11.0.0,2023.0,ok,optimal,227.8077648399999,350.972,35670084070.76354,,,226.98569703102112,3600.0,benchmark-instance-more-pypsa-28,20260102-more-pypsa,2026-01-02 21:30:13.656191,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-dfp-50-168h,gurobi-11.0.0,pypsa-eur-elec-trex_vopt-dfp +pypsa-eur-elec-trex_vopt-dfp,50-168h,highs,1.6.0.dev0,2023.0,ok,optimal,232.10518696100007,377.344,35670084070.76392,,,231.6320621967316,3600.0,benchmark-instance-more-pypsa-28,20260102-more-pypsa,2026-01-02 21:37:46.853575,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-dfp-50-168h,highs-1.6.0.dev0,pypsa-eur-elec-trex_vopt-dfp +pypsa-eur-elec-trex_vopt-dfp,50-168h,scip,8.1.0,2023.0,ok,optimal,1055.0858942480004,832.612,35670084070.764786,,,1054.516882,3600.0,benchmark-instance-more-pypsa-28,20260102-more-pypsa,2026-01-02 21:41:40.033334,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-dfp-50-168h,scip-8.1.0,pypsa-eur-elec-trex_vopt-dfp +pypsa-eur-elec-trex_vopt-dfp,50-168h,cbc,2.10.11,2023.0,ok,optimal,241.9408278410001,212.42,35670084070.76348,,,,3600.0,benchmark-instance-more-pypsa-28,20260102-more-pypsa,2026-01-02 21:59:16.337590,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-dfp-50-168h,cbc-2.10.11,pypsa-eur-elec-trex_vopt-dfp +pypsa-eur-elec-trex_vopt-dfp,50-168h,gurobi,12.0.0,2024.0,ok,optimal,204.7407649979996,337.512,35670084070.7635,,,203.925726890564,3600.0,benchmark-instance-more-pypsa-28,20260102-more-pypsa,2026-01-02 22:03:49.020750,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-dfp-50-168h,gurobi-12.0.0,pypsa-eur-elec-trex_vopt-dfp +pypsa-eur-elec-trex_vopt-dfp,50-168h,highs,1.9.0,2024.0,ok,optimal,243.0739131719993,364.772,35670084070.76377,,,242.30775809288025,3600.0,benchmark-instance-more-pypsa-28,20260102-more-pypsa,2026-01-02 22:10:55.750209,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-dfp-50-168h,highs-1.9.0,pypsa-eur-elec-trex_vopt-dfp +pypsa-eur-elec-trex_vopt-dfp,50-168h,scip,9.2.0,2024.0,ok,optimal,1050.4411744400004,817.724,35670084070.764786,,,1049.863301,3600.0,benchmark-instance-more-pypsa-28,20260102-more-pypsa,2026-01-02 22:15:00.149472,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-dfp-50-168h,scip-9.2.0,pypsa-eur-elec-trex_vopt-dfp +pypsa-eur-elec-trex_vopt-dfp,50-168h,cbc,2.10.12,2024.0,ok,optimal,243.45702185700063,228.652,35670084070.76348,,,,3600.0,benchmark-instance-more-pypsa-28,20260102-more-pypsa,2026-01-02 22:32:32.062536,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-dfp-50-168h,cbc-2.10.12,pypsa-eur-elec-trex_vopt-dfp +pypsa-eur-elec-trex_vopt-dfp,50-168h,gurobi,13.0.0,2025.0,ok,optimal,172.07380029099932,364.008,35670084070.76342,,,171.2646849155426,3600.0,benchmark-instance-more-pypsa-28,20260102-more-pypsa,2026-01-02 22:37:07.211862,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-dfp-50-168h,gurobi-13.0.0,pypsa-eur-elec-trex_vopt-dfp +pypsa-eur-elec-trex_vopt-dfp,50-168h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,25.045641773999705,199.392,35670084071.0,,,25.045641773999705,3600.0,benchmark-instance-more-pypsa-28,20260102-more-pypsa,2026-01-02 22:43:44.750363,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-dfp-50-168h,highs-hipo-1.12.0-hipo,pypsa-eur-elec-trex_vopt-dfp +pypsa-eur-elec-trex_vopt-dfp,50-168h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,30.630777308000688,163.888,35670084071.0,,,30.630777308000688,3600.0,benchmark-instance-more-pypsa-28,20260102-more-pypsa,2026-01-02 22:44:10.809262,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-dfp-50-168h,highs-ipx-1.12.0-hipo,pypsa-eur-elec-trex_vopt-dfp +pypsa-eur-elec-trex_vopt-dfp,50-168h,highs,1.12.0,2025.0,ok,optimal,242.8438192170006,393.304,35670084070.76342,,,242.2905523777008,3600.0,benchmark-instance-more-pypsa-28,20260102-more-pypsa,2026-01-02 22:44:42.206901,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-dfp-50-168h,highs-1.12.0,pypsa-eur-elec-trex_vopt-dfp +pypsa-eur-elec-trex_vopt-dfp,50-168h,scip,10.0.0,2025.0,ok,optimal,1047.0486048720004,845.1,35670084070.764786,,,1046.464534,3600.0,benchmark-instance-more-pypsa-28,20260102-more-pypsa,2026-01-02 22:48:46.177230,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_vopt-dfp-50-168h,scip-10.0.0,pypsa-eur-elec-trex_vopt-dfp +pypsa-de-sec-trex_vopt,20-12h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,966.832,,,,86400.0,86400.0,benchmark-instance-more-pypsa-03,20260102-more-pypsa,2026-01-02 20:51:22.221615,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-20-12h,cbc-2.10.12,pypsa-de-sec-trex_vopt +pypsa-de-sec-trex_vopt,20-12h,gurobi,13.0.0,2025.0,TO,Timeout,86400.0,8264.64,,,,86400.0,86400.0,benchmark-instance-more-pypsa-03,20260102-more-pypsa,2026-01-03 20:55:20.462289,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-20-12h,gurobi-13.0.0,pypsa-de-sec-trex_vopt +pypsa-de-sec-trex_vopt,20-12h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,10818.521380600983,23055.684,78752307576.0,,,10818.521380600983,86400.0,benchmark-instance-more-pypsa-03,20260102-more-pypsa,2026-01-04 20:59:02.265603,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-20-12h,highs-hipo-1.12.0-hipo,pypsa-de-sec-trex_vopt +pypsa-de-sec-trex_vopt,20-12h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,35540.83402136102,3069.572,78752307648.0,,,35540.83402136102,86400.0,benchmark-instance-more-pypsa-03,20260102-more-pypsa,2026-01-05 00:02:52.066395,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-20-12h,highs-ipx-1.12.0-hipo,pypsa-de-sec-trex_vopt +pypsa-de-sec-trex_vopt,20-12h,highs,1.12.0,2025.0,TO,Timeout,86400.0,3303.336,,,,86400.0,86400.0,benchmark-instance-more-pypsa-03,20260102-more-pypsa,2026-01-05 09:59:01.966168,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-20-12h,highs-1.12.0,pypsa-de-sec-trex_vopt +pypsa-de-sec-trex_vopt,20-12h,scip,10.0.0,2025.0,TO,Timeout,86400.0,15180.308,,,,86400.0,86400.0,benchmark-instance-more-pypsa-03,20260102-more-pypsa,2026-01-06 10:02:40.703894,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-sec-trex_vopt-20-12h,scip-10.0.0,pypsa-de-sec-trex_vopt +pypsa-eur-elec-trex_copt,50-168h,glpk,5.0,2020.0,ok,optimal,223.18042389700005,239.544,35669861600.0,,,,3600.0,benchmark-instance-more-pypsa-31,20260102-more-pypsa,2026-01-02 20:49:16.313461,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-50-168h,glpk-5.0,pypsa-eur-elec-trex_copt +pypsa-eur-elec-trex_copt,50-168h,gurobi,10.0.0,2022.0,ok,optimal,207.70265126900009,346.312,35669861602.83872,,,206.8320908546448,3600.0,benchmark-instance-more-pypsa-31,20260102-more-pypsa,2026-01-02 20:56:42.594196,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-50-168h,gurobi-10.0.0,pypsa-eur-elec-trex_copt +pypsa-eur-elec-trex_copt,50-168h,highs,1.5.0.dev0,2022.0,ok,optimal,200.93848306699988,387.968,35669861602.839134,,,200.37284755706787,3600.0,benchmark-instance-more-pypsa-31,20260102-more-pypsa,2026-01-02 21:03:20.204287,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-50-168h,highs-1.5.0.dev0,pypsa-eur-elec-trex_copt +pypsa-eur-elec-trex_copt,50-168h,scip,8.0.3,2022.0,ok,optimal,633.6691176019999,833.816,35669861602.83836,,,633.084229,3600.0,benchmark-instance-more-pypsa-31,20260102-more-pypsa,2026-01-02 21:06:42.136260,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-50-168h,scip-8.0.3,pypsa-eur-elec-trex_copt +pypsa-eur-elec-trex_copt,50-168h,gurobi,11.0.0,2023.0,ok,optimal,193.19456192400003,349.224,35669861602.83863,,,192.4614839553833,3600.0,benchmark-instance-more-pypsa-31,20260102-more-pypsa,2026-01-02 21:20:11.906300,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-50-168h,gurobi-11.0.0,pypsa-eur-elec-trex_copt +pypsa-eur-elec-trex_copt,50-168h,highs,1.6.0.dev0,2023.0,ok,optimal,198.581982358,388.336,35669861602.839134,,,198.1848337650299,3600.0,benchmark-instance-more-pypsa-31,20260102-more-pypsa,2026-01-02 21:26:35.361738,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-50-168h,highs-1.6.0.dev0,pypsa-eur-elec-trex_copt +pypsa-eur-elec-trex_copt,50-168h,scip,8.1.0,2023.0,ok,optimal,629.9507239490003,839.176,35669861602.83836,,,629.449815,3600.0,benchmark-instance-more-pypsa-31,20260102-more-pypsa,2026-01-02 21:29:54.852247,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-50-168h,scip-8.1.0,pypsa-eur-elec-trex_copt +pypsa-eur-elec-trex_copt,50-168h,cbc,2.10.11,2023.0,ok,optimal,177.74881458499976,211.68,35669861602.83872,,,,3600.0,benchmark-instance-more-pypsa-31,20260102-more-pypsa,2026-01-02 21:40:25.864462,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-50-168h,cbc-2.10.11,pypsa-eur-elec-trex_copt +pypsa-eur-elec-trex_copt,50-168h,gurobi,12.0.0,2024.0,ok,optimal,142.58490863800034,334.064,35669861602.83874,,,141.87733507156372,3600.0,benchmark-instance-more-pypsa-31,20260102-more-pypsa,2026-01-02 21:43:49.468255,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-50-168h,gurobi-12.0.0,pypsa-eur-elec-trex_copt +pypsa-eur-elec-trex_copt,50-168h,highs,1.9.0,2024.0,ok,optimal,192.31366958699985,367.416,35669861602.83939,,,191.61337113380432,3600.0,benchmark-instance-more-pypsa-31,20260102-more-pypsa,2026-01-02 21:49:30.508539,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-50-168h,highs-1.9.0,pypsa-eur-elec-trex_copt +pypsa-eur-elec-trex_copt,50-168h,scip,9.2.0,2024.0,ok,optimal,631.1221234140003,822.164,35669861602.83836,,,630.619883,3600.0,benchmark-instance-more-pypsa-31,20260102-more-pypsa,2026-01-02 21:52:44.013472,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-50-168h,scip-9.2.0,pypsa-eur-elec-trex_copt +pypsa-eur-elec-trex_copt,50-168h,cbc,2.10.12,2024.0,ok,optimal,179.13086913899951,231.524,35669861602.83872,,,,3600.0,benchmark-instance-more-pypsa-31,20260102-more-pypsa,2026-01-02 22:03:16.443450,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-50-168h,cbc-2.10.12,pypsa-eur-elec-trex_copt +pypsa-eur-elec-trex_copt,50-168h,gurobi,13.0.0,2025.0,ok,optimal,151.4885618420003,367.152,35669861602.83903,,,150.77744388580322,3600.0,benchmark-instance-more-pypsa-31,20260102-more-pypsa,2026-01-02 22:06:42.336379,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-50-168h,gurobi-13.0.0,pypsa-eur-elec-trex_copt +pypsa-eur-elec-trex_copt,50-168h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,20.922103823000725,202.364,35669861603.0,,,20.922103823000725,3600.0,benchmark-instance-more-pypsa-31,20260102-more-pypsa,2026-01-02 22:12:24.316883,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-50-168h,highs-hipo-1.12.0-hipo,pypsa-eur-elec-trex_copt +pypsa-eur-elec-trex_copt,50-168h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,25.56344634600009,163.536,35669861603.0,,,25.56344634600009,3600.0,benchmark-instance-more-pypsa-31,20260102-more-pypsa,2026-01-02 22:12:46.217843,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-50-168h,highs-ipx-1.12.0-hipo,pypsa-eur-elec-trex_copt +pypsa-eur-elec-trex_copt,50-168h,highs,1.12.0,2025.0,ok,optimal,187.8038783359998,390.108,35669861602.83901,,,187.31418871879575,3600.0,benchmark-instance-more-pypsa-31,20260102-more-pypsa,2026-01-02 22:13:12.424016,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-50-168h,highs-1.12.0,pypsa-eur-elec-trex_copt +pypsa-eur-elec-trex_copt,50-168h,scip,10.0.0,2025.0,ok,optimal,628.6247019009998,848.528,35669861602.83836,,,628.120543,3600.0,benchmark-instance-more-pypsa-31,20260102-more-pypsa,2026-01-02 22:16:21.175277,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-50-168h,scip-10.0.0,pypsa-eur-elec-trex_copt +pypsa-de-elec-trex_vopt,50-24h,glpk,5.0,2020.0,ok,optimal,3270.448269049,759.956,7061392450.0,,,,3600.0,benchmark-instance-more-pypsa-17,20260102-more-pypsa,2026-01-02 20:49:34.599791,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-50-24h,glpk-5.0,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,50-24h,gurobi,10.0.0,2022.0,ok,optimal,717.0627332429999,1192.168,7061392449.543745,,,712.9392540454865,3600.0,benchmark-instance-more-pypsa-17,20260102-more-pypsa,2026-01-02 21:48:36.033810,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-50-24h,gurobi-10.0.0,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,50-24h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1042.096,,,,3600.0,3600.0,benchmark-instance-more-pypsa-17,20260102-more-pypsa,2026-01-02 22:04:20.803256,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-50-24h,highs-1.5.0.dev0,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,50-24h,scip,8.0.3,2022.0,TO,Timeout,3600.0,3280.74,,,,3600.0,3600.0,benchmark-instance-more-pypsa-17,20260102-more-pypsa,2026-01-02 23:08:00.954720,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-50-24h,scip-8.0.3,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,50-24h,gurobi,11.0.0,2023.0,ok,optimal,643.615833797001,1157.58,7061392449.543734,,,640.2725429534912,3600.0,benchmark-instance-more-pypsa-17,20260102-more-pypsa,2026-01-03 00:15:14.320855,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-50-24h,gurobi-11.0.0,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,50-24h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,973.812,,,,3600.0,3600.0,benchmark-instance-more-pypsa-17,20260102-more-pypsa,2026-01-03 00:29:43.934799,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-50-24h,highs-1.6.0.dev0,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,50-24h,scip,8.1.0,2023.0,TO,Timeout,3600.0,3345.624,,,,3600.0,3600.0,benchmark-instance-more-pypsa-17,20260102-more-pypsa,2026-01-03 01:33:24.203716,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-50-24h,scip-8.1.0,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,50-24h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,306.52,,,,3600.0,3600.0,benchmark-instance-more-pypsa-17,20260102-more-pypsa,2026-01-03 02:37:10.889199,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-50-24h,cbc-2.10.11,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,50-24h,gurobi,12.0.0,2024.0,ok,optimal,3473.896798512,1139.696,7061392449.543623,,,3470.330692052841,3600.0,benchmark-instance-more-pypsa-17,20260102-more-pypsa,2026-01-03 03:41:22.842731,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-50-24h,gurobi-12.0.0,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,50-24h,highs,1.9.0,2024.0,TO,Timeout,3600.0,994.296,,,,3600.0,3600.0,benchmark-instance-more-pypsa-17,20260102-more-pypsa,2026-01-03 04:43:07.310266,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-50-24h,highs-1.9.0,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,50-24h,scip,9.2.0,2024.0,TO,Timeout,3600.0,3335.208,,,,3600.0,3600.0,benchmark-instance-more-pypsa-17,20260102-more-pypsa,2026-01-03 05:46:51.935222,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-50-24h,scip-9.2.0,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,50-24h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,289.268,,,,3600.0,3600.0,benchmark-instance-more-pypsa-17,20260102-more-pypsa,2026-01-03 06:50:35.188765,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-50-24h,cbc-2.10.12,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,50-24h,gurobi,13.0.0,2025.0,ok,optimal,3093.7610360370018,1161.452,7061392449.543631,,,3090.426092863083,3600.0,benchmark-instance-more-pypsa-17,20260102-more-pypsa,2026-01-03 07:54:49.279658,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-50-24h,gurobi-13.0.0,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,50-24h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,541.3329602550002,3249.544,7061392449.5,,,541.3329602550002,3600.0,benchmark-instance-more-pypsa-17,20260102-more-pypsa,2026-01-03 08:50:12.788866,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-50-24h,highs-hipo-1.12.0-hipo,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,50-24h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,769.4320282530025,647.74,7061392449.5,,,769.4320282530025,3600.0,benchmark-instance-more-pypsa-17,20260102-more-pypsa,2026-01-03 08:59:14.953479,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-50-24h,highs-ipx-1.12.0-hipo,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,50-24h,highs,1.12.0,2025.0,TO,Timeout,3600.0,961.28,,,,3600.0,3600.0,benchmark-instance-more-pypsa-17,20260102-more-pypsa,2026-01-03 09:12:05.508837,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-50-24h,highs-1.12.0,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,50-24h,scip,10.0.0,2025.0,TO,Timeout,3600.0,3307.348,,,,3600.0,3600.0,benchmark-instance-more-pypsa-17,20260102-more-pypsa,2026-01-03 10:15:45.896782,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_vopt-50-24h,scip-10.0.0,pypsa-de-elec-trex_vopt +pypsa-de-elec-dfp,50-24h,glpk,5.0,2020.0,TO,Timeout,3600.0,277.164,,,,3600.0,3600.0,benchmark-instance-more-pypsa-20,20260102-more-pypsa,2026-01-02 20:50:33.448062,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-dfp-50-24h,glpk-5.0,pypsa-de-elec-dfp +pypsa-de-elec-dfp,50-24h,gurobi,10.0.0,2022.0,ok,optimal,1055.1277436179998,1184.848,7119065938.325077,,,1050.8329939842224,3600.0,benchmark-instance-more-pypsa-20,20260102-more-pypsa,2026-01-02 21:54:48.257052,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-dfp-50-24h,gurobi-10.0.0,pypsa-de-elec-dfp +pypsa-de-elec-dfp,50-24h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,962.352,,,,3600.0,3600.0,benchmark-instance-more-pypsa-20,20260102-more-pypsa,2026-01-02 22:16:18.021250,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-dfp-50-24h,highs-1.5.0.dev0,pypsa-de-elec-dfp +pypsa-de-elec-dfp,50-24h,scip,8.0.3,2022.0,TO,Timeout,3600.0,3028.78,,,,3600.0,3600.0,benchmark-instance-more-pypsa-20,20260102-more-pypsa,2026-01-02 23:20:01.178757,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-dfp-50-24h,scip-8.0.3,pypsa-de-elec-dfp +pypsa-de-elec-dfp,50-24h,gurobi,11.0.0,2023.0,ok,optimal,1033.776595302999,1149.312,7119065938.325077,,,1030.3616108894348,3600.0,benchmark-instance-more-pypsa-20,20260102-more-pypsa,2026-01-03 00:27:20.499153,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-dfp-50-24h,gurobi-11.0.0,pypsa-de-elec-dfp +pypsa-de-elec-dfp,50-24h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,897.524,,,,3600.0,3600.0,benchmark-instance-more-pypsa-20,20260102-more-pypsa,2026-01-03 00:48:29.018552,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-dfp-50-24h,highs-1.6.0.dev0,pypsa-de-elec-dfp +pypsa-de-elec-dfp,50-24h,scip,8.1.0,2023.0,TO,Timeout,3600.0,3077.14,,,,3600.0,3600.0,benchmark-instance-more-pypsa-20,20260102-more-pypsa,2026-01-03 01:52:23.796100,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-dfp-50-24h,scip-8.1.0,pypsa-de-elec-dfp +pypsa-de-elec-dfp,50-24h,cbc,2.10.11,2023.0,ok,optimal,2451.3739448300003,704.5,7119065938.325058,,,,3600.0,benchmark-instance-more-pypsa-20,20260102-more-pypsa,2026-01-03 02:56:11.371793,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-dfp-50-24h,cbc-2.10.11,pypsa-de-elec-dfp +pypsa-de-elec-dfp,50-24h,gurobi,12.0.0,2024.0,ok,optimal,864.5261526819995,1141.716,7119065938.3250885,,,861.0945658683777,3600.0,benchmark-instance-more-pypsa-20,20260102-more-pypsa,2026-01-03 03:37:36.289154,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-dfp-50-24h,gurobi-12.0.0,pypsa-de-elec-dfp +pypsa-de-elec-dfp,50-24h,highs,1.9.0,2024.0,TO,Timeout,3600.0,918.812,,,,3600.0,3600.0,benchmark-instance-more-pypsa-20,20260102-more-pypsa,2026-01-03 03:55:49.982873,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-dfp-50-24h,highs-1.9.0,pypsa-de-elec-dfp +pypsa-de-elec-dfp,50-24h,scip,9.2.0,2024.0,TO,Timeout,3600.0,3061.188,,,,3600.0,3600.0,benchmark-instance-more-pypsa-20,20260102-more-pypsa,2026-01-03 04:59:39.619250,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-dfp-50-24h,scip-9.2.0,pypsa-de-elec-dfp +pypsa-de-elec-dfp,50-24h,cbc,2.10.12,2024.0,ok,optimal,2453.763665751001,707.716,7119065938.325058,,,,3600.0,benchmark-instance-more-pypsa-20,20260102-more-pypsa,2026-01-03 06:03:28.443173,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-dfp-50-24h,cbc-2.10.12,pypsa-de-elec-dfp +pypsa-de-elec-dfp,50-24h,gurobi,13.0.0,2025.0,ok,optimal,1244.5537479170016,1163.576,7119065938.325085,,,1241.098746061325,3600.0,benchmark-instance-more-pypsa-20,20260102-more-pypsa,2026-01-03 06:45:00.764246,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-dfp-50-24h,gurobi-13.0.0,pypsa-de-elec-dfp +pypsa-de-elec-dfp,50-24h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,1285.069594802997,3670.512,7119065938.3,,,1285.069594802997,3600.0,benchmark-instance-more-pypsa-20,20260102-more-pypsa,2026-01-03 07:09:35.893932,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-dfp-50-24h,highs-hipo-1.12.0-hipo,pypsa-de-elec-dfp +pypsa-de-elec-dfp,50-24h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,819.9649087229991,614.112,7119065938.3,,,819.9649087229991,3600.0,benchmark-instance-more-pypsa-20,20260102-more-pypsa,2026-01-03 07:31:02.293717,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-dfp-50-24h,highs-ipx-1.12.0-hipo,pypsa-de-elec-dfp +pypsa-de-elec-dfp,50-24h,highs,1.12.0,2025.0,TO,Timeout,3600.0,886.1,,,,3600.0,3600.0,benchmark-instance-more-pypsa-20,20260102-more-pypsa,2026-01-03 07:44:43.433018,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-dfp-50-24h,highs-1.12.0,pypsa-de-elec-dfp +pypsa-de-elec-dfp,50-24h,scip,10.0.0,2025.0,TO,Timeout,3600.0,3079.072,,,,3600.0,3600.0,benchmark-instance-more-pypsa-20,20260102-more-pypsa,2026-01-03 08:48:44.291578,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-dfp-50-24h,scip-10.0.0,pypsa-de-elec-dfp +pypsa-eur-elec-dfp,100-12h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,841.24,,,,86400.0,86400.0,benchmark-instance-more-pypsa-10,20260102-more-pypsa,2026-01-02 20:51:02.721556,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-elec-dfp-100-12h,cbc-2.10.12,pypsa-eur-elec-dfp +pypsa-eur-elec-dfp,100-12h,gurobi,13.0.0,2025.0,ok,optimal,790.442793921,5973.052,37400211515.94621,,,775.8823502063751,86400.0,benchmark-instance-more-pypsa-10,20260102-more-pypsa,2026-01-03 20:55:02.374123,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-elec-dfp-100-12h,gurobi-13.0.0,pypsa-eur-elec-dfp +pypsa-eur-elec-dfp,100-12h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,3939.728839737,14371.0,37400211516.0,,,3939.728839737,86400.0,benchmark-instance-more-pypsa-10,20260102-more-pypsa,2026-01-03 21:11:57.176865,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-elec-dfp-100-12h,highs-hipo-1.12.0-hipo,pypsa-eur-elec-dfp +pypsa-eur-elec-dfp,100-12h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,19871.676533331996,2731.908,37400211518.0,,,19871.676533331996,86400.0,benchmark-instance-more-pypsa-10,20260102-more-pypsa,2026-01-03 22:21:05.992773,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-elec-dfp-100-12h,highs-ipx-1.12.0-hipo,pypsa-eur-elec-dfp +pypsa-eur-elec-dfp,100-12h,highs,1.12.0,2025.0,TO,Timeout,86400.0,3185.356,,,,86400.0,86400.0,benchmark-instance-more-pypsa-10,20260102-more-pypsa,2026-01-04 03:55:52.576787,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-elec-dfp-100-12h,highs-1.12.0,pypsa-eur-elec-dfp +pypsa-eur-elec-dfp,100-12h,scip,10.0.0,2025.0,ER,,,17084.152,,,,,86400.0,benchmark-instance-more-pypsa-10,20260102-more-pypsa,2026-01-05 03:59:31.232317,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-elec-dfp-100-12h,scip-10.0.0,pypsa-eur-elec-dfp +pypsa-de-sec,10-168h,glpk,5.0,2020.0,ok,optimal,2166.204519363,244.208,76628645060.0,,,,3600.0,benchmark-instance-more-pypsa-27,20260102-more-pypsa,2026-01-02 20:49:13.748343,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-10-168h,glpk-5.0,pypsa-de-sec +pypsa-de-sec,10-168h,gurobi,10.0.0,2022.0,ok,optimal,190.7106732280004,370.744,76628645061.99557,,,189.69126915931705,3600.0,benchmark-instance-more-pypsa-27,20260102-more-pypsa,2026-01-02 21:29:36.897301,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-10-168h,gurobi-10.0.0,pypsa-de-sec +pypsa-de-sec,10-168h,highs,1.5.0.dev0,2022.0,ok,optimal,779.3700415510002,386.924,76628645061.99486,,,778.6477394104004,3600.0,benchmark-instance-more-pypsa-27,20260102-more-pypsa,2026-01-02 21:36:25.162255,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-10-168h,highs-1.5.0.dev0,pypsa-de-sec +pypsa-de-sec,10-168h,scip,8.0.3,2022.0,ok,optimal,306.59071449500016,908.416,76628645061.99442,,,305.900863,3600.0,benchmark-instance-more-pypsa-27,20260102-more-pypsa,2026-01-02 21:49:25.690743,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-10-168h,scip-8.0.3,pypsa-de-sec +pypsa-de-sec,10-168h,gurobi,11.0.0,2023.0,ok,optimal,205.85455060000004,374.184,76628645061.99562,,,205.0143280029297,3600.0,benchmark-instance-more-pypsa-27,20260102-more-pypsa,2026-01-02 21:57:53.100719,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-10-168h,gurobi-11.0.0,pypsa-de-sec +pypsa-de-sec,10-168h,highs,1.6.0.dev0,2023.0,ok,optimal,779.0917812400003,395.932,76628645061.99486,,,778.5873599052429,3600.0,benchmark-instance-more-pypsa-27,20260102-more-pypsa,2026-01-02 22:04:57.760647,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-10-168h,highs-1.6.0.dev0,pypsa-de-sec +pypsa-de-sec,10-168h,scip,8.1.0,2023.0,ok,optimal,307.46930514700034,906.472,76628645061.99442,,,306.880047,3600.0,benchmark-instance-more-pypsa-27,20260102-more-pypsa,2026-01-02 22:17:57.911837,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-10-168h,scip-8.1.0,pypsa-de-sec +pypsa-de-sec,10-168h,cbc,2.10.11,2023.0,ok,optimal,387.7350101869997,218.464,76628645061.3232,,,,3600.0,benchmark-instance-more-pypsa-27,20260102-more-pypsa,2026-01-02 22:23:06.646371,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-10-168h,cbc-2.10.11,pypsa-de-sec +pypsa-de-sec,10-168h,gurobi,12.0.0,2024.0,ok,optimal,143.53945383999962,351.984,76628645061.99557,,,142.70763301849365,3600.0,benchmark-instance-more-pypsa-27,20260102-more-pypsa,2026-01-02 22:30:01.967423,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-10-168h,gurobi-12.0.0,pypsa-de-sec +pypsa-de-sec,10-168h,highs,1.9.0,2024.0,ok,optimal,372.2798345629999,380.604,76628645061.99387,,,371.4587128162384,3600.0,benchmark-instance-more-pypsa-27,20260102-more-pypsa,2026-01-02 22:36:03.706612,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-10-168h,highs-1.9.0,pypsa-de-sec +pypsa-de-sec,10-168h,scip,9.2.0,2024.0,ok,optimal,305.8552111219997,884.336,76628645061.99442,,,305.269656,3600.0,benchmark-instance-more-pypsa-27,20260102-more-pypsa,2026-01-02 22:42:17.359954,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-10-168h,scip-9.2.0,pypsa-de-sec +pypsa-de-sec,10-168h,cbc,2.10.12,2024.0,ok,optimal,389.5514328119998,237.604,76628645061.3232,,,,3600.0,benchmark-instance-more-pypsa-27,20260102-more-pypsa,2026-01-02 22:47:24.776562,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-10-168h,cbc-2.10.12,pypsa-de-sec +pypsa-de-sec,10-168h,gurobi,13.0.0,2025.0,ok,optimal,196.56547093599968,383.428,76628645061.99567,,,195.75509190559387,3600.0,benchmark-instance-more-pypsa-27,20260102-more-pypsa,2026-01-02 22:54:24.909773,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-10-168h,gurobi-13.0.0,pypsa-de-sec +pypsa-de-sec,10-168h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,33.29041944299934,239.228,76628645064.0,,,33.29041944299934,3600.0,benchmark-instance-more-pypsa-27,20260102-more-pypsa,2026-01-02 23:01:20.499747,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-10-168h,highs-hipo-1.12.0-hipo,pypsa-de-sec +pypsa-de-sec,10-168h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,25.267915889000506,163.7,76628645063.0,,,25.267915889000506,3600.0,benchmark-instance-more-pypsa-27,20260102-more-pypsa,2026-01-02 23:01:54.730203,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-10-168h,highs-ipx-1.12.0-hipo,pypsa-de-sec +pypsa-de-sec,10-168h,highs,1.12.0,2025.0,ok,optimal,454.9955877880002,412.548,76628645061.99553,,,454.4285228252411,3600.0,benchmark-instance-more-pypsa-27,20260102-more-pypsa,2026-01-02 23:02:20.758471,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-10-168h,highs-1.12.0,pypsa-de-sec +pypsa-de-sec,10-168h,scip,10.0.0,2025.0,ok,optimal,303.3921209430009,915.996,76628645061.99442,,,302.791316,3600.0,benchmark-instance-more-pypsa-27,20260102-more-pypsa,2026-01-02 23:09:56.890282,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-10-168h,scip-10.0.0,pypsa-de-sec +pypsa-eur-sec-trex_copt,50-24h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,1167.116,,,,86400.0,86400.0,benchmark-instance-more-pypsa-01,20260102-more-pypsa,2026-01-02 20:50:15.062772,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-sec-trex_copt-50-24h,cbc-2.10.12,pypsa-eur-sec-trex_copt +pypsa-eur-sec-trex_copt,50-24h,gurobi,13.0.0,2025.0,TO,Timeout,86400.0,12139.036,,,,86400.0,86400.0,benchmark-instance-more-pypsa-01,20260102-more-pypsa,2026-01-03 20:54:24.954510,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-sec-trex_copt-50-24h,gurobi-13.0.0,pypsa-eur-sec-trex_copt +pypsa-eur-sec-trex_copt,50-24h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,28852.36174731801,38004.248,385371939240.0,,,28852.36174731801,86400.0,benchmark-instance-more-pypsa-01,20260102-more-pypsa,2026-01-04 20:58:02.687213,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-sec-trex_copt-50-24h,highs-hipo-1.12.0-hipo,pypsa-eur-sec-trex_copt +pypsa-eur-sec-trex_copt,50-24h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,53878.73437031798,4001.792,385371939200.0,,,53878.73437031798,86400.0,benchmark-instance-more-pypsa-01,20260102-more-pypsa,2026-01-05 05:02:39.380981,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-sec-trex_copt-50-24h,highs-ipx-1.12.0-hipo,pypsa-eur-sec-trex_copt +pypsa-eur-sec-trex_copt,50-24h,highs,1.12.0,2025.0,TO,Timeout,86400.0,3890.696,,,,86400.0,86400.0,benchmark-instance-more-pypsa-01,20260102-more-pypsa,2026-01-05 20:04:25.794450,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-sec-trex_copt-50-24h,highs-1.12.0,pypsa-eur-sec-trex_copt +pypsa-eur-sec-trex_copt,50-24h,scip,10.0.0,2025.0,TO,Timeout,86400.0,18605.708,,,,86400.0,86400.0,benchmark-instance-more-pypsa-01,20260102-more-pypsa,2026-01-06 20:08:08.170749,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-sec-trex_copt-50-24h,scip-10.0.0,pypsa-eur-sec-trex_copt +pypsa-de-sec-trex_copt,20-12h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,966.624,,,,86400.0,86400.0,benchmark-instance-more-pypsa-04,20260102-more-pypsa,2026-01-02 20:51:44.996481,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-20-12h,cbc-2.10.12,pypsa-de-sec-trex_copt +pypsa-de-sec-trex_copt,20-12h,gurobi,13.0.0,2025.0,TO,Timeout,86400.0,7799.34,,,,86400.0,86400.0,benchmark-instance-more-pypsa-04,20260102-more-pypsa,2026-01-03 20:55:44.169412,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-20-12h,gurobi-13.0.0,pypsa-de-sec-trex_copt +pypsa-de-sec-trex_copt,20-12h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,8751.678408861015,23113.324,78751720366.0,,,8751.678408861015,86400.0,benchmark-instance-more-pypsa-04,20260102-more-pypsa,2026-01-04 20:59:16.351839,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-20-12h,highs-hipo-1.12.0-hipo,pypsa-de-sec-trex_copt +pypsa-de-sec-trex_copt,20-12h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,33082.465158473,3056.736,78751720327.0,,,33082.465158473,86400.0,benchmark-instance-more-pypsa-04,20260102-more-pypsa,2026-01-04 23:28:50.550949,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-20-12h,highs-ipx-1.12.0-hipo,pypsa-de-sec-trex_copt +pypsa-de-sec-trex_copt,20-12h,highs,1.12.0,2025.0,TO,Timeout,86400.0,3307.02,,,,86400.0,86400.0,benchmark-instance-more-pypsa-04,20260102-more-pypsa,2026-01-05 08:43:43.106749,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-20-12h,highs-1.12.0,pypsa-de-sec-trex_copt +pypsa-de-sec-trex_copt,20-12h,scip,10.0.0,2025.0,TO,Timeout,86400.0,15195.94,,,,86400.0,86400.0,benchmark-instance-more-pypsa-04,20260102-more-pypsa,2026-01-06 08:47:32.344894,c4-highmem-16,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-20-12h,scip-10.0.0,pypsa-de-sec-trex_copt +pypsa-eur-elec,50-168h,glpk,5.0,2020.0,ok,optimal,130.1077972,240.552,31872370700.0,,,,3600.0,benchmark-instance-more-pypsa-33,20260102-more-pypsa,2026-01-02 20:50:02.724009,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-50-168h,glpk-5.0,pypsa-eur-elec +pypsa-eur-elec,50-168h,gurobi,10.0.0,2022.0,ok,optimal,23.35347138999998,345.54,31872370698.000763,,,22.42394709587097,3600.0,benchmark-instance-more-pypsa-33,20260102-more-pypsa,2026-01-02 20:56:32.549789,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-50-168h,gurobi-10.0.0,pypsa-eur-elec +pypsa-eur-elec,50-168h,highs,1.5.0.dev0,2022.0,ok,optimal,95.98128063700004,362.812,31872370697.999954,,,95.31469798088074,3600.0,benchmark-instance-more-pypsa-33,20260102-more-pypsa,2026-01-02 21:00:40.620432,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-50-168h,highs-1.5.0.dev0,pypsa-eur-elec +pypsa-eur-elec,50-168h,scip,8.0.3,2022.0,ok,optimal,255.644560385,764.268,31872370698.00026,,,254.964447,3600.0,benchmark-instance-more-pypsa-33,20260102-more-pypsa,2026-01-02 21:02:17.736518,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-50-168h,scip-8.0.3,pypsa-eur-elec +pypsa-eur-elec,50-168h,gurobi,11.0.0,2023.0,ok,optimal,21.37643709200006,342.756,31872370698.00064,,,20.63877296447754,3600.0,benchmark-instance-more-pypsa-33,20260102-more-pypsa,2026-01-02 21:09:55.019654,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-50-168h,gurobi-11.0.0,pypsa-eur-elec +pypsa-eur-elec,50-168h,highs,1.6.0.dev0,2023.0,ok,optimal,94.19174095500011,375.928,31872370697.999954,,,93.7347812652588,3600.0,benchmark-instance-more-pypsa-33,20260102-more-pypsa,2026-01-02 21:13:56.705246,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-50-168h,highs-1.6.0.dev0,pypsa-eur-elec +pypsa-eur-elec,50-168h,scip,8.1.0,2023.0,ok,optimal,255.43117410900027,767.568,31872370698.00026,,,254.869041,3600.0,benchmark-instance-more-pypsa-33,20260102-more-pypsa,2026-01-02 21:15:31.951401,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-50-168h,scip-8.1.0,pypsa-eur-elec +pypsa-eur-elec,50-168h,cbc,2.10.11,2023.0,ok,optimal,98.48789445500006,210.1,31872370698.00067,,,,3600.0,benchmark-instance-more-pypsa-33,20260102-more-pypsa,2026-01-02 21:19:48.561670,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-50-168h,cbc-2.10.11,pypsa-eur-elec +pypsa-eur-elec,50-168h,gurobi,12.0.0,2024.0,ok,optimal,19.73661236599992,331.256,31872370698.0007,,,18.888659954071045,3600.0,benchmark-instance-more-pypsa-33,20260102-more-pypsa,2026-01-02 21:21:56.603205,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-50-168h,gurobi-12.0.0,pypsa-eur-elec +pypsa-eur-elec,50-168h,highs,1.9.0,2024.0,ok,optimal,111.41364434200024,352.164,31872370697.999985,,,110.6180019378662,3600.0,benchmark-instance-more-pypsa-33,20260102-more-pypsa,2026-01-02 21:25:58.849015,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-50-168h,highs-1.9.0,pypsa-eur-elec +pypsa-eur-elec,50-168h,scip,9.2.0,2024.0,ok,optimal,256.68525696800043,753.536,31872370698.00026,,,256.117003,3600.0,benchmark-instance-more-pypsa-33,20260102-more-pypsa,2026-01-02 21:27:51.637570,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-50-168h,scip-9.2.0,pypsa-eur-elec +pypsa-eur-elec,50-168h,cbc,2.10.12,2024.0,ok,optimal,98.98388308800033,232.7,31872370698.00067,,,,3600.0,benchmark-instance-more-pypsa-33,20260102-more-pypsa,2026-01-02 21:32:09.768883,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-50-168h,cbc-2.10.12,pypsa-eur-elec +pypsa-eur-elec,50-168h,gurobi,13.0.0,2025.0,ok,optimal,26.137574144000155,354.328,31872370698.000824,,,25.31915807723999,3600.0,benchmark-instance-more-pypsa-33,20260102-more-pypsa,2026-01-02 21:34:17.534933,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-50-168h,gurobi-13.0.0,pypsa-eur-elec +pypsa-eur-elec,50-168h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,15.607173065000095,182.772,31872370698.0,,,15.607173065000095,3600.0,benchmark-instance-more-pypsa-33,20260102-more-pypsa,2026-01-02 21:38:22.841107,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-50-168h,highs-hipo-1.12.0-hipo,pypsa-eur-elec +pypsa-eur-elec,50-168h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,17.289696582000033,163.892,31872370698.0,,,17.289696582000033,3600.0,benchmark-instance-more-pypsa-33,20260102-more-pypsa,2026-01-02 21:38:39.399758,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-50-168h,highs-ipx-1.12.0-hipo,pypsa-eur-elec +pypsa-eur-elec,50-168h,highs,1.12.0,2025.0,ok,optimal,108.891043826,377.36,31872370698.00073,,,108.3643283843994,3600.0,benchmark-instance-more-pypsa-33,20260102-more-pypsa,2026-01-02 21:38:57.441120,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-50-168h,highs-1.12.0,pypsa-eur-elec +pypsa-eur-elec,50-168h,scip,10.0.0,2025.0,ok,optimal,254.566006043,775.98,31872370698.00026,,,253.991574,3600.0,benchmark-instance-more-pypsa-33,20260102-more-pypsa,2026-01-02 21:40:47.425353,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-elec-50-168h,scip-10.0.0,pypsa-eur-elec +pypsa-de-elec-trex_copt-dfp,50-24h,glpk,5.0,2020.0,ok,optimal,3142.215111296,761.996,7061421194.0,,,,3600.0,benchmark-instance-more-pypsa-18,20260102-more-pypsa,2026-01-03 04:31:33.531331,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-dfp-50-24h,glpk-5.0,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,50-24h,gurobi,10.0.0,2022.0,ok,optimal,635.7962689639999,1185.004,7061421194.26668,,,631.7668149471283,3600.0,benchmark-instance-more-pypsa-18,20260102-more-pypsa,2026-01-03 05:28:05.051829,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-dfp-50-24h,gurobi-10.0.0,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,50-24h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1039.068,,,,3600.0,3600.0,benchmark-instance-more-pypsa-18,20260102-more-pypsa,2026-01-03 05:42:16.140148,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-dfp-50-24h,highs-1.5.0.dev0,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,50-24h,scip,8.0.3,2022.0,TO,Timeout,3600.0,3291.668,,,,3600.0,3600.0,benchmark-instance-more-pypsa-18,20260102-more-pypsa,2026-01-03 06:45:49.034505,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-dfp-50-24h,scip-8.0.3,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,50-24h,gurobi,11.0.0,2023.0,ok,optimal,626.9890653910006,1150.68,7061421194.26668,,,623.7708849906921,3600.0,benchmark-instance-more-pypsa-18,20260102-more-pypsa,2026-01-03 07:52:42.900705,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-dfp-50-24h,gurobi-11.0.0,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,50-24h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,970.284,,,,3600.0,3600.0,benchmark-instance-more-pypsa-18,20260102-more-pypsa,2026-01-03 08:06:45.438909,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-dfp-50-24h,highs-1.6.0.dev0,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,50-24h,scip,8.1.0,2023.0,TO,Timeout,3600.0,3308.776,,,,3600.0,3600.0,benchmark-instance-more-pypsa-18,20260102-more-pypsa,2026-01-03 09:10:18.416262,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-dfp-50-24h,scip-8.1.0,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,50-24h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,306.404,,,,3600.0,3600.0,benchmark-instance-more-pypsa-18,20260102-more-pypsa,2026-01-03 10:13:50.333245,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-dfp-50-24h,cbc-2.10.11,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,50-24h,gurobi,12.0.0,2024.0,ok,optimal,869.4376753889992,1143.26,7061421194.266657,,,866.1698360443115,3600.0,benchmark-instance-more-pypsa-18,20260102-more-pypsa,2026-01-03 11:17:51.298451,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-dfp-50-24h,gurobi-12.0.0,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,50-24h,highs,1.9.0,2024.0,TO,Timeout,3600.0,980.072,,,,3600.0,3600.0,benchmark-instance-more-pypsa-18,20260102-more-pypsa,2026-01-03 11:35:58.170703,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-dfp-50-24h,highs-1.9.0,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,50-24h,scip,9.2.0,2024.0,TO,Timeout,3600.0,3336.496,,,,3600.0,3600.0,benchmark-instance-more-pypsa-18,20260102-more-pypsa,2026-01-03 12:39:31.455793,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-dfp-50-24h,scip-9.2.0,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,50-24h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,289.056,,,,3600.0,3600.0,benchmark-instance-more-pypsa-18,20260102-more-pypsa,2026-01-03 13:43:03.633938,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-dfp-50-24h,cbc-2.10.12,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,50-24h,gurobi,13.0.0,2025.0,ok,optimal,891.1214545199982,1179.204,7061421194.266668,,,887.8484671115875,3600.0,benchmark-instance-more-pypsa-18,20260102-more-pypsa,2026-01-03 14:47:05.176221,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-dfp-50-24h,gurobi-13.0.0,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,50-24h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,625.2736192500015,3165.984,7061421194.3,,,625.2736192500015,3600.0,benchmark-instance-more-pypsa-18,20260102-more-pypsa,2026-01-03 15:05:31.780000,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-dfp-50-24h,highs-hipo-1.12.0-hipo,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,50-24h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,720.8274025470018,654.7,7061421194.3,,,720.8274025470018,3600.0,benchmark-instance-more-pypsa-18,20260102-more-pypsa,2026-01-03 15:15:58.154399,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-dfp-50-24h,highs-ipx-1.12.0-hipo,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,50-24h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1009.76,,,,3600.0,3600.0,benchmark-instance-more-pypsa-18,20260102-more-pypsa,2026-01-03 15:27:59.942320,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-dfp-50-24h,highs-1.12.0,pypsa-de-elec-trex_copt-dfp +pypsa-de-elec-trex_copt-dfp,50-24h,scip,10.0.0,2025.0,TO,Timeout,3600.0,3356.876,,,,3600.0,3600.0,benchmark-instance-more-pypsa-18,20260102-more-pypsa,2026-01-03 16:31:31.378397,c4-standard-2,us-central1-a,96d28b7,pypsa-de-elec-trex_copt-dfp-50-24h,scip-10.0.0,pypsa-de-elec-trex_copt-dfp +pypsa-eur-elec-trex_copt,100-12h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,835.388,,,,86400.0,86400.0,benchmark-instance-more-pypsa-09,20260102-more-pypsa,2026-01-02 20:51:54.572913,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-100-12h,cbc-2.10.12,pypsa-eur-elec-trex_copt +pypsa-eur-elec-trex_copt,100-12h,gurobi,13.0.0,2025.0,ok,optimal,2389.886300237995,8151.184,36238261805.94529,,,2375.288858890533,86400.0,benchmark-instance-more-pypsa-09,20260102-more-pypsa,2026-01-03 20:55:56.421184,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-100-12h,gurobi-13.0.0,pypsa-eur-elec-trex_copt +pypsa-eur-elec-trex_copt,100-12h,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,86400.0,162.768,,,,86400.0,86400.0,benchmark-instance-more-pypsa-09,20260102-more-pypsa,2026-01-03 21:39:39.087002,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-100-12h,highs-hipo-1.12.0-hipo,pypsa-eur-elec-trex_copt +pypsa-eur-elec-trex_copt,100-12h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,29163.048779276,2857.028,36238261809.0,,,29163.048779276,86400.0,benchmark-instance-more-pypsa-09,20260102-more-pypsa,2026-01-04 21:43:22.645411,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-100-12h,highs-ipx-1.12.0-hipo,pypsa-eur-elec-trex_copt +pypsa-eur-elec-trex_copt,100-12h,highs,1.12.0,2025.0,TO,Timeout,86400.0,3894.12,,,,86400.0,86400.0,benchmark-instance-more-pypsa-09,20260102-more-pypsa,2026-01-05 05:53:14.301686,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-100-12h,highs-1.12.0,pypsa-eur-elec-trex_copt +pypsa-eur-elec-trex_copt,100-12h,scip,10.0.0,2025.0,TO,Timeout,86400.0,13858.436,,,,86400.0,86400.0,benchmark-instance-more-pypsa-09,20260102-more-pypsa,2026-01-06 05:56:48.483153,c4-highmem-16,us-central1-a,96d28b7,pypsa-eur-elec-trex_copt-100-12h,scip-10.0.0,pypsa-eur-elec-trex_copt +pypsa-eur-sec-trex_copt,50-168h,glpk,5.0,2020.0,TO,Timeout,3600.0,272.276,,,,3600.0,3600.0,benchmark-instance-more-pypsa-22,20260102-more-pypsa,2026-01-02 20:50:03.622607,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_copt-50-168h,glpk-5.0,pypsa-eur-sec-trex_copt +pypsa-eur-sec-trex_copt,50-168h,gurobi,10.0.0,2022.0,TO,Timeout,3600.0,608.104,,,,3600.0,3600.0,benchmark-instance-more-pypsa-22,20260102-more-pypsa,2026-01-02 21:54:29.661565,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_copt-50-168h,gurobi-10.0.0,pypsa-eur-sec-trex_copt +pypsa-eur-sec-trex_copt,50-168h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,799.968,,,,3600.0,3600.0,benchmark-instance-more-pypsa-22,20260102-more-pypsa,2026-01-02 22:58:19.857348,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_copt-50-168h,highs-1.5.0.dev0,pypsa-eur-sec-trex_copt +pypsa-eur-sec-trex_copt,50-168h,scip,8.0.3,2022.0,TO,Timeout,3600.0,3061.128,,,,3600.0,3600.0,benchmark-instance-more-pypsa-22,20260102-more-pypsa,2026-01-03 00:02:17.235555,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_copt-50-168h,scip-8.0.3,pypsa-eur-sec-trex_copt +pypsa-eur-sec-trex_copt,50-168h,gurobi,11.0.0,2023.0,TO,Timeout,3600.0,613.528,,,,3600.0,3600.0,benchmark-instance-more-pypsa-22,20260102-more-pypsa,2026-01-03 01:09:38.198633,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_copt-50-168h,gurobi-11.0.0,pypsa-eur-sec-trex_copt +pypsa-eur-sec-trex_copt,50-168h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,843.724,,,,3600.0,3600.0,benchmark-instance-more-pypsa-22,20260102-more-pypsa,2026-01-03 02:13:32.853745,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_copt-50-168h,highs-1.6.0.dev0,pypsa-eur-sec-trex_copt +pypsa-eur-sec-trex_copt,50-168h,scip,8.1.0,2023.0,TO,Timeout,3600.0,3096.78,,,,3600.0,3600.0,benchmark-instance-more-pypsa-22,20260102-more-pypsa,2026-01-03 03:17:21.619033,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_copt-50-168h,scip-8.1.0,pypsa-eur-sec-trex_copt +pypsa-eur-sec-trex_copt,50-168h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,302.568,,,,3600.0,3600.0,benchmark-instance-more-pypsa-22,20260102-more-pypsa,2026-01-03 04:21:09.989046,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_copt-50-168h,cbc-2.10.11,pypsa-eur-sec-trex_copt +pypsa-eur-sec-trex_copt,50-168h,gurobi,12.0.0,2024.0,TO,Timeout,3600.0,617.504,,,,3600.0,3600.0,benchmark-instance-more-pypsa-22,20260102-more-pypsa,2026-01-03 05:25:44.825026,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_copt-50-168h,gurobi-12.0.0,pypsa-eur-sec-trex_copt +pypsa-eur-sec-trex_copt,50-168h,highs,1.9.0,2024.0,TO,Timeout,3600.0,917.716,,,,3600.0,3600.0,benchmark-instance-more-pypsa-22,20260102-more-pypsa,2026-01-03 06:29:31.925378,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_copt-50-168h,highs-1.9.0,pypsa-eur-sec-trex_copt +pypsa-eur-sec-trex_copt,50-168h,scip,9.2.0,2024.0,TO,Timeout,3600.0,3091.352,,,,3600.0,3600.0,benchmark-instance-more-pypsa-22,20260102-more-pypsa,2026-01-03 07:33:32.394390,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_copt-50-168h,scip-9.2.0,pypsa-eur-sec-trex_copt +pypsa-eur-sec-trex_copt,50-168h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,284.92,,,,3600.0,3600.0,benchmark-instance-more-pypsa-22,20260102-more-pypsa,2026-01-03 08:37:30.440035,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_copt-50-168h,cbc-2.10.12,pypsa-eur-sec-trex_copt +pypsa-eur-sec-trex_copt,50-168h,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,650.796,,,,3600.0,3600.0,benchmark-instance-more-pypsa-22,20260102-more-pypsa,2026-01-03 09:42:08.571151,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_copt-50-168h,gurobi-13.0.0,pypsa-eur-sec-trex_copt +pypsa-eur-sec-trex_copt,50-168h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,485.1149023599937,1248.324,377059072380.0,,,485.1149023599937,3600.0,benchmark-instance-more-pypsa-22,20260102-more-pypsa,2026-01-03 10:45:55.934747,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_copt-50-168h,highs-hipo-1.12.0-hipo,pypsa-eur-sec-trex_copt +pypsa-eur-sec-trex_copt,50-168h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,567.7075485659952,570.66,377059072390.0,,,567.7075485659952,3600.0,benchmark-instance-more-pypsa-22,20260102-more-pypsa,2026-01-03 10:54:02.339700,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_copt-50-168h,highs-ipx-1.12.0-hipo,pypsa-eur-sec-trex_copt +pypsa-eur-sec-trex_copt,50-168h,highs,1.12.0,2025.0,TO,Timeout,3600.0,852.476,,,,3600.0,3600.0,benchmark-instance-more-pypsa-22,20260102-more-pypsa,2026-01-03 11:03:30.825133,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_copt-50-168h,highs-1.12.0,pypsa-eur-sec-trex_copt +pypsa-eur-sec-trex_copt,50-168h,scip,10.0.0,2025.0,TO,Timeout,3600.0,3118.8,,,,3600.0,3600.0,benchmark-instance-more-pypsa-22,20260102-more-pypsa,2026-01-03 12:07:11.139332,c4-standard-2,us-central1-a,96d28b7,pypsa-eur-sec-trex_copt-50-168h,scip-10.0.0,pypsa-eur-sec-trex_copt +pypsa-de-sec-trex_copt,10-24h,glpk,5.0,2020.0,TO,Timeout,3600.0,334.908,,,,3600.0,3600.0,benchmark-instance-more-pypsa-15,20260102-more-pypsa,2026-01-02 20:49:26.739324,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-10-24h,glpk-5.0,pypsa-de-sec-trex_copt +pypsa-de-sec-trex_copt,10-24h,gurobi,10.0.0,2022.0,TO,Timeout,3600.0,801.588,,,,3600.0,3600.0,benchmark-instance-more-pypsa-15,20260102-more-pypsa,2026-01-02 21:53:56.496108,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-10-24h,gurobi-10.0.0,pypsa-de-sec-trex_copt +pypsa-de-sec-trex_copt,10-24h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1180.888,,,,3600.0,3600.0,benchmark-instance-more-pypsa-15,20260102-more-pypsa,2026-01-02 22:57:46.344944,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-10-24h,highs-1.5.0.dev0,pypsa-de-sec-trex_copt +pypsa-de-sec-trex_copt,10-24h,scip,8.0.3,2022.0,TO,Timeout,3600.0,4252.452,,,,3600.0,3600.0,benchmark-instance-more-pypsa-15,20260102-more-pypsa,2026-01-03 00:01:32.057648,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-10-24h,scip-8.0.3,pypsa-de-sec-trex_copt +pypsa-de-sec-trex_copt,10-24h,gurobi,11.0.0,2023.0,TO,Timeout,3600.0,808.476,,,,3600.0,3600.0,benchmark-instance-more-pypsa-15,20260102-more-pypsa,2026-01-03 01:08:43.262732,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-10-24h,gurobi-11.0.0,pypsa-de-sec-trex_copt +pypsa-de-sec-trex_copt,10-24h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,1116.068,,,,3600.0,3600.0,benchmark-instance-more-pypsa-15,20260102-more-pypsa,2026-01-03 02:12:21.775922,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-10-24h,highs-1.6.0.dev0,pypsa-de-sec-trex_copt +pypsa-de-sec-trex_copt,10-24h,scip,8.1.0,2023.0,TO,Timeout,3600.0,4263.156,,,,3600.0,3600.0,benchmark-instance-more-pypsa-15,20260102-more-pypsa,2026-01-03 03:16:01.778041,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-10-24h,scip-8.1.0,pypsa-de-sec-trex_copt +pypsa-de-sec-trex_copt,10-24h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,365.308,,,,3600.0,3600.0,benchmark-instance-more-pypsa-15,20260102-more-pypsa,2026-01-03 04:19:44.115283,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-10-24h,cbc-2.10.11,pypsa-de-sec-trex_copt +pypsa-de-sec-trex_copt,10-24h,gurobi,12.0.0,2024.0,TO,Timeout,3600.0,814.24,,,,3600.0,3600.0,benchmark-instance-more-pypsa-15,20260102-more-pypsa,2026-01-03 05:23:56.966514,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-10-24h,gurobi-12.0.0,pypsa-de-sec-trex_copt +pypsa-de-sec-trex_copt,10-24h,highs,1.9.0,2024.0,TO,Timeout,3600.0,1135.064,,,,3600.0,3600.0,benchmark-instance-more-pypsa-15,20260102-more-pypsa,2026-01-03 06:27:38.931290,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-10-24h,highs-1.9.0,pypsa-de-sec-trex_copt +pypsa-de-sec-trex_copt,10-24h,scip,9.2.0,2024.0,TO,Timeout,3600.0,4247.992,,,,3600.0,3600.0,benchmark-instance-more-pypsa-15,20260102-more-pypsa,2026-01-03 07:31:22.604436,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-10-24h,scip-9.2.0,pypsa-de-sec-trex_copt +pypsa-de-sec-trex_copt,10-24h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,347.904,,,,3600.0,3600.0,benchmark-instance-more-pypsa-15,20260102-more-pypsa,2026-01-03 08:35:02.397203,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-10-24h,cbc-2.10.12,pypsa-de-sec-trex_copt +pypsa-de-sec-trex_copt,10-24h,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,849.456,,,,3600.0,3600.0,benchmark-instance-more-pypsa-15,20260102-more-pypsa,2026-01-03 09:39:12.738204,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-10-24h,gurobi-13.0.0,pypsa-de-sec-trex_copt +pypsa-de-sec-trex_copt,10-24h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,642.9903853479991,3286.708,79058822018.0,,,642.9903853479991,3600.0,benchmark-instance-more-pypsa-15,20260102-more-pypsa,2026-01-03 10:43:17.566453,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-10-24h,highs-hipo-1.12.0-hipo,pypsa-de-sec-trex_copt +pypsa-de-sec-trex_copt,10-24h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,1896.018656213004,788.648,79058822013.0,,,1896.018656213004,3600.0,benchmark-instance-more-pypsa-15,20260102-more-pypsa,2026-01-03 10:54:01.357963,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-10-24h,highs-ipx-1.12.0-hipo,pypsa-de-sec-trex_copt +pypsa-de-sec-trex_copt,10-24h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1103.02,,,,3600.0,3600.0,benchmark-instance-more-pypsa-15,20260102-more-pypsa,2026-01-03 11:25:38.224988,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-10-24h,highs-1.12.0,pypsa-de-sec-trex_copt +pypsa-de-sec-trex_copt,10-24h,scip,10.0.0,2025.0,TO,Timeout,3600.0,4266.292,,,,3600.0,3600.0,benchmark-instance-more-pypsa-15,20260102-more-pypsa,2026-01-03 12:29:18.335107,c4-standard-2,us-central1-a,96d28b7,pypsa-de-sec-trex_copt-10-24h,scip-10.0.0,pypsa-de-sec-trex_copt +pypsa-de-sec,20-12h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,966.744,,,,86400.0,86400.0,benchmark-instance-rerun-4-01,20260217-rerun-4,2026-02-17 09:31:24.750051,c4-highmem-16,us-central1-a,0a76d2f,pypsa-de-sec-20-12h,cbc-2.10.12,pypsa-de-sec +pypsa-de-sec,20-12h,gurobi,13.0.0,2025.0,ok,optimal,26899.084190724,6914.988,79259899314.68932,,,26883.01337504387,86400.0,benchmark-instance-rerun-4-01,20260217-rerun-4,2026-02-18 09:35:38.363044,c4-highmem-16,us-central1-a,0a76d2f,pypsa-de-sec-20-12h,gurobi-13.0.0,pypsa-de-sec +pypsa-de-sec,20-12h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,7162.592065244011,20432.84,79259899417.0,,,7162.592065244011,86400.0,benchmark-instance-rerun-4-01,20260217-rerun-4,2026-02-18 17:07:51.709388,c4-highmem-16,us-central1-a,0a76d2f,pypsa-de-sec-20-12h,highs-hipo-1.12.0-hipo,pypsa-de-sec +pypsa-de-sec,20-12h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,30958.888641636997,3023.324,79259899479.0,,,30958.888641636997,86400.0,benchmark-instance-rerun-4-01,20260217-rerun-4,2026-02-18 19:10:49.909891,c4-highmem-16,us-central1-a,0a76d2f,pypsa-de-sec-20-12h,highs-ipx-1.12.0-hipo,pypsa-de-sec +pypsa-de-sec,20-12h,highs,1.12.0,2025.0,TO,Timeout,86400.0,3276.596,,,,86400.0,86400.0,benchmark-instance-rerun-4-01,20260217-rerun-4,2026-02-19 03:50:26.015446,c4-highmem-16,us-central1-a,0a76d2f,pypsa-de-sec-20-12h,highs-1.12.0,pypsa-de-sec +pypsa-de-sec,20-12h,scip,10.0.0,2025.0,TO,Timeout,86400.0,14886.8,,,,86400.0,86400.0,benchmark-instance-rerun-4-01,20260217-rerun-4,2026-02-20 03:54:13.235856,c4-highmem-16,us-central1-a,0a76d2f,pypsa-de-sec-20-12h,scip-10.0.0,pypsa-de-sec +pypsa-eur-sec,50-168h,glpk,5.0,2020.0,TO,Timeout,3600.0,270.176,,,,3600.0,3600.0,benchmark-instance-rerun-4-04,20260217-rerun-4,2026-02-17 09:31:38.711550,c4-standard-2,us-central1-a,0a76d2f,pypsa-eur-sec-50-168h,glpk-5.0,pypsa-eur-sec +pypsa-eur-sec,50-168h,gurobi,10.0.0,2022.0,TO,Timeout,3600.0,607.544,,,,3600.0,3600.0,benchmark-instance-rerun-4-04,20260217-rerun-4,2026-02-17 10:36:16.168877,c4-standard-2,us-central1-a,0a76d2f,pypsa-eur-sec-50-168h,gurobi-10.0.0,pypsa-eur-sec +pypsa-eur-sec,50-168h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,789.592,,,,3600.0,3600.0,benchmark-instance-rerun-4-04,20260217-rerun-4,2026-02-17 11:39:55.302640,c4-standard-2,us-central1-a,0a76d2f,pypsa-eur-sec-50-168h,highs-1.5.0.dev0,pypsa-eur-sec +pypsa-eur-sec,50-168h,scip,8.0.3,2022.0,TO,Timeout,3600.0,2959.476,,,,3600.0,3600.0,benchmark-instance-rerun-4-04,20260217-rerun-4,2026-02-17 12:43:28.644716,c4-standard-2,us-central1-a,0a76d2f,pypsa-eur-sec-50-168h,scip-8.0.3,pypsa-eur-sec +pypsa-eur-sec,50-168h,gurobi,11.0.0,2023.0,TO,Timeout,3600.0,621.38,,,,3600.0,3600.0,benchmark-instance-rerun-4-04,20260217-rerun-4,2026-02-17 13:50:51.669888,c4-standard-2,us-central1-a,0a76d2f,pypsa-eur-sec-50-168h,gurobi-11.0.0,pypsa-eur-sec +pypsa-eur-sec,50-168h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,832.32,,,,3600.0,3600.0,benchmark-instance-rerun-4-04,20260217-rerun-4,2026-02-17 14:54:39.296646,c4-standard-2,us-central1-a,0a76d2f,pypsa-eur-sec-50-168h,highs-1.6.0.dev0,pypsa-eur-sec +pypsa-eur-sec,50-168h,scip,8.1.0,2023.0,TO,Timeout,3600.0,2991.648,,,,3600.0,3600.0,benchmark-instance-rerun-4-04,20260217-rerun-4,2026-02-17 15:58:26.484767,c4-standard-2,us-central1-a,0a76d2f,pypsa-eur-sec-50-168h,scip-8.1.0,pypsa-eur-sec +pypsa-eur-sec,50-168h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,309.448,,,,3600.0,3600.0,benchmark-instance-rerun-4-04,20260217-rerun-4,2026-02-17 17:02:01.680028,c4-standard-2,us-central1-a,0a76d2f,pypsa-eur-sec-50-168h,cbc-2.10.11,pypsa-eur-sec +pypsa-eur-sec,50-168h,gurobi,12.0.0,2024.0,TO,Timeout,3600.0,550.468,,,,3600.0,3600.0,benchmark-instance-rerun-4-04,20260217-rerun-4,2026-02-17 18:06:15.299299,c4-standard-2,us-central1-a,0a76d2f,pypsa-eur-sec-50-168h,gurobi-12.0.0,pypsa-eur-sec +pypsa-eur-sec,50-168h,highs,1.9.0,2024.0,TO,Timeout,3600.0,871.568,,,,3600.0,3600.0,benchmark-instance-rerun-4-04,20260217-rerun-4,2026-02-17 19:09:57.559857,c4-standard-2,us-central1-a,0a76d2f,pypsa-eur-sec-50-168h,highs-1.9.0,pypsa-eur-sec +pypsa-eur-sec,50-168h,scip,9.2.0,2024.0,TO,Timeout,3600.0,2962.192,,,,3600.0,3600.0,benchmark-instance-rerun-4-04,20260217-rerun-4,2026-02-17 20:13:38.231509,c4-standard-2,us-central1-a,0a76d2f,pypsa-eur-sec-50-168h,scip-9.2.0,pypsa-eur-sec +pypsa-eur-sec,50-168h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,284.048,,,,3600.0,3600.0,benchmark-instance-rerun-4-04,20260217-rerun-4,2026-02-17 21:17:21.824647,c4-standard-2,us-central1-a,0a76d2f,pypsa-eur-sec-50-168h,cbc-2.10.12,pypsa-eur-sec +pypsa-eur-sec,50-168h,gurobi,13.0.0,2025.0,TO,Timeout,3600.0,586.984,,,,3600.0,3600.0,benchmark-instance-rerun-4-04,20260217-rerun-4,2026-02-17 22:21:35.875207,c4-standard-2,us-central1-a,0a76d2f,pypsa-eur-sec-50-168h,gurobi-13.0.0,pypsa-eur-sec +pypsa-eur-sec,50-168h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,533.4948569059998,1255.76,76995154584.0,,,533.4948569059998,3600.0,benchmark-instance-rerun-4-04,20260217-rerun-4,2026-02-17 23:25:20.064031,c4-standard-2,us-central1-a,0a76d2f,pypsa-eur-sec-50-168h,highs-hipo-1.12.0-hipo,pypsa-eur-sec +pypsa-eur-sec,50-168h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,429.65001727300114,639.028,76995154572.0,,,429.65001727300114,3600.0,benchmark-instance-rerun-4-04,20260217-rerun-4,2026-02-17 23:34:14.823660,c4-standard-2,us-central1-a,0a76d2f,pypsa-eur-sec-50-168h,highs-ipx-1.12.0-hipo,pypsa-eur-sec +pypsa-eur-sec,50-168h,highs,1.12.0,2025.0,TO,Timeout,3600.0,850.34,,,,3600.0,3600.0,benchmark-instance-rerun-4-04,20260217-rerun-4,2026-02-17 23:41:25.242999,c4-standard-2,us-central1-a,0a76d2f,pypsa-eur-sec-50-168h,highs-1.12.0,pypsa-eur-sec +pypsa-eur-sec,50-168h,scip,10.0.0,2025.0,TO,Timeout,3600.0,2969.012,,,,3600.0,3600.0,benchmark-instance-rerun-4-04,20260217-rerun-4,2026-02-18 00:45:08.268908,c4-standard-2,us-central1-a,0a76d2f,pypsa-eur-sec-50-168h,scip-10.0.0,pypsa-eur-sec +times-etimeseu-europe-elec+heat-co2-single_stage,29-64ts,glpk,5.0,2020.0,warning,unknown,0.0952260260000343,280.92,,,,,3600.0,benchmark-instance-rerun-4-03,20260217-rerun-4,2026-02-17 09:32:03.135912,c4-standard-2,us-central1-a,0a76d2f,times-etimeseu-europe-elec+heat-co2-single_stage-29-64ts,glpk-5.0,times-etimeseu-europe-elec+heat-co2-single_stage +times-etimeseu-europe-elec+heat-co2-single_stage,29-64ts,gurobi,10.0.0,2022.0,ok,optimal,13.135404734999952,933.824,432045.63024713815,,,9.67857813835144,3600.0,benchmark-instance-rerun-4-03,20260217-rerun-4,2026-02-17 09:36:16.117499,c4-standard-2,us-central1-a,0a76d2f,times-etimeseu-europe-elec+heat-co2-single_stage-29-64ts,gurobi-10.0.0,times-etimeseu-europe-elec+heat-co2-single_stage +times-etimeseu-europe-elec+heat-co2-single_stage,29-64ts,highs,1.5.0.dev0,2022.0,ok,optimal,253.03929365999988,1019.968,432045.63024713815,,,249.80711150169373,3600.0,benchmark-instance-rerun-4-03,20260217-rerun-4,2026-02-17 09:40:08.178096,c4-standard-2,us-central1-a,0a76d2f,times-etimeseu-europe-elec+heat-co2-single_stage-29-64ts,highs-1.5.0.dev0,times-etimeseu-europe-elec+heat-co2-single_stage +times-etimeseu-europe-elec+heat-co2-single_stage,29-64ts,scip,8.0.3,2022.0,ok,optimal,330.6621768099999,2891.448,432045.6302471382,,,326.801609,3600.0,benchmark-instance-rerun-4-03,20260217-rerun-4,2026-02-17 09:44:24.278566,c4-standard-2,us-central1-a,0a76d2f,times-etimeseu-europe-elec+heat-co2-single_stage-29-64ts,scip-8.0.3,times-etimeseu-europe-elec+heat-co2-single_stage +times-etimeseu-europe-elec+heat-co2-single_stage,29-64ts,gurobi,11.0.0,2023.0,ok,optimal,13.149866688999964,906.724,432045.6302471381,,,10.59473204612732,3600.0,benchmark-instance-rerun-4-03,20260217-rerun-4,2026-02-17 09:53:05.384721,c4-standard-2,us-central1-a,0a76d2f,times-etimeseu-europe-elec+heat-co2-single_stage-29-64ts,gurobi-11.0.0,times-etimeseu-europe-elec+heat-co2-single_stage +times-etimeseu-europe-elec+heat-co2-single_stage,29-64ts,highs,1.6.0.dev0,2023.0,ok,optimal,229.45925586400017,1022.512,432045.63024713815,,,227.5293254852295,3600.0,benchmark-instance-rerun-4-03,20260217-rerun-4,2026-02-17 09:56:34.665978,c4-standard-2,us-central1-a,0a76d2f,times-etimeseu-europe-elec+heat-co2-single_stage-29-64ts,highs-1.6.0.dev0,times-etimeseu-europe-elec+heat-co2-single_stage +times-etimeseu-europe-elec+heat-co2-single_stage,29-64ts,scip,8.1.0,2023.0,ok,optimal,309.44082058399977,2878.412,432045.6302471382,,,306.388568,3600.0,benchmark-instance-rerun-4-03,20260217-rerun-4,2026-02-17 10:00:26.110647,c4-standard-2,us-central1-a,0a76d2f,times-etimeseu-europe-elec+heat-co2-single_stage-29-64ts,scip-8.1.0,times-etimeseu-europe-elec+heat-co2-single_stage +times-etimeseu-europe-elec+heat-co2-single_stage,29-64ts,cbc,2.10.11,2023.0,ER,,,321.112,,,,,3600.0,benchmark-instance-rerun-4-03,20260217-rerun-4,2026-02-17 10:05:38.763724,c4-standard-2,us-central1-a,0a76d2f,times-etimeseu-europe-elec+heat-co2-single_stage-29-64ts,cbc-2.10.11,times-etimeseu-europe-elec+heat-co2-single_stage +times-etimeseu-europe-elec+heat-co2-single_stage,29-64ts,gurobi,12.0.0,2024.0,ok,optimal,13.17828353099958,879.504,432045.6302471382,,,10.47844696044922,3600.0,benchmark-instance-rerun-4-03,20260217-rerun-4,2026-02-17 10:06:06.788861,c4-standard-2,us-central1-a,0a76d2f,times-etimeseu-europe-elec+heat-co2-single_stage-29-64ts,gurobi-12.0.0,times-etimeseu-europe-elec+heat-co2-single_stage +times-etimeseu-europe-elec+heat-co2-single_stage,29-64ts,highs,1.9.0,2024.0,ok,optimal,237.37311677100024,1003.344,432045.6302471381,,,234.0207979679108,3600.0,benchmark-instance-rerun-4-03,20260217-rerun-4,2026-02-17 10:09:57.025033,c4-standard-2,us-central1-a,0a76d2f,times-etimeseu-europe-elec+heat-co2-single_stage-29-64ts,highs-1.9.0,times-etimeseu-europe-elec+heat-co2-single_stage +times-etimeseu-europe-elec+heat-co2-single_stage,29-64ts,scip,9.2.0,2024.0,ok,optimal,328.350779635,2859.096,432045.6302471382,,,325.214644,3600.0,benchmark-instance-rerun-4-03,20260217-rerun-4,2026-02-17 10:13:59.444773,c4-standard-2,us-central1-a,0a76d2f,times-etimeseu-europe-elec+heat-co2-single_stage-29-64ts,scip-9.2.0,times-etimeseu-europe-elec+heat-co2-single_stage +times-etimeseu-europe-elec+heat-co2-single_stage,29-64ts,cbc,2.10.12,2024.0,ER,,,295.032,,,,,3600.0,benchmark-instance-rerun-4-03,20260217-rerun-4,2026-02-17 10:19:33.607972,c4-standard-2,us-central1-a,0a76d2f,times-etimeseu-europe-elec+heat-co2-single_stage-29-64ts,cbc-2.10.12,times-etimeseu-europe-elec+heat-co2-single_stage +times-etimeseu-europe-elec+heat-co2-single_stage,29-64ts,gurobi,13.0.0,2025.0,ok,optimal,12.802957338999931,909.644,432045.6302471381,,,10.16300916671753,3600.0,benchmark-instance-rerun-4-03,20260217-rerun-4,2026-02-17 10:20:00.938512,c4-standard-2,us-central1-a,0a76d2f,times-etimeseu-europe-elec+heat-co2-single_stage-29-64ts,gurobi-13.0.0,times-etimeseu-europe-elec+heat-co2-single_stage +times-etimeseu-europe-elec+heat-co2-single_stage,29-64ts,highs-hipo,1.12.0-hipo,2025.0,warning,Unknown,73.41750360300011,584.5,432045.63025,,,73.41750360300011,3600.0,benchmark-instance-rerun-4-03,20260217-rerun-4,2026-02-17 10:23:53.963088,c4-standard-2,us-central1-a,0a76d2f,times-etimeseu-europe-elec+heat-co2-single_stage-29-64ts,highs-hipo-1.12.0-hipo,times-etimeseu-europe-elec+heat-co2-single_stage +times-etimeseu-europe-elec+heat-co2-single_stage,29-64ts,highs-ipx,1.12.0-hipo,2025.0,warning,Unknown,42.36294078499986,506.276,432045.63025,,,42.36294078499986,3600.0,benchmark-instance-rerun-4-03,20260217-rerun-4,2026-02-17 10:25:08.712421,c4-standard-2,us-central1-a,0a76d2f,times-etimeseu-europe-elec+heat-co2-single_stage-29-64ts,highs-ipx-1.12.0-hipo,times-etimeseu-europe-elec+heat-co2-single_stage +times-etimeseu-europe-elec+heat-co2-single_stage,29-64ts,highs,1.12.0,2025.0,ok,optimal,239.8772797890001,1040.68,432045.6302471383,,,237.27555131912231,3600.0,benchmark-instance-rerun-4-03,20260217-rerun-4,2026-02-17 10:25:51.819016,c4-standard-2,us-central1-a,0a76d2f,times-etimeseu-europe-elec+heat-co2-single_stage-29-64ts,highs-1.12.0,times-etimeseu-europe-elec+heat-co2-single_stage +times-etimeseu-europe-elec+heat-co2-single_stage,29-64ts,scip,10.0.0,2025.0,ok,optimal,331.264291645,2879.116,432045.6302471382,,,327.877383,3600.0,benchmark-instance-rerun-4-03,20260217-rerun-4,2026-02-17 10:29:54.420434,c4-standard-2,us-central1-a,0a76d2f,times-etimeseu-europe-elec+heat-co2-single_stage-29-64ts,scip-10.0.0,times-etimeseu-europe-elec+heat-co2-single_stage +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,192.9,,,,3600.0,3600.0,benchmark-instance-rerun-4-05,20260217-rerun-4,2026-02-17 09:32:12.554931,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314,73-1h,gurobi,10.0.0,2022.0,TO,Timeout,3600.0,630.948,,,,3600.0,3600.0,benchmark-instance-rerun-4-05,20260217-rerun-4,2026-02-17 10:36:30.101151,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314,73-1h,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,1091.876,,,,3600.0,3600.0,benchmark-instance-rerun-4-05,20260217-rerun-4,2026-02-17 11:40:14.822466,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314,73-1h,scip,8.0.3,2022.0,TO,Timeout,3600.0,1886.244,,,,3600.0,3600.0,benchmark-instance-rerun-4-05,20260217-rerun-4,2026-02-17 12:43:57.646093,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314,73-1h,gurobi,11.0.0,2023.0,ok,optimal,2721.873911006001,638.252,1845883.3370768356,,,2721.3244910240173,3600.0,benchmark-instance-rerun-4-05,20260217-rerun-4,2026-02-17 13:51:05.230060,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314,73-1h,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,1132.336,,,,3600.0,3600.0,benchmark-instance-rerun-4-05,20260217-rerun-4,2026-02-17 14:40:12.972224,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314,73-1h,scip,8.1.0,2023.0,TO,Timeout,3600.0,1894.944,,,,3600.0,3600.0,benchmark-instance-rerun-4-05,20260217-rerun-4,2026-02-17 15:44:03.617433,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314,73-1h,cbc,2.10.11,2023.0,TO,Timeout,3600.0,232.288,,,,3600.0,3600.0,benchmark-instance-rerun-4-05,20260217-rerun-4,2026-02-17 16:47:39.734595,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314,73-1h,gurobi,12.0.0,2024.0,ok,optimal,2536.2538488870014,623.448,1845883.336105911,0.0,9.9739212804859e-05,2535.6922149658203,3600.0,benchmark-instance-rerun-4-05,20260217-rerun-4,2026-02-17 17:51:51.496886,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314,73-1h,highs,1.9.0,2024.0,TO,Timeout,3600.0,1256.652,,,,3600.0,3600.0,benchmark-instance-rerun-4-05,20260217-rerun-4,2026-02-17 18:37:44.939482,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314,73-1h,scip,9.2.0,2024.0,TO,Timeout,3600.0,1864.848,,,,3600.0,3600.0,benchmark-instance-rerun-4-05,20260217-rerun-4,2026-02-17 19:41:47.635784,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314,73-1h,cbc,2.10.12,2024.0,TO,Timeout,3600.0,206.948,,,,3600.0,3600.0,benchmark-instance-rerun-4-05,20260217-rerun-4,2026-02-17 20:45:38.042481,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314,73-1h,gurobi,13.0.0,2025.0,ok,optimal,1736.3511853669988,483.964,1845883.3374041212,0.0,9.914086089587668e-05,1735.83363199234,3600.0,benchmark-instance-rerun-4-05,20260217-rerun-4,2026-02-17 21:49:46.150091,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314,73-1h,highs,1.12.0,2025.0,TO,Timeout,3600.0,1144.076,,,,3600.0,3600.0,benchmark-instance-rerun-4-05,20260217-rerun-4,2026-02-17 22:22:18.479435,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314,73-1h,scip,10.0.0,2025.0,TO,Timeout,3600.0,1895.536,,,,3600.0,3600.0,benchmark-instance-rerun-4-05,20260217-rerun-4,2026-02-17 23:26:00.965021,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon48_Day314 +pypsa-de-elec-trex_vopt,20-1h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,1742.504,,,,86400.0,86400.0,benchmark-instance-rerun-4-00,20260217-rerun-4,2026-02-17 09:31:31.691716,c4-highmem-16,us-central1-a,0a76d2f,pypsa-de-elec-trex_vopt-20-1h,cbc-2.10.12,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,20-1h,gurobi,13.0.0,2025.0,ok,optimal,1206.3985659369937,14232.312,7559785260.716539,,,1177.4545731544497,86400.0,benchmark-instance-rerun-4-00,20260217-rerun-4,2026-02-18 09:35:01.080942,c4-highmem-16,us-central1-a,0a76d2f,pypsa-de-elec-trex_vopt-20-1h,gurobi-13.0.0,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,20-1h,highs-hipo,1.12.0-hipo,2025.0,TO,Timeout,86400.0,163.56,,,,86400.0,86400.0,benchmark-instance-rerun-4-00,20260217-rerun-4,2026-02-18 09:58:44.605328,c4-highmem-16,us-central1-a,0a76d2f,pypsa-de-elec-trex_vopt-20-1h,highs-hipo-1.12.0-hipo,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,20-1h,highs-ipx,1.12.0-hipo,2025.0,TO,Timeout,86400.0,163.076,,,,86400.0,86400.0,benchmark-instance-rerun-4-00,20260217-rerun-4,2026-02-19 10:01:49.318412,c4-highmem-16,us-central1-a,0a76d2f,pypsa-de-elec-trex_vopt-20-1h,highs-ipx-1.12.0-hipo,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,20-1h,highs,1.12.0,2025.0,TO,Timeout,86400.0,6437.596,,,,86400.0,86400.0,benchmark-instance-rerun-4-00,20260217-rerun-4,2026-02-20 10:05:03.448104,c4-highmem-16,us-central1-a,0a76d2f,pypsa-de-elec-trex_vopt-20-1h,highs-1.12.0,pypsa-de-elec-trex_vopt +pypsa-de-elec-trex_vopt,20-1h,scip,10.0.0,2025.0,TO,Timeout,86400.0,30607.184,,,,86400.0,86400.0,benchmark-instance-rerun-4-00,20260217-rerun-4,2026-02-21 10:08:08.256475,c4-highmem-16,us-central1-a,0a76d2f,pypsa-de-elec-trex_vopt-20-1h,scip-10.0.0,pypsa-de-elec-trex_vopt +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314,73-1h,glpk,5.0,2020.0,TO,Timeout,3600.0,126.864,,,,3600.0,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 09:32:05.711632,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29,73-1h,glpk,5.0,2020.0,ok,unknown,588.3067809329996,174.928,506400.4424,,,,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 10:35:42.345508,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29-73-1h,glpk-5.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314,73-1h,gurobi,10.0.0,2022.0,ok,optimal,25.3851113289993,215.98,250234.60094888505,,,25.014601945877075,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 10:46:11.620580,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314,73-1h,highs,1.5.0.dev0,2022.0,ok,optimal,160.8427376869995,413.752,250234.60094052847,,,160.776344537735,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 10:50:17.211725,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314,73-1h,scip,8.0.3,2022.0,ok,optimal,253.8196188049997,568.52,250234.6006067611,,,253.735418,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 10:52:58.764691,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29,73-1h,gurobi,10.0.0,2022.0,ok,optimal,4.154624127999341,213.284,506400.44236236345,,,3.815894842147827,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 10:57:13.303905,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29-73-1h,gurobi-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29,73-1h,highs,1.5.0.dev0,2022.0,ok,optimal,26.61129902799985,338.788,506400.4423618824,,,26.420466423034668,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 10:57:18.259785,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29-73-1h,highs-1.5.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29,73-1h,scip,8.0.3,2022.0,ok,optimal,21.72804216000077,424.616,506400.4423618824,,,21.600038,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 10:57:45.684412,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29-73-1h,scip-8.0.3,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314,73-1h,gurobi,11.0.0,2023.0,ok,optimal,27.233667380000043,228.512,250234.60094888505,,,26.96521306037903,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 11:01:28.547180,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314,73-1h,highs,1.6.0.dev0,2023.0,ok,optimal,157.32209098100066,433.9,250234.60094052847,,,157.2776656150818,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 11:05:34.063733,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314,73-1h,scip,8.1.0,2023.0,ok,optimal,257.61794312499933,580.756,250234.6006067611,,,257.558433,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 11:08:12.226800,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314,73-1h,cbc,2.10.11,2023.0,ok,optimal,1794.311640158,174.072,250234.60094888,,,1794.24,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 11:12:30.700090,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29,73-1h,gurobi,11.0.0,2023.0,ok,optimal,4.459518031999323,224.212,506400.4423626776,,,4.124136924743652,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 11:42:25.822966,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29-73-1h,gurobi-11.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29,73-1h,highs,1.6.0.dev0,2023.0,ok,optimal,26.60261971900036,351.136,506400.4423618824,,,26.48586678504944,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 11:42:31.178335,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29-73-1h,highs-1.6.0.dev0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29,73-1h,scip,8.1.0,2023.0,ok,optimal,22.260811153999384,432.656,506400.4423618824,,,22.153548,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 11:42:58.689188,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29-73-1h,scip-8.1.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29,73-1h,cbc,2.10.11,2023.0,ok,optimal,90.23266693199912,179.14,506400.44236207,,,90.13,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 11:43:21.884272,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29-73-1h,cbc-2.10.11,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314,73-1h,gurobi,12.0.0,2024.0,ok,optimal,18.86375710900029,202.364,250234.59678195184,4.999999986443997e-07,9.974466470781864e-05,18.62058806419373,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 11:45:22.717166,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314,73-1h,highs,1.9.0,2024.0,ok,optimal,97.11990487000004,426.784,250234.6009488848,3.7081449022480235e-14,8.65884898652509e-05,97.04414916038512,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 11:49:28.725893,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314,73-1h,scip,9.2.0,2024.0,ok,optimal,259.05565140699946,555.412,250234.6006067611,2.410960332488443e-07,0.0,258.992701,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 11:51:06.468488,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314,73-1h,cbc,2.10.12,2024.0,ok,optimal,1818.765079867,154.032,250234.60094888,0.0,0.0,1818.61,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 11:55:26.168306,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29,73-1h,gurobi,12.0.0,2024.0,ok,optimal,3.481347349999851,199.544,506400.4423618826,0.0,5.747196886517646e-16,3.155233860015869,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 12:25:45.537593,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29-73-1h,gurobi-12.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29,73-1h,highs,1.9.0,2024.0,ok,optimal,25.82270203400003,313.572,506400.4423618822,1.5210055437364645e-14,0.0,25.62803554534912,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 12:25:49.736402,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29-73-1h,highs-1.9.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29,73-1h,scip,9.2.0,2024.0,ok,optimal,21.69167874899904,409.652,506400.4423618824,0.0,0.0,21.587872,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 12:26:16.265338,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29-73-1h,scip-9.2.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29,73-1h,cbc,2.10.12,2024.0,ok,optimal,88.16478279900002,156.024,506400.44236207,0.0,,87.88,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 12:26:38.699270,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29-73-1h,cbc-2.10.12,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314,73-1h,gurobi,13.0.0,2025.0,ok,optimal,23.41063560899965,232.656,250234.60094888505,0.0,9.703811540042038e-05,23.154402017593384,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 12:28:37.698837,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314,73-1h,highs,1.12.0,2025.0,ok,optimal,247.6778244090001,542.244,250234.6009488837,7.896358184611633e-14,8.376310973075116e-05,247.62565422058103,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 12:32:39.293646,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314,73-1h,scip,10.0.0,2025.0,ok,optimal,255.7868017740002,574.264,250234.6006067611,2.410960332488443e-07,0.0,255.722153,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 12:36:47.980846,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetTransport_Horizon12_Day314 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29,73-1h,gurobi,13.0.0,2025.0,ok,optimal,3.6848113189989817,227.104,506400.4423435307,0.0,3.448318132035554e-16,3.371789932250977,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 12:41:04.607620,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29-73-1h,gurobi-13.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29,73-1h,highs,1.12.0,2025.0,ok,optimal,17.41318079099983,374.18,506400.44236187794,2.035482893347762e-12,0.0,17.287233352661133,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 12:41:09.198853,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29-73-1h,highs-1.12.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29 +Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29,73-1h,scip,10.0.0,2025.0,ok,optimal,22.027785780999693,435.612,506400.4423618824,0.0,0.0,21.917794,3600.0,benchmark-instance-rerun-4-07,20260217-rerun-4,2026-02-17 12:41:27.502159,c4-standard-2,us-central1-a,0a76d2f,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29-73-1h,scip-10.0.0,Sienna_modified_RTS_GMLC_DA_sys_NetPTDF_Horizon12_Day29 +pypsa-eur-elec-trex_vopt-dfp,100-12h,cbc,2.10.12,2024.0,TO,Timeout,86400.0,835.44,,,,86400.0,86400.0,benchmark-instance-rerun-4-02,20260217-rerun-4,2026-02-17 09:31:26.241142,c4-highmem-16,us-central1-a,0a76d2f,pypsa-eur-elec-trex_vopt-dfp-100-12h,cbc-2.10.12,pypsa-eur-elec-trex_vopt-dfp +pypsa-eur-elec-trex_vopt-dfp,100-12h,gurobi,13.0.0,2025.0,ok,optimal,2382.7073838740034,7933.332,36238113183.38044,,,2370.391368865967,86400.0,benchmark-instance-rerun-4-02,20260217-rerun-4,2026-02-18 09:35:00.442004,c4-highmem-16,us-central1-a,0a76d2f,pypsa-eur-elec-trex_vopt-dfp-100-12h,gurobi-13.0.0,pypsa-eur-elec-trex_vopt-dfp +pypsa-eur-elec-trex_vopt-dfp,100-12h,highs-hipo,1.12.0-hipo,2025.0,ok,Optimal,5392.997271984001,26525.652,36238113184.0,,,5392.997271984001,86400.0,benchmark-instance-rerun-4-02,20260217-rerun-4,2026-02-18 10:18:03.568688,c4-highmem-16,us-central1-a,0a76d2f,pypsa-eur-elec-trex_vopt-dfp-100-12h,highs-hipo-1.12.0-hipo,pypsa-eur-elec-trex_vopt-dfp +pypsa-eur-elec-trex_vopt-dfp,100-12h,highs-ipx,1.12.0-hipo,2025.0,ok,Optimal,22470.214054203,2861.944,36238113186.0,,,22470.214054203,86400.0,benchmark-instance-rerun-4-02,20260217-rerun-4,2026-02-18 11:51:05.731252,c4-highmem-16,us-central1-a,0a76d2f,pypsa-eur-elec-trex_vopt-dfp-100-12h,highs-ipx-1.12.0-hipo,pypsa-eur-elec-trex_vopt-dfp +pypsa-eur-elec-trex_vopt-dfp,100-12h,highs,1.12.0,2025.0,TO,Timeout,86400.0,3759.744,,,,86400.0,86400.0,benchmark-instance-rerun-4-02,20260217-rerun-4,2026-02-18 18:08:40.696504,c4-highmem-16,us-central1-a,0a76d2f,pypsa-eur-elec-trex_vopt-dfp-100-12h,highs-1.12.0,pypsa-eur-elec-trex_vopt-dfp +pypsa-eur-elec-trex_vopt-dfp,100-12h,scip,10.0.0,2025.0,TO,Timeout,86400.0,13913.748,,,,86400.0,86400.0,benchmark-instance-rerun-4-02,20260217-rerun-4,2026-02-19 18:11:46.114079,c4-highmem-16,us-central1-a,0a76d2f,pypsa-eur-elec-trex_vopt-dfp-100-12h,scip-10.0.0,pypsa-eur-elec-trex_vopt-dfp +SWITCH-3-zone-tiny,3-6ts,glpk,5.0,2020.0,ER,,,125.076,,,,,3600.0,benchmark-instance-rerun-4-06,20260219-rerun-4,2026-02-19 09:15:53.410030,c4-standard-2,us-central1-a,27db948,SWITCH-3-zone-tiny-3-6ts,glpk-5.0,SWITCH-3-zone-tiny +SWITCH-3-zone-tiny,3-6ts,gurobi,10.0.0,2022.0,ok,optimal,0.3063182319999669,167.448,126750492.10678376,,,0.0035121440887451,3600.0,benchmark-instance-rerun-4-06,20260219-rerun-4,2026-02-19 09:20:12.032544,c4-standard-2,us-central1-a,27db948,SWITCH-3-zone-tiny-3-6ts,gurobi-10.0.0,SWITCH-3-zone-tiny +SWITCH-3-zone-tiny,3-6ts,highs,1.5.0.dev0,2022.0,ok,optimal,0.0085696129999632,155.836,126750492.10678376,,,0.0023517608642578,3600.0,benchmark-instance-rerun-4-06,20260219-rerun-4,2026-02-19 09:23:52.595328,c4-standard-2,us-central1-a,27db948,SWITCH-3-zone-tiny-3-6ts,highs-1.5.0.dev0,SWITCH-3-zone-tiny +SWITCH-3-zone-tiny,3-6ts,scip,8.0.3,2022.0,ok,optimal,0.0151576609999892,169.396,126750492.10678376,,,0.007045,3600.0,benchmark-instance-rerun-4-06,20260219-rerun-4,2026-02-19 09:23:53.259104,c4-standard-2,us-central1-a,27db948,SWITCH-3-zone-tiny-3-6ts,scip-8.0.3,SWITCH-3-zone-tiny +SWITCH-3-zone-tiny,3-6ts,gurobi,11.0.0,2023.0,ok,optimal,0.2408323109999628,177.284,126750492.10678376,,,0.0037028789520263,3600.0,benchmark-instance-rerun-4-06,20260219-rerun-4,2026-02-19 09:27:17.418254,c4-standard-2,us-central1-a,27db948,SWITCH-3-zone-tiny-3-6ts,gurobi-11.0.0,SWITCH-3-zone-tiny +SWITCH-3-zone-tiny,3-6ts,highs,1.6.0.dev0,2023.0,ok,optimal,0.0092376879999847,166.508,126750492.10678376,,,0.0024154186248779,3600.0,benchmark-instance-rerun-4-06,20260219-rerun-4,2026-02-19 09:31:00.266683,c4-standard-2,us-central1-a,27db948,SWITCH-3-zone-tiny-3-6ts,highs-1.6.0.dev0,SWITCH-3-zone-tiny +SWITCH-3-zone-tiny,3-6ts,scip,8.1.0,2023.0,ok,optimal,0.0141004910001356,178.728,126750492.10678376,,,0.006872,3600.0,benchmark-instance-rerun-4-06,20260219-rerun-4,2026-02-19 09:31:01.139971,c4-standard-2,us-central1-a,27db948,SWITCH-3-zone-tiny-3-6ts,scip-8.1.0,SWITCH-3-zone-tiny +SWITCH-3-zone-tiny,3-6ts,cbc,2.10.11,2023.0,ok,optimal,0.0525574630000846,164.368,126750492.1067838,,,0.02,3600.0,benchmark-instance-rerun-4-06,20260219-rerun-4,2026-02-19 09:31:01.922500,c4-standard-2,us-central1-a,27db948,SWITCH-3-zone-tiny-3-6ts,cbc-2.10.11,SWITCH-3-zone-tiny +SWITCH-3-zone-tiny,3-6ts,gurobi,12.0.0,2024.0,ok,optimal,0.241886083000054,153.688,126750492.10678376,0.0,0.0,0.0034959316253662,3600.0,benchmark-instance-rerun-4-06,20260219-rerun-4,2026-02-19 09:31:29.982176,c4-standard-2,us-central1-a,27db948,SWITCH-3-zone-tiny-3-6ts,gurobi-12.0.0,SWITCH-3-zone-tiny +SWITCH-3-zone-tiny,3-6ts,highs,1.9.0,2024.0,ok,optimal,0.0127031570000326,141.956,126750492.10678376,0.0,0.0,0.0024952888488769,3600.0,benchmark-instance-rerun-4-06,20260219-rerun-4,2026-02-19 09:35:12.213061,c4-standard-2,us-central1-a,27db948,SWITCH-3-zone-tiny-3-6ts,highs-1.9.0,SWITCH-3-zone-tiny +SWITCH-3-zone-tiny,3-6ts,scip,9.2.0,2024.0,ok,optimal,0.0146908229999098,155.484,126750492.10678376,0.0,0.0,0.007088,3600.0,benchmark-instance-rerun-4-06,20260219-rerun-4,2026-02-19 09:35:12.739623,c4-standard-2,us-central1-a,27db948,SWITCH-3-zone-tiny-3-6ts,scip-9.2.0,SWITCH-3-zone-tiny +SWITCH-3-zone-tiny,3-6ts,cbc,2.10.12,2024.0,ok,optimal,0.1141406710000865,141.896,126750492.1067838,0.0,,0.03,3600.0,benchmark-instance-rerun-4-06,20260219-rerun-4,2026-02-19 09:35:13.275204,c4-standard-2,us-central1-a,27db948,SWITCH-3-zone-tiny-3-6ts,cbc-2.10.12,SWITCH-3-zone-tiny +SWITCH-3-zone-tiny,3-6ts,gurobi,13.0.0,2025.0,ok,optimal,0.2413608019999173,182.068,126750492.10678376,0.0,0.0,0.0033648014068603,3600.0,benchmark-instance-rerun-4-06,20260219-rerun-4,2026-02-19 09:35:41.442494,c4-standard-2,us-central1-a,27db948,SWITCH-3-zone-tiny-3-6ts,gurobi-13.0.0,SWITCH-3-zone-tiny +SWITCH-3-zone-tiny,3-6ts,highs,1.12.0,2025.0,ok,optimal,0.018953404000058,169.088,126750492.10678376,0.0,0.0,0.006908893585205,3600.0,benchmark-instance-rerun-4-06,20260219-rerun-4,2026-02-19 09:39:23.682483,c4-standard-2,us-central1-a,27db948,SWITCH-3-zone-tiny-3-6ts,highs-1.12.0,SWITCH-3-zone-tiny +SWITCH-3-zone-tiny,3-6ts,scip,10.0.0,2025.0,ok,optimal,0.0157963960000415,182.08,126750492.10678376,0.0,0.0,0.007254,3600.0,benchmark-instance-rerun-4-06,20260219-rerun-4,2026-02-19 09:39:24.663203,c4-standard-2,us-central1-a,27db948,SWITCH-3-zone-tiny-3-6ts,scip-10.0.0,SWITCH-3-zone-tiny +pglib_opf_case2848,2848-NA,glpk,5.0,2020.0,TO,Timeout,3600.0,132.816,,,,3600.0,3600.0,benchmark-instance-rerun-4-00,20260223-rerun-4,2026-02-23 19:45:19.996633,c4-standard-2,us-central1-a,3ab4324,pglib_opf_case2848-2848-NA,glpk-5.0,pglib_opf_case2848 +pglib_opf_case2848,2848-NA,gurobi,10.0.0,2022.0,ok,optimal,26.596633492000365,233.108,1267741.9032914697,,,26.214659929275516,3600.0,benchmark-instance-rerun-4-00,20260223-rerun-4,2026-02-23 20:49:48.205731,c4-standard-2,us-central1-a,3ab4324,pglib_opf_case2848-2848-NA,gurobi-10.0.0,pglib_opf_case2848 +pglib_opf_case2848,2848-NA,highs,1.5.0.dev0,2022.0,TO,Timeout,3600.0,804.784,,,,3600.0,3600.0,benchmark-instance-rerun-4-00,20260223-rerun-4,2026-02-23 20:53:59.964235,c4-standard-2,us-central1-a,3ab4324,pglib_opf_case2848-2848-NA,highs-1.5.0.dev0,pglib_opf_case2848 +pglib_opf_case2848,2848-NA,scip,8.0.3,2022.0,ok,optimal,548.8801074050007,418.972,1267731.6690013115,,,548.722466,3600.0,benchmark-instance-rerun-4-00,20260223-rerun-4,2026-02-23 21:57:43.332875,c4-standard-2,us-central1-a,3ab4324,pglib_opf_case2848-2848-NA,scip-8.0.3,pglib_opf_case2848 +pglib_opf_case2848,2848-NA,gurobi,11.0.0,2023.0,ok,optimal,13.36543296400123,256.156,1267731.6690446571,,,13.046716928482056,3600.0,benchmark-instance-rerun-4-00,20260223-rerun-4,2026-02-23 22:10:21.015030,c4-standard-2,us-central1-a,3ab4324,pglib_opf_case2848-2848-NA,gurobi-11.0.0,pglib_opf_case2848 +pglib_opf_case2848,2848-NA,highs,1.6.0.dev0,2023.0,TO,Timeout,3600.0,831.06,,,,3600.0,3600.0,benchmark-instance-rerun-4-00,20260223-rerun-4,2026-02-23 22:14:17.877562,c4-standard-2,us-central1-a,3ab4324,pglib_opf_case2848-2848-NA,highs-1.6.0.dev0,pglib_opf_case2848 +pglib_opf_case2848,2848-NA,scip,8.1.0,2023.0,ok,optimal,545.3551113569993,430.108,1267731.6690013115,,,545.220859,3600.0,benchmark-instance-rerun-4-00,20260223-rerun-4,2026-02-23 23:18:00.612572,c4-standard-2,us-central1-a,3ab4324,pglib_opf_case2848-2848-NA,scip-8.1.0,pglib_opf_case2848 +pglib_opf_case2848,2848-NA,cbc,2.10.11,2023.0,TO,Timeout,3600.0,171.512,,,,3600.0,3600.0,benchmark-instance-rerun-4-00,20260223-rerun-4,2026-02-23 23:27:06.863734,c4-standard-2,us-central1-a,3ab4324,pglib_opf_case2848-2848-NA,cbc-2.10.11,pglib_opf_case2848 +pglib_opf_case2848,2848-NA,gurobi,12.0.0,2024.0,ok,optimal,45.68231531100173,228.18,1267841.2331756158,0.0,8.641786316852894e-05,45.37519311904907,3600.0,benchmark-instance-rerun-4-00,20260223-rerun-4,2026-02-24 00:31:19.692711,c4-standard-2,us-central1-a,3ab4324,pglib_opf_case2848-2848-NA,gurobi-12.0.0,pglib_opf_case2848 +pglib_opf_case2848,2848-NA,highs,1.9.0,2024.0,TO,Timeout,3600.0,592.132,,,,3600.0,3600.0,benchmark-instance-rerun-4-00,20260223-rerun-4,2026-02-24 00:35:48.553978,c4-standard-2,us-central1-a,3ab4324,pglib_opf_case2848-2848-NA,highs-1.9.0,pglib_opf_case2848 +pglib_opf_case2848,2848-NA,scip,9.2.0,2024.0,ok,optimal,546.0156597979985,405.292,1267731.6690013115,1.4876988529977098e-14,0.0,545.87748,3600.0,benchmark-instance-rerun-4-00,20260223-rerun-4,2026-02-24 01:39:31.415452,c4-standard-2,us-central1-a,3ab4324,pglib_opf_case2848-2848-NA,scip-9.2.0,pglib_opf_case2848 +pglib_opf_case2848,2848-NA,cbc,2.10.12,2024.0,TO,Timeout,3600.0,146.976,,,,3600.0,3600.0,benchmark-instance-rerun-4-00,20260223-rerun-4,2026-02-24 01:48:38.141155,c4-standard-2,us-central1-a,3ab4324,pglib_opf_case2848-2848-NA,cbc-2.10.12,pglib_opf_case2848 +pglib_opf_case2848,2848-NA,gurobi,13.0.0,2025.0,ok,optimal,4.808573903999786,223.508,1267731.6692602143,0.0,1.6867669286092602e-10,4.496469974517822,3600.0,benchmark-instance-rerun-4-00,20260223-rerun-4,2026-02-24 02:52:52.975406,c4-standard-2,us-central1-a,3ab4324,pglib_opf_case2848-2848-NA,gurobi-13.0.0,pglib_opf_case2848 +pglib_opf_case2848,2848-NA,highs,1.12.0,2025.0,TO,Timeout,3600.0,715.5,,,,3600.0,3600.0,benchmark-instance-rerun-4-00,20260223-rerun-4,2026-02-24 02:56:40.947884,c4-standard-2,us-central1-a,3ab4324,pglib_opf_case2848-2848-NA,highs-1.12.0,pglib_opf_case2848 +pglib_opf_case2848,2848-NA,scip,10.0.0,2025.0,ok,optimal,547.9627689350018,431.74,1267731.6690013115,1.4876988529977098e-14,0.0,547.81637,3600.0,benchmark-instance-rerun-4-00,20260223-rerun-4,2026-02-24 04:00:23.194147,c4-standard-2,us-central1-a,3ab4324,pglib_opf_case2848-2848-NA,scip-10.0.0,pglib_opf_case2848 diff --git a/results/benchmark_results_mean_stddev.csv b/results/benchmark_results_mean_stddev.csv deleted file mode 100644 index 79a116b5..00000000 --- a/results/benchmark_results_mean_stddev.csv +++ /dev/null @@ -1 +0,0 @@ -Benchmark,Size,Solver,Solver Version,Solver Release Year,Status,Termination Condition,Runtime Mean (s),Runtime StdDev (s),Memory Mean (MB),Memory StdDev (MB),Objective Value,Run ID,Timestamp From 600cba359a7e77ed02b34a59105b3da7285931c6 Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Thu, 5 Mar 2026 15:09:54 +0100 Subject: [PATCH 54/57] code: introduce benchmark-2026.yaml environment file --- runner/envs/benchmark-2026.yaml | 19 +++++++++++++++++++ runner/run_benchmarks.py | 22 +++++++++++++++++++++- 2 files changed, 40 insertions(+), 1 deletion(-) create mode 100644 runner/envs/benchmark-2026.yaml diff --git a/runner/envs/benchmark-2026.yaml b/runner/envs/benchmark-2026.yaml new file mode 100644 index 00000000..eee9ebbf --- /dev/null +++ b/runner/envs/benchmark-2026.yaml @@ -0,0 +1,19 @@ +name: benchmark-2026 +channels: +- conda-forge/label/dev +- conda-forge +- https://conda.anaconda.org/gurobi +- nodefaults +dependencies: +- python>=3.12 +- pip +- psutil>=5.9 +- requests>=2.32 +- linopy>=0.6.4 +- coin-or-cbc==2.10.12 +- scip==10.0.0 +- pyscipopt==6.1.0 +- gurobi==13.0.0 + +# Install highspy from conda-forge dev label +- highspy==1.13.2.dev1 \ No newline at end of file diff --git a/runner/run_benchmarks.py b/runner/run_benchmarks.py index 849e8726..f03dc8bb 100644 --- a/runner/run_benchmarks.py +++ b/runner/run_benchmarks.py @@ -130,7 +130,7 @@ def get_conda_package_versions(solvers: list[str], env_name=None) -> dict[str, s def _download_via_requests(url: str, dest: Path, chunk_size: int = 8192) -> None: """ - Download a file over HTTP(S) using HTTP/HTTPS requests.. + Download a file over HTTP(S) requests. Parameters ---------- @@ -175,6 +175,26 @@ def _download_via_gsutil(url: str, dest: Path) -> None: def _unzip_gz(path: Path) -> Path: + """ + Decompress a gzip file and remove the original compressed file. + + Parameters + ---------- + path : Path + Path to the file to decompress. If the file does not have a `.gz` + extension, it is returned unchanged. + + Returns + ------- + Path + Path to the decompressed file. If the input file was not gzipped, + returns the input path unchanged. + + Notes + ----- + This function removes the original `.gz` file after successful + decompression and prints a message to stdout indicating the operation. + """ if path.suffix != ".gz": return path uncompressed = path.with_suffix("") From 959901bc16be692ba80500e115c47e8a535a6c8e Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Thu, 5 Mar 2026 15:10:24 +0100 Subject: [PATCH 55/57] code: introduce benchmark-2026.yaml environment file --- runner/envs/benchmark-2026.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runner/envs/benchmark-2026.yaml b/runner/envs/benchmark-2026.yaml index eee9ebbf..6efe30fb 100644 --- a/runner/envs/benchmark-2026.yaml +++ b/runner/envs/benchmark-2026.yaml @@ -16,4 +16,4 @@ dependencies: - gurobi==13.0.0 # Install highspy from conda-forge dev label -- highspy==1.13.2.dev1 \ No newline at end of file +- highspy==1.13.2.dev1 From 1a853b2189af7d6e0b81e36abb1d662d60459c4a Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Thu, 5 Mar 2026 16:21:53 +0100 Subject: [PATCH 56/57] code: modify benchmark-2026.yaml --- runner/envs/benchmark-2026.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runner/envs/benchmark-2026.yaml b/runner/envs/benchmark-2026.yaml index 6efe30fb..bc6e71d1 100644 --- a/runner/envs/benchmark-2026.yaml +++ b/runner/envs/benchmark-2026.yaml @@ -9,7 +9,7 @@ dependencies: - pip - psutil>=5.9 - requests>=2.32 -- linopy>=0.6.4 +- linopy>=0.6.0 - coin-or-cbc==2.10.12 - scip==10.0.0 - pyscipopt==6.1.0 From b1eaef47865c0e01bef3fb35e27c8a46cb3dc2ef Mon Sep 17 00:00:00 2001 From: Fabrizio Finozzi Date: Thu, 5 Mar 2026 16:35:11 +0100 Subject: [PATCH 57/57] code: new version --- runner/envs/benchmark-2026.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runner/envs/benchmark-2026.yaml b/runner/envs/benchmark-2026.yaml index bc6e71d1..b503bbfd 100644 --- a/runner/envs/benchmark-2026.yaml +++ b/runner/envs/benchmark-2026.yaml @@ -9,10 +9,10 @@ dependencies: - pip - psutil>=5.9 - requests>=2.32 -- linopy>=0.6.0 +- linopy>=0.6.4 - coin-or-cbc==2.10.12 - scip==10.0.0 -- pyscipopt==6.1.0 +- pyscipopt==5.7.1 - gurobi==13.0.0 # Install highspy from conda-forge dev label