from datetime import datetime import pandas as pd import numpy as np import copy import sys import csv import warnings import CPH warnings.simplefilter(action='ignore', category=FutureWarning) ''' Code consisting of main run file and two functions: - run_heuristic: 1. open tree set and make CPH.PhT environment for each tree 2. run cherry picking heuristic (CPH) 3. return results - run_main: run CPH with four "PickNextCherry" methods: 1. ML 2. TrivialML 3. Rand 4. TrivialRand RUN in terminal: python main_heuristic.py