Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions deeptrack/backend/core.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
"""Core data structures for DeepTrack2.

This module defines the foundational data structures used throughout DeepTrack2
for constructing, managing, and evaluating computational graphs with flexible
data storage and dependency management.
This module defines the data structures used throughout DeepTrack2 to
construct, manage, and evaluate computational graphs with flexible data storage
and dependency management.

Key Features
------------
Expand Down Expand Up @@ -41,8 +41,8 @@
- `DeepTrackNode`: Node in a computation graph with operator overloading.

Represents a node in a computation graph, capable of storing and computing
values based on dependencies, with full support for lazy evaluation,
dependency tracking, and operator overloading.
values based on dependencies, with support for lazy evaluation, dependency
tracking, and operator overloading.

Functions:

Expand Down
Loading