From a5d8475c66b0f2a1356e9eb1441c9d02caf874ad Mon Sep 17 00:00:00 2001 From: AnsMelanie Date: Mon, 9 Feb 2026 12:04:34 +0100 Subject: [PATCH 1/2] DPF Framework 26r1: proposal of introductory sentences to sections and new column in Input table and alternate text for Required label --- .../mesh/acmo_mesh_provider.md | 18 ++++++++++++++---- .../operator-specifications.md | 2 ++ 2 files changed, 16 insertions(+), 4 deletions(-) diff --git a/2026R1/dpf-framework-26-r1/operator-specifications/mesh/acmo_mesh_provider.md b/2026R1/dpf-framework-26-r1/operator-specifications/mesh/acmo_mesh_provider.md index 909f7f6f7a..2ede4afdc0 100644 --- a/2026R1/dpf-framework-26-r1/operator-specifications/mesh/acmo_mesh_provider.md +++ b/2026R1/dpf-framework-26-r1/operator-specifications/mesh/acmo_mesh_provider.md @@ -14,10 +14,12 @@ Converts an Assembly Mesh into a DPF Meshes container ## Inputs -| Pin number | Name | Expected type(s) | -|-------|-------|------------------| -| 0 Required| [assembly_mesh](#input_0) |`ans_dispatch_holder`, `struct IAnsDispatch` | -| 1| [unit](#input_1) |[`string`](../../core-concepts/dpf-types.md#standard-types) | +This table lists the input pins for this operator. Input pins define the data that the operator requires to perform its operation. Some inputs are required, while others are optional and provide additional configuration. Each parameter is detailed in the sections that follow the table. + +| Pin number | Name | Status | Expected type(s) | +|-------|------|-------|------------------| +| 0 | [assembly_mesh](#input_0) | Required|`ans_dispatch_holder`, `struct IAnsDispatch` | +| 1| [unit](#input_1) | |[`string`](../../core-concepts/dpf-types.md#standard-types) | @@ -39,6 +41,8 @@ Converts an Assembly Mesh into a DPF Meshes container ## Outputs +This table lists the output pins for this operator. Output pins provide the results of the operator's computation and can be connected to inputs of other operators or retrieved for further processing. Each output is detailed in the sections that follow the table. + | Pin number | Name | Expected type(s) | |-------|------|------------------| | **0**| [meshes_container](#output_0) |[`meshes_container`](../../core-concepts/dpf-types.md#meshes-container) | @@ -54,6 +58,7 @@ Converts an Assembly Mesh into a DPF Meshes container ## Configurations +This operator supports configuration options that modify its behavior. ### mutex @@ -66,6 +71,8 @@ If this option is set to true, the shared memory is prevented from being simulta ## Scripting +This operator can be accessed through scripting interfaces using these identifiers. + **Category**: mesh **Plugin**: core @@ -80,6 +87,9 @@ If this option is set to true, the shared memory is prevented from being simulta ## Examples +These examples demonstrate how to use this operator in different programming environments. Each example shows how to instantiate the operator, connect the required inputs, and retrieve the output. + +
C++ diff --git a/2026R1/dpf-framework-26-r1/operator-specifications/operator-specifications.md b/2026R1/dpf-framework-26-r1/operator-specifications/operator-specifications.md index 490bad68e2..37f326b65d 100644 --- a/2026R1/dpf-framework-26-r1/operator-specifications/operator-specifications.md +++ b/2026R1/dpf-framework-26-r1/operator-specifications/operator-specifications.md @@ -1,5 +1,7 @@ # Operator Specifications +This section provides comprehensive specification documentation for all DPF operators, organized by functional category. + - [Averaging operators](averaging/averaging_category.md) From 92123b1505256ab7244bc622703e83f16c42f806 Mon Sep 17 00:00:00 2001 From: PProfizi Date: Wed, 11 Feb 2026 10:33:00 +0100 Subject: [PATCH 2/2] Revert changes on operator --- .../mesh/acmo_mesh_provider.md | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) diff --git a/2026R1/dpf-framework-26-r1/operator-specifications/mesh/acmo_mesh_provider.md b/2026R1/dpf-framework-26-r1/operator-specifications/mesh/acmo_mesh_provider.md index 2ede4afdc0..909f7f6f7a 100644 --- a/2026R1/dpf-framework-26-r1/operator-specifications/mesh/acmo_mesh_provider.md +++ b/2026R1/dpf-framework-26-r1/operator-specifications/mesh/acmo_mesh_provider.md @@ -14,12 +14,10 @@ Converts an Assembly Mesh into a DPF Meshes container ## Inputs -This table lists the input pins for this operator. Input pins define the data that the operator requires to perform its operation. Some inputs are required, while others are optional and provide additional configuration. Each parameter is detailed in the sections that follow the table. - -| Pin number | Name | Status | Expected type(s) | -|-------|------|-------|------------------| -| 0 | [assembly_mesh](#input_0) | Required|`ans_dispatch_holder`, `struct IAnsDispatch` | -| 1| [unit](#input_1) | |[`string`](../../core-concepts/dpf-types.md#standard-types) | +| Pin number | Name | Expected type(s) | +|-------|-------|------------------| +| 0 Required| [assembly_mesh](#input_0) |`ans_dispatch_holder`, `struct IAnsDispatch` | +| 1| [unit](#input_1) |[`string`](../../core-concepts/dpf-types.md#standard-types) | @@ -41,8 +39,6 @@ This table lists the input pins for this operator. Input pins define the data th ## Outputs -This table lists the output pins for this operator. Output pins provide the results of the operator's computation and can be connected to inputs of other operators or retrieved for further processing. Each output is detailed in the sections that follow the table. - | Pin number | Name | Expected type(s) | |-------|------|------------------| | **0**| [meshes_container](#output_0) |[`meshes_container`](../../core-concepts/dpf-types.md#meshes-container) | @@ -58,7 +54,6 @@ This table lists the output pins for this operator. Output pins provide the resu ## Configurations -This operator supports configuration options that modify its behavior. ### mutex @@ -71,8 +66,6 @@ If this option is set to true, the shared memory is prevented from being simulta ## Scripting -This operator can be accessed through scripting interfaces using these identifiers. - **Category**: mesh **Plugin**: core @@ -87,9 +80,6 @@ This operator can be accessed through scripting interfaces using these identifie ## Examples -These examples demonstrate how to use this operator in different programming environments. Each example shows how to instantiate the operator, connect the required inputs, and retrieve the output. - -
C++