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.10.tar.gz (271.0 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.10-py3-none-any.whl (301.4 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for algorhino_anemone-0.2.10.tar.gz
Algorithm Hash digest
SHA256 dd44bf4ea9ed36f857623dde62f3e74c07a1eed9f7fe0fe6af7443c91d61c8a8
MD5 d47f612074f75d99a5e22d80a9be0c7d
BLAKE2b-256 9574419c0760f8d022bdc49578547bc8fa9a678502ce17eacb1496dfb71a7f43

See more details on using hashes here.

Provenance

The following attestation bundles were made for algorhino_anemone-0.2.10.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.10-py3-none-any.whl.

File metadata

File hashes

Hashes for algorhino_anemone-0.2.10-py3-none-any.whl
Algorithm Hash digest
SHA256 da46d82ab2712e4daec39afa26fa03ab7ec93c1a32ef2e0d88782fcb2da2ba2e
MD5 4521bc46e02e6a28d9b000e52ade11d6
BLAKE2b-256 715819f2d5f2c7dae11e85b894ecc0f1814beade51e81d1709cc0cf34a122fb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for algorhino_anemone-0.2.10-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