Skip to content

Commit

Permalink
Shorten some file names (#212)
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielVandH authored Nov 20, 2024
1 parent a889eea commit f64aefb
Show file tree
Hide file tree
Showing 58 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "DelaunayTriangulation"
uuid = "927a84f5-c5f4-47a5-9785-b46e178433df"
authors = ["Daniel VandenHeuvel <[email protected]>"]
version = "1.6.1"
version = "1.6.2"

[deps]
AdaptivePredicates = "35492f91-a3bd-45ad-95db-fcad7dcfedb7"
Expand Down
10 changes: 6 additions & 4 deletions test/refinement/curve_bounded.jl
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,10 @@ names = (
"circular_bspline",
"piecewise_linear_elliptical_piecewise_linear_catmull",
"multiply_connected_piecewise_linear_interior_circle",
"multiply_connected_piecewise_linear_elliptical_bspline_piecewise_linear",
"multiply_connected_piecewise_linear_elliptical_bspline_piecewise_linear_catmull_bezier_piecewise_linear_circle",
# "multiply_connected_piecewise_linear_elliptical_bspline_piecewise_linear",
"mcplebpl", # ^, see #211
# "multiply_connected_piecewise_linear_elliptical_bspline_piecewise_linear_catmull_bezier_piecewise_linear_circle",
"mcplebplcbplc", # ^, see #211
"multiply_connected_intersecting",
)

Expand Down Expand Up @@ -1597,10 +1599,10 @@ end
@test validate_refinement(tri, args, warn=false)
if _rng_num(idx1, idx2, idx3, idx4, idx5, curve_idx, point_idx) == _rng_num(1, 3, 1, 2, 2, curve_idx, point_idx)
fig, ax, sc = triplot(tri)
@test_reference "refine_curve_bounded_example_$(curve_idx)_$(names[curve_idx])_$(point_names[point_idx])_$(abs(_rng_num(1, 3, 1, 2, 2, curve_idx, point_idx))).png" fig by = psnr_equality(7)
@test_reference "rcb_example_$(curve_idx)_$(names[curve_idx])_$(point_names[point_idx])_$(abs(_rng_num(1, 3, 1, 2, 2, curve_idx, point_idx))).png" fig by = psnr_equality(7)
elseif _rng_num(idx1, idx2, idx3, idx4, idx5, curve_idx, point_idx) == _rng_num(2, 3, 1, 2, 2, curve_idx, point_idx)
fig, ax, sc = triplot(tri)
@test_reference "refine_curve_bounded_example_$(curve_idx)_$(names[curve_idx])_$(point_names[point_idx])_$(abs(_rng_num(2, 3, 1, 2, 2, curve_idx, point_idx))).png" fig by = psnr_equality(7)
@test_reference "rcb_example_$(curve_idx)_$(names[curve_idx])_$(point_names[point_idx])_$(abs(_rng_num(2, 3, 1, 2, 2, curve_idx, point_idx))).png" fig by = psnr_equality(7)
end
@test tri.boundary_enricher.boundary_edge_map == tri.boundary_edge_map
end
Expand Down

2 comments on commit f64aefb

@DanielVandH
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/119873

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v1.6.2 -m "<description of version>" f64aefbbf75a9d749a096a80af6297e280e11248
git push origin v1.6.2

Please sign in to comment.