metaheuristic_designer.reporters.silent_reporter module#
Silent reporter that produces no output during a run.
- class SilentReporter[source]#
Bases:
ReporterReporter that produces no output.
All logging methods are no-ops. Useful for running experiments without visual clutter.
Methods
log_end(algorithm)Called once, after the optimization loop finishes.
log_init(algorithm)Called once, before the main optimization loop starts.
log_step(algorithm)Called after each generation.
- log_init(algorithm)[source]#
Called once, before the main optimization loop starts.
- Parameters:
- algorithmAlgorithm
The algorithm that is about to run.
- Parameters:
algorithm (Algorithm)