Skip to content

Commit 08cdac7

Browse files
committed
Bump to 1.7; fix stray merge conflict
1 parent 0b75a32 commit 08cdac7

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "SymbolicUtils"
22
uuid = "d1185830-fcd6-423d-90d6-eec64667417b"
33
authors = ["Shashi Gowda"]
4-
version = "1.5.1"
4+
version = "1.7.0"
55

66
[deps]
77
AbstractTrees = "1520ce14-60c1-5f80-bbc7-55ef81b5835c"

src/rewriters.jl

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -200,16 +200,12 @@ function (p::Walk{ord, C, F, false})(x) where {ord, C, F}
200200
if ord === :pre
201201
x = p.rw(x)
202202
end
203-
<<<<<<< HEAD
204203

205-
x = p.similarterm(x, operation(x), map(PassThrough(p),
206-
unsorted_arguments(x)), metadata=metadata(x))
207-
208-
=======
209204
if istree(x)
210-
x = p.similarterm(x, operation(x), map(PassThrough(p), unsorted_arguments(x)))
205+
x = p.similarterm(x, operation(x), map(PassThrough(p),
206+
unsorted_arguments(x)), metadata=metadata(x))
211207
end
212-
>>>>>>> parent of 6713fa0 (Merge pull request #584 from JuliaSymbolics/ale/terminterface-new)
208+
213209
return ord === :post ? p.rw(x) : x
214210
else
215211
return p.rw(x)

0 commit comments

Comments
 (0)