ruvector/examples/mincut/Cargo.toml
rUv 2ed46cb8ab feat(mincut): Add temporal hypergraphs and federated strange loops examples (#81)
Implements Cognitive Frontier research specifications:

Temporal Hypergraphs (5 phases):
- Phase 1: TemporalInterval, TemporalHyperedge, TimeSeries, AllenRelation
- Phase 2: TemporalIndex, TemporalHypergraphDB with time-range queries
- Phase 3: CausalLearner with spike-timing learning (STDP-like)
- Phase 4: TemporalQuery enum and QueryExecutor (AT TIME, DURING, CAUSES)
- Phase 5: TemporalMinCut and CausalMinCut for intervention planning

Federated Strange Loops (4 phases):
- Phase 1: ClusterObservation, ClusterRegistry, ObservationProtocol
- Phase 2: FederationMetaNeuron (Level 3), CrossClusterInfluence
- Phase 3: SpikeConsensus (novel!), pairwise synchrony, consensus voting
- Phase 4: PatternDetector with 5 EmergentPattern types

Novel research contributions:
1. Spike-Based Distributed Consensus
2. Emergent Role Specialization
3. Hierarchical Self-Organization
4. Collective Meta-Cognition

Bump version to 0.1.29

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-25 14:29:54 -05:00

52 lines
1 KiB
TOML

[package]
name = "mincut-examples"
version = "0.1.0"
edition = "2021"
description = "Exotic MinCut examples: temporal attractors, strange loops, causal discovery, and more"
license = "MIT OR Apache-2.0"
publish = false
[workspace]
[dependencies]
ruvector-mincut = { path = "../../crates/ruvector-mincut", features = ["monitoring", "approximate", "exact"] }
[[example]]
name = "temporal_attractors"
path = "temporal_attractors/src/main.rs"
[[example]]
name = "strange_loop"
path = "strange_loop/main.rs"
[[example]]
name = "causal_discovery"
path = "causal_discovery/main.rs"
[[example]]
name = "time_crystal"
path = "time_crystal/main.rs"
[[example]]
name = "morphogenetic"
path = "morphogenetic/main.rs"
[[example]]
name = "neural_optimizer"
path = "neural_optimizer/main.rs"
[[example]]
name = "benchmarks"
path = "benchmarks/main.rs"
[[example]]
name = "snn_integration"
path = "snn_integration/main.rs"
[[example]]
name = "temporal_hypergraph"
path = "temporal_hypergraph/main.rs"
[[example]]
name = "federated_loops"
path = "federated_loops/main.rs"