跳转至

evotoolkit.list_algorithms()

evotoolkit.list_algorithms

list_algorithms() -> list[str]

List all registered algorithm names.

Source code in src/evotoolkit/registry.py
def list_algorithms() -> list[str]:
    """List all registered algorithm names."""
    return list(_ALGORITHM_REGISTRY.keys())

示例

import evotoolkit

algorithms = evotoolkit.list_algorithms()
for algo in algorithms:
    print(f"- {algo}")