Last change
on this file since 1165 was
1139,
checked in by Maciej Komosinski, 4 years ago
|
Added --debug mode that prints names of steps; final multiple evaluation now evaluates genotypes in hall of fame instead of the last population
|
File size:
441 bytes
|
Rev | Line | |
---|
[1139] | 1 | from typing import Iterable, Union, List |
---|
| 2 | |
---|
| 3 | from evolalg.base.step import Step |
---|
| 4 | import copy |
---|
| 5 | |
---|
| 6 | def propagate_names(step: Step, prefix=""): |
---|
| 7 | |
---|
| 8 | if isinstance(step, Iterable): |
---|
| 9 | for s in step: |
---|
| 10 | if hasattr(step, "name"): |
---|
| 11 | propagate_names(s, prefix=prefix + "." + step.name) |
---|
| 12 | else: |
---|
| 13 | propagate_names(s, prefix=prefix) |
---|
| 14 | if hasattr(step, "name"): |
---|
| 15 | step.name = f"{prefix}.{step.name}" |
---|
Note: See
TracBrowser
for help on using the repository browser.