Skip to content

Commit

Permalink
removed extra types
Browse files Browse the repository at this point in the history
  • Loading branch information
xtalax committed Aug 25, 2023
1 parent 09943a4 commit af60a35
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/diff.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
abstract type AbstractOperator <: Function end
abstract type Operator <: AbstractOperator end
abstract type Operator <: Function end

"""
$(TYPEDEF)
Expand Down Expand Up @@ -791,12 +790,13 @@ end
#######################################################################################################################
# Vector Calculus
#######################################################################################################################
abstract type ArrayOperator end

struct ArrayDifferentialOperator <: ArrayOperator
"""The variables to differentiate with resp≈ect to."""
struct ArrayDifferentialOperator
"""The variables to differentiate with respect to."""
vars
"""The differentials, can be other fucntions if composite"""
differentials
"""name"""
name
ArrayDifferentialOperator(vars, differentials, name) = new(vars, differentials, name)
end
Expand Down

0 comments on commit af60a35

Please sign in to comment.