Skip to content

Commit bcb7c1b

Browse files
committed
Change (un)sorted_arguments import & export
1 parent 590083e commit bcb7c1b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/SymbolicUtils.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import TermInterface: iscall, isexpr, issym, symtype, head, children,
2121

2222
const istree = iscall
2323
Base.@deprecate_binding istree iscall
24-
export istree, operation, arguments, unsorted_arguments, similarterm, iscall
24+
export istree, operation, arguments, sorted_arguments, similarterm, iscall
2525
# Sym, Term,
2626
# Add, Mul and Pow
2727
include("types.jl")

src/code.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export toexpr, Assignment, (←), Let, Func, DestructuredArgs, LiteralExpr,
99
import ..SymbolicUtils
1010
import ..SymbolicUtils.Rewriters
1111
import SymbolicUtils: @matchable, BasicSymbolic, Sym, Term, iscall, operation, arguments, issym,
12-
symtype, similarterm, unsorted_arguments, metadata, isterm, term
12+
symtype, similarterm, sorted_arguments, metadata, isterm, term
1313

1414
##== state management ==##
1515

src/rewriters.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ module Rewriters
3333
using SymbolicUtils: @timer
3434
using TermInterface
3535

36-
import SymbolicUtils: iscall, operation, arguments, unsorted_arguments, metadata, node_count, _promote_symtype
36+
import SymbolicUtils: iscall, operation, arguments, sorted_arguments, metadata, node_count, _promote_symtype
3737
export Empty, IfElse, If, Chain, RestartedChain, Fixpoint, Postwalk, Prewalk, PassThrough
3838

3939
# Cache of printed rules to speed up @timer

0 commit comments

Comments
 (0)