@@ -86,15 +86,15 @@ extern "C"
86
86
/// For integrals not on interior facets, this argument has no effect and a
87
87
/// null pointer can be passed. For interior facets the array will have size 2
88
88
/// (one permutation for each cell adjacent to the facet).
89
- /// @param[in] user_data Custom user data passed to the tabulate function.
89
+ /// @param[in] custom_data Custom user data passed to the tabulate function.
90
90
/// For example, a struct with additional data needed for the tabulate function.
91
91
/// See the implementation of runtime integrals for further details.
92
92
typedef void (ufcx_tabulate_tensor_float32 )(
93
93
float * restrict A , const float * restrict w , const float * restrict c ,
94
94
const float * restrict coordinate_dofs ,
95
95
const int * restrict entity_local_index ,
96
96
const uint8_t * restrict quadrature_permutation ,
97
- void * user_data );
97
+ void * custom_data );
98
98
99
99
/// Tabulate integral into tensor A with compiled
100
100
/// quadrature rule and double precision
@@ -105,7 +105,7 @@ extern "C"
105
105
const double * restrict coordinate_dofs ,
106
106
const int * restrict entity_local_index ,
107
107
const uint8_t * restrict quadrature_permutation ,
108
- void * user_data );
108
+ void * custom_data );
109
109
110
110
#ifndef __STDC_NO_COMPLEX__
111
111
/// Tabulate integral into tensor A with compiled
@@ -117,7 +117,7 @@ extern "C"
117
117
const float _Complex * restrict c , const float * restrict coordinate_dofs ,
118
118
const int * restrict entity_local_index ,
119
119
const uint8_t * restrict quadrature_permutation ,
120
- void * user_data );
120
+ void * custom_data );
121
121
#endif // __STDC_NO_COMPLEX__
122
122
123
123
#ifndef __STDC_NO_COMPLEX__
@@ -130,7 +130,7 @@ extern "C"
130
130
const double _Complex * restrict c , const double * restrict coordinate_dofs ,
131
131
const int * restrict entity_local_index ,
132
132
const uint8_t * restrict quadrature_permutation ,
133
- void * user_data );
133
+ void * custom_data );
134
134
#endif // __STDC_NO_COMPLEX__
135
135
136
136
typedef struct ufcx_integral
0 commit comments