remove create_func....

This commit is contained in:
wls2002
2023-08-02 15:02:08 +08:00
parent 1499e062fe
commit c7fb1ddabe
22 changed files with 425 additions and 21 deletions

View File

@@ -92,6 +92,11 @@ class SubstrateConfig:
pass
@dataclass(frozen=True)
class ProblemConfig:
pass
@dataclass(frozen=True)
class Config:
basic: BasicConfig = BasicConfig()
@@ -99,3 +104,4 @@ class Config:
hyper_neat: HyperNeatConfig = HyperNeatConfig()
gene: GeneConfig = GeneConfig()
substrate: SubstrateConfig = SubstrateConfig()
problem: ProblemConfig = ProblemConfig()