aboutsummaryrefslogtreecommitdiff
path: root/basis.c
diff options
context:
space:
mode:
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