| ceed-impl.h (72e72e0ec0f1356c4a8e31ae3520f998ca726cd1) | ceed-impl.h (a844dea220796cbbc78a50dfd25b11acf19c6e9c) |
|---|---|
| 1// Copyright (c) 2017-2022, Lawrence Livermore National Security, LLC and other CEED contributors. 2// All Rights Reserved. See the top-level LICENSE and NOTICE files for details. 3// 4// SPDX-License-Identifier: BSD-2-Clause 5// 6// This file is part of CEED: http://github.com/ceed 7 8/// @file 9/// Private header for frontend components of libCEED | 1// Copyright (c) 2017-2022, Lawrence Livermore National Security, LLC and other CEED contributors. 2// All Rights Reserved. See the top-level LICENSE and NOTICE files for details. 3// 4// SPDX-License-Identifier: BSD-2-Clause 5// 6// This file is part of CEED: http://github.com/ceed 7 8/// @file 9/// Private header for frontend components of libCEED |
| 10#ifndef CEED_IMPL_H 11#define CEED_IMPL_H | 10#pragma once |
| 12 13#include <ceed.h> 14#include <ceed/backend.h> 15#include <stdbool.h> 16 17CEED_INTERN const char *CeedJitSourceRootDefault; 18 19/** @defgroup CeedUser Public API for Ceed --- 351 unchanged lines hidden (view full) --- 371 CeedInt num_suboperators; 372 void *data; 373 CeedInt num_context_labels; 374 CeedInt max_context_labels; 375 CeedContextFieldLabel *context_labels; 376 CeedElemRestriction rstr_points, first_points_rstr; 377 CeedVector point_coords; 378}; | 11 12#include <ceed.h> 13#include <ceed/backend.h> 14#include <stdbool.h> 15 16CEED_INTERN const char *CeedJitSourceRootDefault; 17 18/** @defgroup CeedUser Public API for Ceed --- 351 unchanged lines hidden (view full) --- 370 CeedInt num_suboperators; 371 void *data; 372 CeedInt num_context_labels; 373 CeedInt max_context_labels; 374 CeedContextFieldLabel *context_labels; 375 CeedElemRestriction rstr_points, first_points_rstr; 376 CeedVector point_coords; 377}; |
| 379 380#endif // CEED_IMPL_H | |