From cab8a1ae210d5bfb5d704898a7c0b226d389f758 Mon Sep 17 00:00:00 2001 From: Jonas Hoersch Date: Fri, 1 Dec 2017 11:50:15 +0100 Subject: [PATCH] test: Remove testing of pyomo-hack The support for freeing the pyomo datastructures during pyomos solving phase was removed from pypsa in commit #5ac1325, since it proved to be too slow for productive use. --- test/test_ac_dc_lopf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_ac_dc_lopf.py b/test/test_ac_dc_lopf.py index e63991d06..bfac499f3 100644 --- a/test/test_ac_dc_lopf.py +++ b/test/test_ac_dc_lopf.py @@ -39,7 +39,7 @@ def test_lopf(): snapshots = network.snapshots for formulation, free_memory in product(["angles", "cycles", "kirchhoff", "ptdf"], - [{}, {"pypsa"}, {"pypsa", "pyomo-hack"}]): + [{}, {"pypsa"}]): network.lopf(snapshots=snapshots,solver_name=solver_name,formulation=formulation, free_memory=free_memory) print(network.generators_t.p.loc[:,network.generators.index]) print(network_r.generators_t.p.loc[:,network.generators.index])