diff --git a/404.html b/404.html index 3ebd3ba..9edf1ad 100644 --- a/404.html +++ b/404.html @@ -167,13 +167,13 @@
@@ -340,13 +340,13 @@ diff --git a/channels/index.html b/channels/index.html index fceafb8..160c63b 100644 --- a/channels/index.html +++ b/channels/index.html @@ -176,13 +176,13 @@ @@ -351,13 +351,13 @@ @@ -962,9 +962,6 @@ - - -A Channel<T> is a lock-free SPSC (single-producer, single-consumer) ring buffer with atomic wait/notify.
KPN++ provides three complementary layers for observing and reacting to failures.
diff --git a/examples/index.html b/examples/index.html index b8cb429..fbb5e54 100644 --- a/examples/index.html +++ b/examples/index.html @@ -174,13 +174,13 @@ @@ -349,13 +349,13 @@ @@ -889,9 +889,6 @@ - - -All C++ examples are built by default and registered as CTest smoke tests. Run them all with:
diff --git a/fanout/index.html b/fanout/index.html index 3be2e0a..ccf796d 100644 --- a/fanout/index.html +++ b/fanout/index.html @@ -176,13 +176,13 @@ @@ -351,13 +351,13 @@ @@ -918,9 +918,6 @@ - - -A C++20 Kahn Process Network library. Each node wraps a plain function and runs concurrently, communicating with downstream nodes via bounded FIFO channels. Includes Python bindings via nanobind.
diff --git a/network/index.html b/network/index.html index c78db83..550ef45 100644 --- a/network/index.html +++ b/network/index.html @@ -176,13 +176,13 @@ @@ -351,13 +351,13 @@ @@ -984,9 +984,6 @@ - - -A Network wires nodes together at runtime using a builder chain.
A node wraps any callable. Its input types are inferred from the function's parameter list; its output types from the return type.
diff --git a/shared-resource/index.html b/shared-resource/index.html index 5cd0159..833501f 100644 --- a/shared-resource/index.html +++ b/shared-resource/index.html @@ -176,13 +176,13 @@ @@ -351,13 +351,13 @@ @@ -940,9 +940,6 @@ - - -SharedResource<T> arbitrates exclusive access to a resource (ONNX session, CUDA stream, serial port) across multiple nodes using a priority-based waiter queue with starvation prevention.
StaticNetwork encodes the entire topology at compile time using a make_network() builder. Nodes and channel types are verified statically with zero runtime overhead.