Skip to content

Commit

Permalink
Change (un)sorted_arguments import & export
Browse files Browse the repository at this point in the history
  • Loading branch information
bowenszhu committed Jun 22, 2024
1 parent 590083e commit bcb7c1b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/SymbolicUtils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import TermInterface: iscall, isexpr, issym, symtype, head, children,

const istree = iscall
Base.@deprecate_binding istree iscall
export istree, operation, arguments, unsorted_arguments, similarterm, iscall
export istree, operation, arguments, sorted_arguments, similarterm, iscall
# Sym, Term,
# Add, Mul and Pow
include("types.jl")
Expand Down
2 changes: 1 addition & 1 deletion src/code.jl
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export toexpr, Assignment, (←), Let, Func, DestructuredArgs, LiteralExpr,
import ..SymbolicUtils
import ..SymbolicUtils.Rewriters
import SymbolicUtils: @matchable, BasicSymbolic, Sym, Term, iscall, operation, arguments, issym,
symtype, similarterm, unsorted_arguments, metadata, isterm, term
symtype, similarterm, sorted_arguments, metadata, isterm, term

##== state management ==##

Expand Down
2 changes: 1 addition & 1 deletion src/rewriters.jl
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ module Rewriters
using SymbolicUtils: @timer
using TermInterface

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

# Cache of printed rules to speed up @timer
Expand Down

0 comments on commit bcb7c1b

Please sign in to comment.