Skip to main content

anemone searches trees

Project description

anemone

anemone is a Python library for tree search over valanga game states. It separates structural tree storage, runtime search state, node evaluation, exploration indices, and selector/opening logic so different search policies can share one coherent runtime.

Overview

The main architectural split is:

  • structure: TreeNode and ITreeNode
  • runtime: AlgorithmNode and TreeExploration
  • evaluation: direct evaluation plus backed-up tree evaluation
  • exploration: per-node exploration-index payloads and tree-wide recomputation
  • selection: selectors and opening instructions that decide what to expand next

Installation

pip install anemone

Optional extras:

pip install anemone[nn]
pip install anemone[debug]

Debug snapshot export and the debug browser's SVG rendering also require the system Graphviz executable (dot).

Getting started

The canonical public entry point is anemone.factory.create_search.

  • Use anemone.factory to build a runnable search runtime.
  • Treat anemone._runtime_assembly and anemone.search_factory as internal wiring layers behind that API.
  • Use TreeAndValueBranchSelector only when you want the higher-level one-shot recommendation wrapper instead of driving the runtime directly.
from random import Random

from anemone.factory import SearchArgs, create_search

# Domain-specific collaborators omitted for brevity:
# - YourStateType
# - your_dynamics
# - starting_state
# - your_evaluator
# - your_selector_args
# - your_opening_type
# - your_stopping_criterion
# - your_recommender_rule
args = SearchArgs(
    node_selector=your_selector_args,
    opening_type=your_opening_type,
    stopping_criterion=your_stopping_criterion,
    recommender_rule=your_recommender_rule,
)

runtime = create_search(
    state_type=YourStateType,
    dynamics=your_dynamics,
    starting_state=starting_state,
    args=args,
    random_generator=Random(0),
    master_state_value_evaluator=your_evaluator,
    state_representation_factory=None,
)

result = runtime.explore(Random(0))
print(result.branch_recommendation.recommended_name)

Core concepts

  • TreeNode: the concrete structural node storing state, depth, and links.
  • AlgorithmNode: the runtime wrapper that adds tree evaluation and exploration-index payloads.
  • direct_value: the immediate evaluator output for one node.
  • backed_up_value: the subtree-derived value propagated from children.
  • exploration index: optional per-node search-priority data recomputed across the tree by a configured strategy.

How it works

  • create_search(...) assembles the runtime, direct evaluator, selector factory, tree-evaluation factory, and tree manager.
  • The initial tree is created with a directly evaluated root node.
  • A selector chooses which node or branch to open next.
  • The tree manager expands the structure and creates any new runtime nodes.
  • Direct evaluation fills direct_value on newly created nodes.
  • Upward propagation recomputes backed_up_value, branch ordering, and principal variation.
  • Exploration-index payloads are refreshed for the next iteration.

Documentation

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

algorhino_anemone-0.2.13.tar.gz (306.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

algorhino_anemone-0.2.13-py3-none-any.whl (328.7 kB view details)

Uploaded Python 3

File details

Details for the file algorhino_anemone-0.2.13.tar.gz.

File metadata

  • Download URL: algorhino_anemone-0.2.13.tar.gz
  • Upload date:
  • Size: 306.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for algorhino_anemone-0.2.13.tar.gz
Algorithm Hash digest
SHA256 8a2ab4bebc2e7927e6987e5b8b5ae3291274194cc6c2430ca9c378ebd09d79bb
MD5 67ff90c8260377b1b98e7c18aac9582f
BLAKE2b-256 7a7b4ea0c279e2127487355472fe650ce762ae714d88fb70d33d96a1dfbdfeba

See more details on using hashes here.

Provenance

The following attestation bundles were made for algorhino_anemone-0.2.13.tar.gz:

Publisher: release.yml on victorgabillon/anemone

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file algorhino_anemone-0.2.13-py3-none-any.whl.

File metadata

File hashes

Hashes for algorhino_anemone-0.2.13-py3-none-any.whl
Algorithm Hash digest
SHA256 39558c8dcbba764f73ba15b11558a0dfed92a6ba4fce59934dbabf77861dda35
MD5 d5a2e4534135f4dc78b8bff807874a7f
BLAKE2b-256 92fc2ef2c47dc1272b9914a33b21d3f2e459bc49f087e96c28c96beabbbb723c

See more details on using hashes here.

Provenance

The following attestation bundles were made for algorhino_anemone-0.2.13-py3-none-any.whl:

Publisher: release.yml on victorgabillon/anemone

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page