Skip to content

Commit aff7c4f

Browse files
committed
debug. pr ready
1 parent c0cea6d commit aff7c4f

4 files changed

Lines changed: 4 additions & 8 deletions

File tree

components/manifold_extraction/wmtk/components/manifold_extraction/ManExtractMesh.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -852,7 +852,6 @@ void ManExtractMesh::write_surface(const std::string& path)
852852
void ManExtractMesh::write_vtu(const std::string& path)
853853
{
854854
logger().info("Write {}.vtu", path);
855-
logger().warn("Any new tags added during manifold extraction will not appear in vtu.");
856855

857856
consolidate_mesh();
858857
const auto& vs = get_vertices();

components/topological_offset/wmtk/components/topological_offset/TopoOffsetTetMesh.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -853,7 +853,6 @@ void TopoOffsetTetMesh::write_input_complex(const std::string& path)
853853
void TopoOffsetTetMesh::write_vtu(const std::string& path)
854854
{
855855
logger().info("Write {}.vtu", path);
856-
logger().warn("Any new tags added during topological offset will not appear in vtu.");
857856

858857
consolidate_mesh();
859858
const auto& vs = get_vertices();

components/topological_offset/wmtk/components/topological_offset/TopoOffsetTriMesh.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -674,8 +674,6 @@ void TopoOffsetTriMesh::write_input_complex(const std::string& path)
674674
void TopoOffsetTriMesh::write_vtu(const std::string& path)
675675
{
676676
logger().info("Write {}.vtu", path);
677-
logger().warn("Any new tags added during topological offset will not appear in vtu.");
678-
679677

680678
consolidate_mesh();
681679
const auto& vs = get_vertices();

components/topological_offset/wmtk/components/topological_offset/topological_offset_spec.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ nlohmann::json topological_offset_spec = R"(
4646
{
4747
"pointer": "/offset_tags",
4848
"type": "list",
49-
"default": [[0]],
49+
"default": [["tag_0"]],
5050
"min": 1,
51-
"doc": "List of tag sets. The intersection of the union of each set will be offset. [] is ambient space. Eg, [[], [1, 2]] offsets the intersection between ambient space and the union of tags 1 and 2."
51+
"doc": "List of tag sets. The intersection of the union of each set will be offset. [] is ambient space. Eg, [[], ['tag_1', 'tag_2']] offsets the intersection between ambient space and the union of tags 1 and 2."
5252
},
5353
{
5454
"pointer": "/offset_tags/*",
@@ -57,7 +57,7 @@ nlohmann::json topological_offset_spec = R"(
5757
},
5858
{
5959
"pointer": "/offset_tags/*/*",
60-
"type": "int",
60+
"type": "string",
6161
"doc": "A tag."
6262
},
6363
{
@@ -68,7 +68,7 @@ nlohmann::json topological_offset_spec = R"(
6868
},
6969
{
7070
"pointer": "/offset_output_tag/*",
71-
"type": "int",
71+
"type": "string",
7272
"doc": "A tag."
7373
},
7474
{

0 commit comments

Comments
 (0)