Random Search
Uniformly sample a parent and context from the full candidate history.
"""Random-search Memory component — none.
Random search carries no cross-candidate free-form knowledge between iterations; the loop leaves
Memory empty. Aliased to the shared :class:`~galapagos.components.memory.NullMemory` so the scaffold
directory still carries one module per component.
"""
from __future__ import annotations
from ...components.memory import NullMemory
RandomMemory = NullMemory