master > master: code py - darstellung
- greedy permutation in Tabelle musste invertiert werden - Aktualisierung der bound musste beim Loggin erscheinen werden - value/cost zwecks leichter Vergleichbarkeit als Dezimalzahlen darstellen
This commit is contained in:
parent
ba394993e0
commit
efacd73e51
@ -131,9 +131,18 @@ def rucksack_branch_and_bound_algorithm(
|
|||||||
# top-Element auslesen und Bound berechnen:
|
# top-Element auslesen und Bound berechnen:
|
||||||
A: Mask = S.top();
|
A: Mask = S.top();
|
||||||
bound_subtree, choice, order_, pad = estimate_lower_bound(mask=A, max_cost=max_cost, costs=costs, values=values, items=items);
|
bound_subtree, choice, order_, pad = estimate_lower_bound(mask=A, max_cost=max_cost, costs=costs, values=values, items=items);
|
||||||
# für logging:
|
|
||||||
|
# für logging (irrelevant für Algorithmus):
|
||||||
if verbose:
|
if verbose:
|
||||||
step = Step(bound=bound, bound_subtree=bound_subtree, stack_str=str(S), choice=choice, order=order_, indexes=A.indexes_unset, pad=pad);
|
step = Step(bound=bound, bound_subtree=bound_subtree, stack_str=str(S), choice=choice, order=order_, indexes=A.indexes_unset, pad=pad);
|
||||||
|
if bound_subtree < bound:
|
||||||
|
if not A.splittable() or pad != MaskValue.UNSET:
|
||||||
|
step.move = EnumBranchAndBoundMove.BOUND;
|
||||||
|
step.bound = bound_subtree;
|
||||||
|
else:
|
||||||
|
step.move = EnumBranchAndBoundMove.BRANCH;
|
||||||
|
logged_steps.append(step);
|
||||||
|
|
||||||
S.pop();
|
S.pop();
|
||||||
# Update nur nötig, wenn die (eingeschätzte) untere Schranke von A das bisherige Minimum verbessert:
|
# Update nur nötig, wenn die (eingeschätzte) untere Schranke von A das bisherige Minimum verbessert:
|
||||||
if bound_subtree < bound:
|
if bound_subtree < bound:
|
||||||
@ -144,9 +153,6 @@ def rucksack_branch_and_bound_algorithm(
|
|||||||
if pad != MaskValue.UNSET:
|
if pad != MaskValue.UNSET:
|
||||||
A = A.pad(pad);
|
A = A.pad(pad);
|
||||||
mask = A;
|
mask = A;
|
||||||
# für logging:
|
|
||||||
if verbose:
|
|
||||||
step.move = EnumBranchAndBoundMove.BOUND;
|
|
||||||
# Branch sonst
|
# Branch sonst
|
||||||
else:
|
else:
|
||||||
B, C = A.split();
|
B, C = A.split();
|
||||||
@ -154,11 +160,6 @@ def rucksack_branch_and_bound_algorithm(
|
|||||||
# Nur dann C auf Stack legen, wenn mind. eine Möglichkeit in C die Kapazitätsschranke erfüllt:
|
# Nur dann C auf Stack legen, wenn mind. eine Möglichkeit in C die Kapazitätsschranke erfüllt:
|
||||||
if sum(costs[C.indexes_one]) <= max_cost:
|
if sum(costs[C.indexes_one]) <= max_cost:
|
||||||
S.push(C);
|
S.push(C);
|
||||||
# für logging:
|
|
||||||
if verbose:
|
|
||||||
step.move = EnumBranchAndBoundMove.BRANCH;
|
|
||||||
if verbose:
|
|
||||||
logged_steps.append(step);
|
|
||||||
|
|
||||||
# Aspekte der Lösung speichern
|
# Aspekte der Lösung speichern
|
||||||
rucksack = mask.indexes_one; # Indexes von Items im Rucksack
|
rucksack = mask.indexes_one; # Indexes von Items im Rucksack
|
||||||
|
@ -9,6 +9,7 @@ from src.thirdparty.code import *;
|
|||||||
from src.thirdparty.maths import *;
|
from src.thirdparty.maths import *;
|
||||||
from src.thirdparty.types import *;
|
from src.thirdparty.types import *;
|
||||||
|
|
||||||
|
from src.core.utils import *;
|
||||||
from src.setup import config;
|
from src.setup import config;
|
||||||
from models.generated.config import *;
|
from models.generated.config import *;
|
||||||
from src.models.stacks import *;
|
from src.models.stacks import *;
|
||||||
@ -38,10 +39,10 @@ def display_order(
|
|||||||
) -> str:
|
) -> str:
|
||||||
table = pd.DataFrame({
|
table = pd.DataFrame({
|
||||||
'items': items,
|
'items': items,
|
||||||
'order': order,
|
'order': iperm(order),
|
||||||
'values': values,
|
'values': values,
|
||||||
'costs': costs,
|
'costs': costs,
|
||||||
'margin': [str(Fraction(Fraction(value), Fraction(cost))) for cost, value in zip(costs, values)],
|
'margin': [f'{value/cost:.6f}' for cost, value in zip(costs, values)],
|
||||||
}) \
|
}) \
|
||||||
.reset_index(drop=True);
|
.reset_index(drop=True);
|
||||||
if one_based:
|
if one_based:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user