Searched defs:Operator (Results 1 – 5 of 5) sorted by relevance
| /libCEED/julia/LibCEED.jl/src/ |
| H A D | Operator.jl | 1 mutable struct Operator struct 2 ref::RefValue{C.CeedOperator} argument 6 sub_ops::Vector{Operator} argument 7 function Operator(ref, qf, dqf, dqfT) argument 16 destroy(op::Operator) = C.CeedOperatorDestroy(op.ref) # COV_EXCL_LINE 17 Base.getindex(op::Operator) = op.ref[] 18 Base.show(io::IO, ::MIME"text/plain", op::Operator) = ceed_show(io, op, C.CeedOperatorView) 45 function Operator(c::Ceed; qf, dqf=QFunctionNone(), dqfT=QFunctionNone(), fields) function 53 function Operator( function 82 op::Operator, [all …]
|
| /libCEED/julia/LibCEED.jl/docs/src/ |
| H A D | Operator.md | 1 # Operator chapter
|
| /libCEED/rust/libceed/src/ |
| H A D | operator.rs | 309 pub struct Operator<'a> { struct 310 op_core: OperatorCore<'a>, argument 380 impl<'a> fmt::Display for Operator<'a> { implementation 540 impl<'a> Operator<'a> { impl
|
| /libCEED/python/ |
| H A D | ceed_operator.py | 281 class Operator(_OperatorBase): class
|
| H A D | ceed.py | 618 def Operator(self, qf, dqf=None, qdfT=None): member in Ceed
|