| ceed_constants.py (4092d0ee9dee1dc94927b92ec4a4f5b5b7bb02dc) | ceed_constants.py (56d8cfc241e0df885b47de7ad2d12edb4b8ae247) |
|---|---|
| 1# Copyright (c) 2017, Lawrence Livermore National Security, LLC. Produced at 2# the Lawrence Livermore National Laboratory. LLNL-CODE-734707. All Rights 3# reserved. See files LICENSE and NOTICE for details. 4# 5# This file is part of CEED, a collection of benchmarks, miniapps, software 6# libraries and APIs for efficient high-order finite element and spectral 7# element discretizations for exascale applications. For more information and 8# source code availability see http://github.com/ceed. --- 95 unchanged lines hidden (view full) --- 104 105 def __init__(self, constant): 106 self._pointer = [constant] 107 108# Vectors 109VECTOR_ACTIVE = _CeedConstantObject(lib.CEED_VECTOR_ACTIVE) 110VECTOR_NONE = _CeedConstantObject(lib.CEED_VECTOR_NONE) 111 | 1# Copyright (c) 2017, Lawrence Livermore National Security, LLC. Produced at 2# the Lawrence Livermore National Laboratory. LLNL-CODE-734707. All Rights 3# reserved. See files LICENSE and NOTICE for details. 4# 5# This file is part of CEED, a collection of benchmarks, miniapps, software 6# libraries and APIs for efficient high-order finite element and spectral 7# element discretizations for exascale applications. For more information and 8# source code availability see http://github.com/ceed. --- 95 unchanged lines hidden (view full) --- 104 105 def __init__(self, constant): 106 self._pointer = [constant] 107 108# Vectors 109VECTOR_ACTIVE = _CeedConstantObject(lib.CEED_VECTOR_ACTIVE) 110VECTOR_NONE = _CeedConstantObject(lib.CEED_VECTOR_NONE) 111 |
| 112# ElemRestriction 113ELEMRESTRICTION_NONE = _CeedConstantObject(lib.CEED_ELEMRESTRICTION_NONE) 114 |
|
| 112# Basis 113BASIS_COLLOCATED = _CeedConstantObject(lib.CEED_BASIS_COLLOCATED) 114 115# ------------------------------------------------------------------------------ | 115# Basis 116BASIS_COLLOCATED = _CeedConstantObject(lib.CEED_BASIS_COLLOCATED) 117 118# ------------------------------------------------------------------------------ |