Searched defs:ElemRestriction (Results 1 – 7 of 7) sorted by relevance
| /libCEED/julia/LibCEED.jl/src/ |
| H A D | ElemRestriction.jl | 18 mutable struct ElemRestriction <: AbstractElemRestriction struct 19 ref::RefValue{C.CeedElemRestriction} argument 20 function ElemRestriction(ref) function 29 destroy(r::ElemRestriction) = C.CeedElemRestrictionDestroy(r.ref) # COV_EXCL_LINE 30 Base.getindex(r::ElemRestriction) = r.ref[] 31 Base.show(io::IO, ::MIME"text/plain", e::ElemRestriction) = 278 r::ElemRestriction, 294 function apply(r::ElemRestriction, u::AbstractVector; tmode=NOTRANSPOSE) 320 function create_evector(r::ElemRestriction) 331 function create_lvector(r::ElemRestriction) [all …]
|
| /libCEED/julia/LibCEED.jl/docs/src/ |
| H A D | ElemRestriction.md | 1 # ElemRestriction chapter
|
| /libCEED/rust/libceed/src/ |
| H A D | elem_restriction.rs | 99 pub struct ElemRestriction<'a> { struct 100 pub(crate) ptr: bind_ceed::CeedElemRestriction, argument 107 impl<'a> Drop for ElemRestriction<'a> { argument 120 impl<'a> fmt::Display for ElemRestriction<'a> { implementation 154 impl<'a> ElemRestriction<'a> { implementation
|
| H A D | operator.rs | 1711 rstr_coarse: &ElemRestriction, in create_multigrid_level() 1899 rstr_coarse: &ElemRestriction, in create_multigrid_level_tensor_H1() 2089 rstr_coarse: &ElemRestriction, in create_multigrid_level_H1()
|
| /libCEED/examples/rust/mesh/src/ |
| H A D | lib.rs | 51 ) -> libceed::Result<(ElemRestriction, ElemRestriction)> { argument
|
| /libCEED/python/ |
| H A D | ceed_elemrestriction.py | 172 class ElemRestriction(_ElemRestrictionBase): class
|
| H A D | ceed.py | 196 def ElemRestriction(self, nelem, elemsize, ncomp, compstride, lsize, offsets, member in Ceed
|