OSDN Git Service

reverted split parser to original, gabm now has the modified version also called... master
authorYordan Manolov <yordan.manolov@rwth-aachen.de>
Sun, 19 Jul 2020 14:00:11 +0000 (16:00 +0200)
committerYordan Manolov <yordan.manolov@rwth-aachen.de>
Sun, 19 Jul 2020 14:00:11 +0000 (16:00 +0200)
src/inform-or/inform_or_experiments/split_model.py

index 0cb5b81..060614a 100644 (file)
@@ -18,7 +18,7 @@ class SplitModel:
         input_file: str
             The CSV file created by the INFORM-Generator to be processed.
         """
-        self.orders, self.length_items, self.width_items, self.height_items, self.weight_items = parse_generated_csv(input_file, ";", "utf-16")
+        self.orders, self.length_items, self.width_items, self.height_items, self.weight_items = parse_generated_csv(input_file)
         boxes_dict = parse_boxes(boxes_file)
         self.boxes = list(boxes_dict.keys())
         self.length_boxes = {k: v[0] for k, v in boxes_dict.items()}