more precise restrictive handling of opts cost adjustment flags
This commit is contained in:
parent
9530d63e55
commit
f9fec1a4be
@ -3286,7 +3286,8 @@ def remove_h2_network(n):
|
|||||||
|
|
||||||
def maybe_adjust_costs_and_potentials(n, opts):
|
def maybe_adjust_costs_and_potentials(n, opts):
|
||||||
for o in opts:
|
for o in opts:
|
||||||
if "+" not in o:
|
flags = ["+e", "+p", "+m"]
|
||||||
|
if all(flag not in o for flag in flags):
|
||||||
continue
|
continue
|
||||||
oo = o.split("+")
|
oo = o.split("+")
|
||||||
carrier_list = np.hstack(
|
carrier_list = np.hstack(
|
||||||
|
Loading…
Reference in New Issue
Block a user