From da6dc138f11f6fd469c5ee79dbdc66dc4c0a592b Mon Sep 17 00:00:00 2001 From: Jakob Jordan Date: Thu, 7 Jan 2021 11:39:54 +0100 Subject: [PATCH] Remove outdated n_processes argument in hl_api --- cgp/hl_api.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/cgp/hl_api.py b/cgp/hl_api.py index edbbb775..6da6ad5c 100644 --- a/cgp/hl_api.py +++ b/cgp/hl_api.py @@ -16,7 +16,6 @@ def evolve( max_objective_calls: int = np.inf, print_progress: Optional[bool] = False, callback: Optional[Callable[[Population], None]] = None, - n_processes: int = 1, ) -> None: """ Evolves a population and returns the history of fitness of parents. @@ -46,11 +45,6 @@ def evolve( callback : callable, optional Called after each iteration with the population instance. Defaults to None. - n_processes : int, optional - Number of parallel processes to be used. If greater than 1, - parallel evaluation of the objective is supported. Currently - not implemented. Defaults to 1. - Returns -------