Table of Contents

Class EdgeStats

Namespace
DotFly.Core.Checkpoints
Assembly
DotFly.Core.dll

Structural edge counts of the selected neurons in the source data. Edges and Contacts count every (pre, post) pair among included neurons; the checkpoint itself keeps only pairs whose sign is non-zero (the rest would contribute g += 0).

public sealed record EdgeStats : IEquatable<EdgeStats>
Inheritance
EdgeStats
Implements
Inherited Members

Constructors

EdgeStats(long, long, long, long)

Structural edge counts of the selected neurons in the source data. Edges and Contacts count every (pre, post) pair among included neurons; the checkpoint itself keeps only pairs whose sign is non-zero (the rest would contribute g += 0).

public EdgeStats(long Edges, long Contacts, long ZeroSignEdges, long ZeroSignContacts)

Parameters

Edges long

Directed (pre, post) pairs among included neurons.

Contacts long

Sum of contact counts over those pairs.

ZeroSignEdges long

Pairs dropped because the presynaptic transmitter maps to sign 0.

ZeroSignContacts long

Contacts on those dropped pairs.

Properties

Contacts

Sum of contact counts over those pairs.

public long Contacts { get; init; }

Property Value

long

Edges

Directed (pre, post) pairs among included neurons.

public long Edges { get; init; }

Property Value

long

ZeroSignContacts

Contacts on those dropped pairs.

public long ZeroSignContacts { get; init; }

Property Value

long

ZeroSignEdges

Pairs dropped because the presynaptic transmitter maps to sign 0.

public long ZeroSignEdges { get; init; }

Property Value

long