SurrogateAnalysis.py 312 B

12345678910
  1. # quick object for surrogate logging data
  2. class SurrogateAnalysis():
  3. def __init__(self, time, every_ls, r2, evaluations, n_local_search):
  4. self._time = time
  5. self._every_ls = every_ls
  6. self._r2 = r2
  7. self._evaluations = evaluations
  8. self._n_local_search = n_local_search