Skip to content

Commit

Permalink
Format code
Browse files Browse the repository at this point in the history
  • Loading branch information
BillHuang2001 committed Jan 11, 2025
1 parent e63f614 commit 2bb2fce
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/evox/algorithms/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
"SLPSOGS",
"SLPSOUS",
# MOEAs
"RVEA"
"RVEA",
]


from .de_variants import DE
from .es_variants import OpenES, CMAES
from .es_variants import CMAES, OpenES
from .mo import RVEA
from .pso_variants import CLPSO, CSO, DMSPSOEL, FSPSO, PSO, SLPSOGS, SLPSOUS
2 changes: 1 addition & 1 deletion src/evox/algorithms/es_variants/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__all__ = ["OpenES", "CMAES"]


from .open_es import OpenES
from .cma_es import CMAES
from .open_es import OpenES
1 change: 0 additions & 1 deletion src/evox/workflows/eval_monitor.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
from typing import List

import torch
from torch import nn

from ..core import Monitor, Mutable

Expand Down

0 comments on commit 2bb2fce

Please sign in to comment.