Skip to content

Commit 9d1c6d1

Browse files
committed
clang-format sources
1 parent 230d04c commit 9d1c6d1

10 files changed

+425
-335
lines changed

.clang-format

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
IndentWidth: 4
2+
AlignAfterOpenBracket: true
3+
BreakBeforeBraces: Allman
4+
BinPackParameters: false
5+
BinPackArguments: false

api/numgrid.h

+10-10
Original file line numberDiff line numberDiff line change
@@ -38,18 +38,18 @@ NUMGRID_API void free_context(context_t *context);
3838
/* generate grid and hold it in memory for the lifetime of the context */
3939
NUMGRID_API int generate_grid(context_t *context,
4040
const double radial_precision,
41-
const int min_num_angular_points,
42-
const int max_num_angular_points,
43-
const int num_centers,
41+
const int min_num_angular_points,
42+
const int max_num_angular_points,
43+
const int num_centers,
4444
const double center_coordinates[],
45-
const int center_elements[],
46-
const int num_outer_centers,
45+
const int center_elements[],
46+
const int num_outer_centers,
4747
const double outer_center_coordinates[],
48-
const int outer_center_elements[],
49-
const int num_shells,
50-
const int shell_centers[],
51-
const int shell_l_quantum_numbers[],
52-
const int shell_num_primitives[],
48+
const int outer_center_elements[],
49+
const int num_shells,
50+
const int shell_centers[],
51+
const int shell_l_quantum_numbers[],
52+
const int shell_num_primitives[],
5353
const double primitive_exponents[]);
5454

5555
/* get number of grid points */

0 commit comments

Comments
 (0)