[PYTHON] Kombinationsoptimierung - typisches Problem-Job-Shop-Problem

Typisches Problem und Ausführungsmethode

Job-Shop-Problem

Verarbeiten Sie die angegebenen $ n $ Jobs $ V = \ {1, \ dots, n \} $ auf $ m $ Maschinen. Eine Maschine kann jeweils nur einen Auftrag verarbeiten. Suchen Sie einen Zeitplan, der die Endzeit aller Jobs minimiert. Wenn die Verarbeitungsreihenfolge von Maschinen für einen Auftrag festgelegt ist, spricht man von einem Flow-Shop-Problem.

Ausführungsmethode (2 Beispiel eines Maschinenfluss-Shop-Problems)

usage


Signature: two_machine_flowshop(p)
Docstring:
2 Problem mit der Maschinenflusswerkstatt
Finden Sie einen Jobplan für zwei Flow-Shops(Johnson-Methode)
Eingang
    p: (Bearbeitungszeit vorverarbeiten,Bearbeitungszeit nach dem Prozess)Liste nach Produkt
Ausgabe
Liste der Bearbeitungszeit und Bearbeitungsreihenfolge

python


from ortoolpy import two_machine_flowshop
two_machine_flowshop([(4, 3), (3, 1), (1, 4)])

Ergebnis


(9, [2, 0, 1])

python


# pandas.DataFrame
from ortoolpy.optimization import TwoMachineFlowshop
TwoMachineFlowshop('data/flowshop.csv')[1]
first second
2 1 4
0 4 3
1 3 1

Daten

Recommended Posts

Kombinationsoptimierung - typisches Problem-Job-Shop-Problem
Kombinationsoptimierung - typisches Problem-Rucksack-Problem
Kombinationsoptimierung - typisches Problem - n-dimensionales Packungsproblem
Kombinationsoptimierungstypisches Problem-Minimum-Vertex-Covering-Problem
Kombinationsoptimierung - typisches problemstabiles Matching-Problem
Kombinationsoptimierungstypisches Problem-verallgemeinertes Zuordnungsproblem
Kombinationsoptimierung - typisches Problem beim Packen von Problembehältern
Kombinationsoptimierung - typisches Problem - Maximum-Matching-Problem
Kombinationsoptimierung - typisches Problem - sekundäres Zuordnungsproblem
Kombinationsoptimierung - typisches Problem - Problem mit dem kürzesten Weg
Kombinationsoptimierung - typisches Problem - Kombinationsauktionsproblem
Kombinationsoptimierung - typisches Problem - Maximum-Flow-Problem
Kombinationsoptimierungstypisches Problem-Aggregat-Abdeckungsproblem
Kombinationsoptimierung - typisches Problem-Gewichtsanpassungsproblem
Kombinationsoptimierung - typisches Problem bei der Platzierung von Problemeinrichtungen
Kombinationsoptimierung - typisches Problem - maximales Schnittproblem
Kombinationsoptimierung - typisches Problem - Rundschreiben Verkäufer Problem
Kombinationsoptimierung - typisches Problem bei der Planung der Problemarbeit
Kombinationsoptimierung - typisches Problem - Minimum des Gesamtflächenbaumproblems
Kombinationsoptimierungstypisches Problem-Maximum-Stabil-Set-Problem
Kombinationsoptimierung - typisches Problem - Mindestkostenflussproblem
Kombinationsoptimierung - typisches Problem - Problem der chinesischen Postzustellung
Kombinationsoptimierung - Typisches Problem - Problem mit der Transportroute (Lieferoptimierung)
Kombinationsoptimierung - Minimum Cut Problem
Kombinationsoptimierung - Typisches Problem - Problem bei der Platzierung der Einrichtung ohne Kapazitätsbeschränkung
Kombinationsoptimierungstypische Probleme und wie es geht