Packages

CrucibleFramework: A thin orchestration layer for experiment pipelines. Provides pipeline execution, stage behaviour, and optional persistence.

Current section

Files

Jump to
crucible_framework lib crucible cns noop.ex
Raw

lib/crucible/cns/noop.ex

defmodule Crucible.CNS.Noop do
@moduledoc """
Default CNS adapter that reports empty metrics.
"""
@behaviour Crucible.CNS.Adapter
@impl true
def evaluate(_examples, _outputs, _opts), do: {:ok, %{status: :skipped}}
end