pub enum Model {
    ER {
        p: f64,
        whole: bool,
    },
    BA {
        m0: usize,
        m: usize,
    },
    Custom(String),
    None,
}
Expand description

Decides the algorithm used to connect the nodes during Network’s initialization. It can also be used for identification purposes when the Model::Custom variant is used.

Variants

ER

Fields

p: f64

The probability of connecting any given pair of nodes.

whole: bool

Should the network be in one piece

The Erdos–Renyi random network model.

BA

Fields

m0: usize

The initial number of clustered nodes.

m: usize

The number of nodes added in each step during network creation. Keep in mind that this should be strictly less or equal m0 and the Barabasi-Albert initialization function will panic if this is not the case.

The Barabasi–Albert preferential attachment model.

Custom(String)

Custom model, can be dynamically assigned to a network using Network::set_model.

None

Placeholder for a network with no specified model. When a network is initialized with this model no immediate connections will be made.

Implementations

Clear the network’s links and reinitialize them according to the Erdos-Renyi model.

See Model::ER for more detailed explanation.

Clear the network’s links and reinitialize them according to the Barabasi-Albert model.

See Model::BA for more detailed model explanation.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

Should always be Self

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more

Checks if self is actually part of its subset T (and can be converted to it).

Use with care! Same as self.to_subset but without any property checks. Always succeeds.

The inclusion map: converts self to the equivalent element of its superset.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.