aboutsummaryrefslogtreecommitdiff
path: root/basis.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2021-10-10 15:02:07 +0200
committerAnton Khirnov <anton@khirnov.net>2023-01-19 15:48:59 +0100
commitb4b4d96fc71299f8d10ec49a96f4bd3749f58543 (patch)
treebf645d8cf258dfaff159da7fa9e1d9e9f5718555 /basis.c
parent1af479757c3874330348432aeb91100ae0575064 (diff)
Diffstat (limited to 'basis.c')
-rw-r--r--basis.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/basis.c b/basis.c
index 743cb04..89437c6 100644
--- a/basis.c
+++ b/basis.c
@@ -86,6 +86,7 @@ static double sb_even_colloc_point(const BasisSetContext *s, unsigned int order,
//t = (idx + 2) * M_PI / (order + 4);
#if TD_POLAR
t = (idx + 2) * M_PI / (2 * order + 3);
+ //t = (2 * idx + 1) * M_PI / (4 * order + 2);
#else
t = (idx + 2) * M_PI / (2 * order + 2);
#endif