| ceed-impl.h (8b919e6b544da496037dee7de9325ce15d8e67f1) | ceed-impl.h (beecbf24d1afba41e856b0aa9f999ecb1ad5fea6) |
|---|---|
| 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. --- 320 unchanged lines hidden (view full) --- 329 CEED_VECTOR_NONE for no vector */ 330 const char *field_name; /* matching QFunction field name */ 331}; 332 333struct CeedQFunctionAssemblyData_private { 334 Ceed ceed; 335 int ref_count; 336 bool is_setup; | 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. --- 320 unchanged lines hidden (view full) --- 329 CEED_VECTOR_NONE for no vector */ 330 const char *field_name; /* matching QFunction field name */ 331}; 332 333struct CeedQFunctionAssemblyData_private { 334 Ceed ceed; 335 int ref_count; 336 bool is_setup; |
| 337 bool is_update_flag_used; 338 bool is_update_needed; | 337 bool reuse_data; 338 bool needs_data_update; |
| 339 CeedVector vec; 340 CeedElemRestriction rstr; 341}; 342 343struct CeedOperator_private { 344 Ceed ceed; 345 CeedOperator op_fallback; 346 CeedQFunction qf_fallback; --- 45 unchanged lines hidden --- | 339 CeedVector vec; 340 CeedElemRestriction rstr; 341}; 342 343struct CeedOperator_private { 344 Ceed ceed; 345 CeedOperator op_fallback; 346 CeedQFunction qf_fallback; --- 45 unchanged lines hidden --- |