Skip to content

Commit

Permalink
Namespace open_operators!
Browse files Browse the repository at this point in the history
  • Loading branch information
lukem12345 committed Jun 18, 2024
1 parent ba4f6b0 commit 50ecf88
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions test/operators.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@

B == Δ₀(A)
end
test_compare = open_operators(laplace_de_rham_0)
test_compare = Decapodes.open_operators(laplace_de_rham_0)
infer_types!(test_compare)
resolve_overloads!(test_compare)

open_operators!(laplace_de_rham_0)
Decapodes.open_operators!(laplace_de_rham_0)
infer_types!(laplace_de_rham_0)
resolve_overloads!(laplace_de_rham_0)

Expand All @@ -27,7 +27,7 @@ end

C == i₁(A, B)
end
open_operators!(interior_product_1; dimension = 1)
Decapodes.open_operators!(interior_product_1; dimension = 1)
infer_types!(interior_product_1, op1_inf_rules_1D, op2_inf_rules_1D)
resolve_overloads!(interior_product_1, op1_res_rules_1D, op2_res_rules_1D)

Expand Down Expand Up @@ -60,7 +60,7 @@ end

C == L₀(B, A)
end
open_operators!(lie_derivative_0; dimension = 1)
Decapodes.open_operators!(lie_derivative_0; dimension = 1)
infer_types!(lie_derivative_0, op1_inf_rules_1D, op2_inf_rules_1D)
resolve_overloads!(lie_derivative_0, op1_res_rules_1D, op2_res_rules_1D)

Expand Down Expand Up @@ -93,7 +93,7 @@ end

C == L₁(B, A)
end
open_operators!(lie_derivative_1; dimension = 1)
Decapodes.open_operators!(lie_derivative_1; dimension = 1)
infer_types!(lie_derivative_1, op1_inf_rules_1D, op2_inf_rules_1D)
resolve_overloads!(lie_derivative_1, op1_res_rules_1D, op2_res_rules_1D)

Expand Down Expand Up @@ -125,7 +125,7 @@ end

B == δ₁(A)
end
open_operators!(codiff_1, dimension = 1)
Decapodes.open_operators!(codiff_1, dimension = 1)
infer_types!(codiff_1, op1_inf_rules_1D, op2_inf_rules_1D)
resolve_overloads!(codiff_1, op1_res_rules_1D, op2_res_rules_1D)

Expand Down Expand Up @@ -156,7 +156,7 @@ end

B == Δ₀(A)
end
open_operators!(laplace_de_rham_0, dimension = 1)
Decapodes.open_operators!(laplace_de_rham_0, dimension = 1)
infer_types!(laplace_de_rham_0, op1_inf_rules_1D, op2_inf_rules_1D)
resolve_overloads!(laplace_de_rham_0, op1_res_rules_1D, op2_res_rules_1D)

Expand Down Expand Up @@ -187,7 +187,7 @@ end

B == Δ₁(A)
end
open_operators!(laplace_de_rham_1, dimension = 1)
Decapodes.open_operators!(laplace_de_rham_1, dimension = 1)
infer_types!(laplace_de_rham_1, op1_inf_rules_1D, op2_inf_rules_1D)
resolve_overloads!(laplace_de_rham_1, op1_res_rules_1D, op2_res_rules_1D)

Expand Down Expand Up @@ -222,7 +222,7 @@ end

C == i₁(A, B)
end
open_operators!(interior_product_1)
Decapodes.open_operators!(interior_product_1)
infer_types!(interior_product_1)
resolve_overloads!(interior_product_1)

Expand Down Expand Up @@ -255,7 +255,7 @@ end

C == i₂(A, B)
end
open_operators!(interior_product_2)
Decapodes.open_operators!(interior_product_2)
infer_types!(interior_product_2)
resolve_overloads!(interior_product_2)

Expand Down Expand Up @@ -288,7 +288,7 @@ end

C == L₀(B, A)
end
open_operators!(lie_derivative_0)
Decapodes.open_operators!(lie_derivative_0)
infer_types!(lie_derivative_0)
resolve_overloads!(lie_derivative_0)

Expand Down Expand Up @@ -321,7 +321,7 @@ end

C == L₁(B, A)
end
open_operators!(lie_derivative_1)
Decapodes.open_operators!(lie_derivative_1)
infer_types!(lie_derivative_1)
resolve_overloads!(lie_derivative_1)

Expand Down Expand Up @@ -354,7 +354,7 @@ end

C == L₂(B, A)
end
open_operators!(lie_derivative_2)
Decapodes.open_operators!(lie_derivative_2)
infer_types!(lie_derivative_2)
resolve_overloads!(lie_derivative_2)

Expand Down Expand Up @@ -386,7 +386,7 @@ end

B == δ₁(A)
end
open_operators!(codiff_1)
Decapodes.open_operators!(codiff_1)
infer_types!(codiff_1)
resolve_overloads!(codiff_1)

Expand Down Expand Up @@ -418,7 +418,7 @@ end

B == δ₂(A)
end
open_operators!(codiff_2)
Decapodes.open_operators!(codiff_2)
infer_types!(codiff_2)
resolve_overloads!(codiff_2)

Expand Down Expand Up @@ -449,7 +449,7 @@ end

B == Δ₀(A)
end
open_operators!(laplace_de_rham_0)
Decapodes.open_operators!(laplace_de_rham_0)
infer_types!(laplace_de_rham_0)
resolve_overloads!(laplace_de_rham_0)

Expand Down Expand Up @@ -480,7 +480,7 @@ end

B == Δ₁(A)
end
open_operators!(laplace_de_rham_1)
Decapodes.open_operators!(laplace_de_rham_1)
infer_types!(laplace_de_rham_1)
resolve_overloads!(laplace_de_rham_1)

Expand Down Expand Up @@ -511,7 +511,7 @@ end

B == Δ₂(A)
end
open_operators!(laplace_de_rham_2)
Decapodes.open_operators!(laplace_de_rham_2)
infer_types!(laplace_de_rham_2)
resolve_overloads!(laplace_de_rham_2)

Expand Down

0 comments on commit 50ecf88

Please sign in to comment.