Skip to content

Commit 5cba81c

Browse files
committed
update table of supported Lebedev orders; fixes #20
1 parent c5a8fd6 commit 5cba81c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -355,10 +355,10 @@ For the minimum and maximum number of angular points the code will use the follo
355355
table and select the closest number with at least the desired precision:
356356

357357
```
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}
358+
{6, 14, 26, 38, 50, 74, 86, 110, 146,
359+
170, 194, 230, 266, 302, 350, 434, 590, 770,
360+
974, 1202, 1454, 1730, 2030, 2354, 2702, 3074, 3470,
361+
3890, 4334, 4802, 5294, 5810}
362362
```
363363

364364
Taking the same number for the minimum and maximum number of angular points

src/Grid.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ void Grid::nullify()
5353
int lebedev_table[33] = {6, 14, 26, 38, 50, 74, 86, 110, 146,
5454
170, 194, 230, 266, 302, 350, 434, 590, 770,
5555
974, 1202, 1454, 1730, 2030, 2354, 2702, 3074, 3470,
56-
3890, 4334, 4802, 4934, 5294, 5810};
56+
3890, 4334, 4802, 5294, 5810};
5757

5858
int Grid::get_closest_num_angular(int n) const
5959
{

0 commit comments

Comments
 (0)