Skip to content

Commit

Permalink
Bump to 1.7; fix stray merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
shashi committed May 14, 2024
1 parent 0b75a32 commit 08cdac7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "SymbolicUtils"
uuid = "d1185830-fcd6-423d-90d6-eec64667417b"
authors = ["Shashi Gowda"]
version = "1.5.1"
version = "1.7.0"

[deps]
AbstractTrees = "1520ce14-60c1-5f80-bbc7-55ef81b5835c"
Expand Down
10 changes: 3 additions & 7 deletions src/rewriters.jl
Original file line number Diff line number Diff line change
Expand Up @@ -200,16 +200,12 @@ function (p::Walk{ord, C, F, false})(x) where {ord, C, F}
if ord === :pre
x = p.rw(x)
end
<<<<<<< HEAD

x = p.similarterm(x, operation(x), map(PassThrough(p),
unsorted_arguments(x)), metadata=metadata(x))

=======
if istree(x)
x = p.similarterm(x, operation(x), map(PassThrough(p), unsorted_arguments(x)))
x = p.similarterm(x, operation(x), map(PassThrough(p),
unsorted_arguments(x)), metadata=metadata(x))
end
>>>>>>> parent of 6713fa0 (Merge pull request #584 from JuliaSymbolics/ale/terminterface-new)

return ord === :post ? p.rw(x) : x
else
return p.rw(x)
Expand Down

0 comments on commit 08cdac7

Please sign in to comment.