Skip to content

Commit f64aefb

Browse files
authoredNov 20, 2024··
Shorten some file names (#212)
1 parent a889eea commit f64aefb

File tree

58 files changed

+7
-5
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+7
-5
lines changed
 

‎Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "DelaunayTriangulation"
22
uuid = "927a84f5-c5f4-47a5-9785-b46e178433df"
33
authors = ["Daniel VandenHeuvel <danj.vandenheuvel@gmail.com>"]
4-
version = "1.6.1"
4+
version = "1.6.2"
55

66
[deps]
77
AdaptivePredicates = "35492f91-a3bd-45ad-95db-fcad7dcfedb7"

‎test/refinement/curve_bounded.jl

+6-4
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,10 @@ names = (
3737
"circular_bspline",
3838
"piecewise_linear_elliptical_piecewise_linear_catmull",
3939
"multiply_connected_piecewise_linear_interior_circle",
40-
"multiply_connected_piecewise_linear_elliptical_bspline_piecewise_linear",
41-
"multiply_connected_piecewise_linear_elliptical_bspline_piecewise_linear_catmull_bezier_piecewise_linear_circle",
40+
# "multiply_connected_piecewise_linear_elliptical_bspline_piecewise_linear",
41+
"mcplebpl", # ^, see #211
42+
# "multiply_connected_piecewise_linear_elliptical_bspline_piecewise_linear_catmull_bezier_piecewise_linear_circle",
43+
"mcplebplcbplc", # ^, see #211
4244
"multiply_connected_intersecting",
4345
)
4446

@@ -1597,10 +1599,10 @@ end
15971599
@test validate_refinement(tri, args, warn=false)
15981600
if _rng_num(idx1, idx2, idx3, idx4, idx5, curve_idx, point_idx) == _rng_num(1, 3, 1, 2, 2, curve_idx, point_idx)
15991601
fig, ax, sc = triplot(tri)
1600-
@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)
1602+
@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)
16011603
elseif _rng_num(idx1, idx2, idx3, idx4, idx5, curve_idx, point_idx) == _rng_num(2, 3, 1, 2, 2, curve_idx, point_idx)
16021604
fig, ax, sc = triplot(tri)
1603-
@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)
1605+
@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)
16041606
end
16051607
@test tri.boundary_enricher.boundary_edge_map == tri.boundary_edge_map
16061608
end

2 commit comments

Comments
 (2)

DanielVandH commented on Nov 20, 2024

@DanielVandH
MemberAuthor

JuliaRegistrator commented on Nov 20, 2024

@JuliaRegistrator

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.