Replies: 1 comment
-
I am all in favor of this. It's more abstract but shorter and more maintainable. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Currently, we have a lot of the following data members in
FINUFFT_PLAN_T
:This gives explicit names to variables referring dimensions 1, 2, 3. I suggest to combine the dimensions in the following way:
The reason is not (only) that this is more compact, but also because it enables many simplifications in the program code.
For example, this current snippet of
setpts
could become something like
There are quite a few locations where this kind of shortening is possible.
Beta Was this translation helpful? Give feedback.
All reactions