We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5a8fd6 commit 5cba81cCopy full SHA for 5cba81c
README.md
@@ -355,10 +355,10 @@ For the minimum and maximum number of angular points the code will use the follo
355
table and select the closest number with at least the desired precision:
356
357
```
358
- {6, 14, 26, 38, 50, 74, 86, 110, 146, 170,
359
- 194, 230, 266, 302, 350, 434, 590, 770, 974, 1202,
360
-1454, 1730, 2030, 2354, 2702, 3074, 3470, 3890, 4334, 4802,
361
-4934, 5294, 5810}
+{6, 14, 26, 38, 50, 74, 86, 110, 146,
+ 170, 194, 230, 266, 302, 350, 434, 590, 770,
+ 974, 1202, 1454, 1730, 2030, 2354, 2702, 3074, 3470,
+ 3890, 4334, 4802, 5294, 5810}
362
363
364
Taking the same number for the minimum and maximum number of angular points
src/Grid.cpp
@@ -53,7 +53,7 @@ void Grid::nullify()
53
int lebedev_table[33] = {6, 14, 26, 38, 50, 74, 86, 110, 146,
54
170, 194, 230, 266, 302, 350, 434, 590, 770,
55
974, 1202, 1454, 1730, 2030, 2354, 2702, 3074, 3470,
56
- 3890, 4334, 4802, 4934, 5294, 5810};
+ 3890, 4334, 4802, 5294, 5810};
57
58
int Grid::get_closest_num_angular(int n) const
59
{
0 commit comments