Skip to content

Commit 9615177

Browse files
Fix handling of Symbolics v5
1 parent c127fb5 commit 9615177

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/basis/utils.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
## Create linear independent basis
22
count_operation(x::Number, op::Function, nested::Bool = true) = 0
33
count_operation(x::Sym, op::Function, nested::Bool = true) = 0
4+
count_operation(x::SymbolicUtils.BasicSymbolic, op::Function, nested::Bool = true) = 0
45
function count_operation(x::Num, op::Function, nested::Bool = true)
56
count_operation(value(x), op, nested)
67
end

0 commit comments

Comments
 (0)