Home
last modified time | relevance | path

Searched defs:Operator (Results 1 – 5 of 5) sorted by relevance

/libCEED/julia/LibCEED.jl/src/
H A DOperator.jl1 mutable struct Operator struct
2 ref::RefValue{C.CeedOperator} argument
6 sub_ops::Vector{Operator} argument
7 function Operator(ref, qf, dqf, dqfT) function
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 DOperator.md1 # Operator chapter
/libCEED/rust/libceed/src/
H A Doperator.rs309 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> { implementation
/libCEED/python/
H A Dceed_operator.py281 class Operator(_OperatorBase): class
H A Dceed.py618 def Operator(self, qf, dqf=None, qdfT=None): member in Ceed