Skip to content

Commit 5ffa76d

Browse files
committed
Add missing ExtensionInterface.jl
1 parent 0f71ba4 commit 5ffa76d

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

src/ExtensionInterface.jl

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
module ExtensionInterfaceModule
2+
3+
import ..EquationModule: Node, DEFAULT_NODE_TYPE
4+
import ..OperatorEnumModule: AbstractOperatorEnum
5+
import ..UtilsModule: isgood, isbad, @return_on_false
6+
7+
function node_to_symbolic(args...; kws...)
8+
return error(
9+
"Please load the `SymbolicUtils` package to use `node_to_symbolic(::Node, ::AbstractOperatorEnum; kws...)`.",
10+
)
11+
end
12+
function symbolic_to_node(args...; kws...)
13+
return error(
14+
"Please load the `SymbolicUtils` package to use `symbolic_to_node(::Symbolic, ::AbstractOperatorEnum, kws...)`.",
15+
)
16+
end
17+
18+
end

0 commit comments

Comments
 (0)