#node #pairing #algorithm #dependencies #simulation

icentral-pair-dependencies

icentral-pair-dependencies efficiently manages pair dependencies between nodes using a structured data model supporting fast access and updates

1 unstable release

new 0.1.0 Apr 4, 2025

#55 in #pairing


Used in 33 crates (9 directly)

MIT/Apache

15KB
120 lines

icentral-pair-dependencies

Overview

icentral-pair-dependencies is a Rust crate designed to manage and compute pair dependencies within a defined set of nodes. It provides a structured approach to dynamically set, update, and retrieve dependency values through a set of comprehensive APIs, thereby supporting complex dependency management scenarios, particularly in graph analytics or network evolution.

Features

  • Trait: PairDependencyForNode: An interface for retrieving pair dependency values for a specified node.
  • Trait: SetPairDependencyForNode: An interface for setting pair dependency values for a specified node.
  • Struct: PairDependencies: Manages dependency data for nodes utilizing MaybeIndexedMap<f64>, supporting efficient queries and updates.
  • Macros: Facilitate delegation and simplification of debugging and dependency settings.

Struct Implementation

  • PairDependencies: Offers a range of methods for creating and manipulating node dependencies:
    • empty_indexed(), empty_mapped(): Initializes with specified parameters.
    • new(): Constructs with a given length and initializes dependencies.
    • fill(): Uniformly assigns a dependency value across nodes.
    • increment_pair_dependency_for_node(): Atomically increases dependency for a node.
    • update(): Custom logic for incremental updates based on adjacent node interactions.
    • reinit(): Reinitializes length and dependencies to predefined start condition.

Logging and Debugging

Robust logging is integrated via debug constructs, ensuring informative outputs during development and troubleshooting sessions for each method invocation.

Getting Started

Add this crate to your Cargo.toml:

[dependencies]
icentral-pair-dependencies = "0.1.0"

Import into your Rust code:

use icentral-pair_dependencies::{PairDependencies, PairDependencyForNode};

Examples

fn main() {
    let mut pd = PairDependencies::new(5, "example");
    pd.set_pair_dependency_for_node(1, 0.42);
    let dependency = pd.pair_dependency_for_node(1);
    println!("Dependency for node 1: {}", dependency);
}

License

This project is licensed under the MIT License.

Disclaimer

This README.md file was generated by an AI model and may not be 100% accurate, however, it should be pretty comprehensive.

This crate is in the process of being translated from c++ to rust. Currently, it still needs exhaustive testing. It is likely there currently exist many glitches which need to be fixed before proper usage. This crate is based on the original icentral program developed by Fuad Jamor. Please see the following repository for details: https://github.com/fjamour/icentral.

For progress updates, see the workspacer rust project.

Dependencies

~15–25MB
~386K SLoC