From 279c44e2c9060b25c7f545dbdf3fd917c05d4a39 Mon Sep 17 00:00:00 2001
From: cont-integration <CI@iri.upc.edu>
Date: Wed, 10 Jul 2024 13:27:31 +0200
Subject: [PATCH] [skip ci] yaml templates added or modified

---
 yaml_templates/problem/Problem.yaml   | 2 +-
 yaml_templates/problem/Problem2d.yaml | 2 +-
 yaml_templates/problem/Problem3d.yaml | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/yaml_templates/problem/Problem.yaml b/yaml_templates/problem/Problem.yaml
index 0816b8cd3..7afa1c312 100644
--- a/yaml_templates/problem/Problem.yaml
+++ b/yaml_templates/problem/Problem.yaml
@@ -2,7 +2,7 @@ problem:
   tree_manager:
     type: "DerivedType"  # DOC String corresponding to the name of the object class (and its schema file).
     follow: some/path/to/derived/type/parameters.yaml
-  dimension: 2  # DOC Dimension of the problem. "2" for 2D or "3" for 3D - TYPE int - OPTIONS [2, 3]
+  dimension: 2  # DOC Dimension of the problem. "2" for 2D or "3" for 3D - TYPE unsigned int - OPTIONS [2, 3]
 map:
   type: "DerivedType"  # DOC String corresponding to the name of the object class (and its schema file).
   follow: some/path/to/derived/type/parameters.yaml
diff --git a/yaml_templates/problem/Problem2d.yaml b/yaml_templates/problem/Problem2d.yaml
index aeda222ba..e0bf33a1a 100644
--- a/yaml_templates/problem/Problem2d.yaml
+++ b/yaml_templates/problem/Problem2d.yaml
@@ -2,7 +2,7 @@ problem:
   tree_manager:
     type: "DerivedType"  # DOC String corresponding to the name of the object class (and its schema file).
     follow: some/path/to/derived/type/parameters.yaml
-  dimension: 2  # DOC Dimension of the problem: "2" for 2D - TYPE int - OPTIONS [2]
+  dimension: 2  # DOC Dimension of the problem: "2" for 2D - TYPE unsigned int - OPTIONS [2]
   first_frame:
     P:
       value: [0.0, 0.0]  # DOC A vector containing the position (x, y) [m]. - TYPE Vector2d
diff --git a/yaml_templates/problem/Problem3d.yaml b/yaml_templates/problem/Problem3d.yaml
index 6752d61f5..4f8caafd7 100644
--- a/yaml_templates/problem/Problem3d.yaml
+++ b/yaml_templates/problem/Problem3d.yaml
@@ -2,7 +2,7 @@ problem:
   tree_manager:
     type: "DerivedType"  # DOC String corresponding to the name of the object class (and its schema file).
     follow: some/path/to/derived/type/parameters.yaml
-  dimension: 3  # DOC Dimension of the problem: "3" for 3D - TYPE int - OPTIONS [3]
+  dimension: 3  # DOC Dimension of the problem: "3" for 3D - TYPE unsigned int - OPTIONS [3]
   first_frame:
     P:
       value: [0.0, 0.0, 0.0]  # OPTIONAL - DOC A vector containing the position (x, y, z) [m]. - TYPE Vector3d
-- 
GitLab