Skip to content

Commit b78fa41

Browse files
committed
Fix macro test
1 parent da644b9 commit b78fa41

File tree

1 file changed

+14
-4
lines changed

1 file changed

+14
-4
lines changed

test/test_graphs.jl

+14-4
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@ end
7373
else
7474
sx = string(x)
7575
sy = string(y)
76-
result = if startswith(sx, r"##")
76+
result = if startswith(sx, r"#")
7777
occursin(sy, sx)
78-
elseif startswith(sy, r"##")
78+
elseif startswith(sy, r"#")
7979
occursin(sx, sy)
8080
else
8181
false
@@ -153,8 +153,8 @@ end
153153
function _copy_node(tree::Node{T}, id_map::AbstractDict;)::Node{T} where {T}
154154
key = objectid(tree)
155155
is_memoized = haskey(id_map, key)
156-
result = get!(id_map, key) do
157-
begin
156+
function body()
157+
return begin
158158
if tree.degree == 0
159159
if tree.constant
160160
Node(; val=copy(tree.val::T))
@@ -172,6 +172,16 @@ end
172172
end
173173
end
174174
end
175+
result = if is_memoized
176+
begin
177+
$(Expr(:inbounds, true))
178+
local val =id_map[key]
179+
$(Expr(:inbounds, :pop))
180+
val
181+
end
182+
else
183+
id_map[key] = body()
184+
end
175185
return (((x, _) -> begin
176186
x
177187
end)(result, is_memoized))

0 commit comments

Comments
 (0)