File tree 1 file changed +14
-4
lines changed
1 file changed +14
-4
lines changed Original file line number Diff line number Diff line change 73
73
else
74
74
sx = string (x)
75
75
sy = string (y)
76
- result = if startswith (sx, r" ## " )
76
+ result = if startswith (sx, r" #" )
77
77
occursin (sy, sx)
78
- elseif startswith (sy, r" ## " )
78
+ elseif startswith (sy, r" #" )
79
79
occursin (sx, sy)
80
80
else
81
81
false
153
153
function _copy_node (tree:: Node{T} , id_map:: AbstractDict ;):: Node{T} where {T}
154
154
key = objectid (tree)
155
155
is_memoized = haskey (id_map, key)
156
- result = get! (id_map, key) do
157
- begin
156
+ function body ()
157
+ return begin
158
158
if tree. degree == 0
159
159
if tree. constant
160
160
Node (; val= copy (tree. val:: T ))
172
172
end
173
173
end
174
174
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
175
185
return (((x, _) -> begin
176
186
x
177
187
end )(result, is_memoized))
You can’t perform that action at this time.
0 commit comments