@@ -16,7 +16,7 @@ Construct a linear functional restriction for a finite element unknown from a gi
1616
1717"""
1818function LinearFunctionalRestriction (u:: Unknown , O:: LinearOperator{Tv} ; value:: T = 0 ) where {Tv, T}
19- return LinearFunctionalRestriction {T, Tv} (value, O, Dict {Symbol, Any} (:name => " LinearFunctionalRestriction" , unknown => u))
19+ return LinearFunctionalRestriction {T, Tv} (value, O, Dict {Symbol, Any} (:name => " LinearFunctionalRestriction" , : unknown => u))
2020end
2121
2222
@@ -37,7 +37,7 @@ Internally, it creates a `LinearOperator` using the provided kernel and operator
3737"""
3838function ZeroMeanValueRestriction (u:: Unknown ; kernel = ExtendableFEMBase. constant_one_kernel, operator = Identity, Tv = Float64)
3939 linear_operator = LinearOperator (kernel, [(u, operator)]; store = true , Tv)
40- return LinearFunctionalRestriction {Int64, Tv} (0 , linear_operator, Dict {Symbol, Any} (:name => " MeanValueRestriction" , unknown => u))
40+ return LinearFunctionalRestriction {Int64, Tv} (0 , linear_operator, Dict {Symbol, Any} (:name => " MeanValueRestriction" , : unknown => u))
4141end
4242
4343
@@ -59,7 +59,7 @@ Internally, it creates a `LinearOperator` using the provided kernel and operator
5959"""
6060function MassRestriction (u:: Unknown ; kernel = ExtendableFEMBase. constant_one_kernel, value:: T = 0 , operator = Identity, Tv = Float64) where {T}
6161 linear_operator = LinearOperator (kernel, [(u, operator)]; store = true , Tv)
62- return LinearFunctionalRestriction {T, Tv} (value, linear_operator, Dict {Symbol, Any} (:name => " MeanValueRestriction" , unknown => u))
62+ return LinearFunctionalRestriction {T, Tv} (value, linear_operator, Dict {Symbol, Any} (:name => " MeanValueRestriction" , : unknown => u))
6363end
6464
6565
0 commit comments