Full SDK workspace: core, contracts, sdk, cli, browser-host, browser-kit, federation, omega-core, oracle, self-healing, strategies, tools, emacs. Clean extraction from the development monorepo. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
14 lines
380 B
Common Lisp
14 lines
380 B
Common Lisp
;; Canonical package declaration.
|
|
(define-package "strategies/nondeterministic"
|
|
:description "Fork at amb choice points with BFS/DFS frontier management"
|
|
:exports '(nondeterministic)
|
|
:effects '(amb.op)
|
|
:requires '()
|
|
:version "0.1.0"
|
|
)
|
|
;; strategies/nondeterministic package entry.
|
|
;; Minimal package surface aligned to manifest exports.
|
|
|
|
(define nondeterministic #t)
|
|
#t
|