-
Notifications
You must be signed in to change notification settings - Fork 192
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[WIP] AIR example #933
base: master
Are you sure you want to change the base?
[WIP] AIR example #933
Conversation
thanks @victorapm for continuing this |
double final_res_norm; | ||
int interp_type = 100; /* 1-pt Interp */ | ||
int ns_coarse = 1, ns_down = 0, ns_up = 1; | ||
int **grid_relax_points = NULL; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can't int
and HYPRE_Int
differ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
They can and I see your point (the APIs expect HYPRE_Int
, so it's more correct to use it). But for the examples, the idea is to make them as simple as possible and use standard C types. The team might re-evaluate that...
Extended from #932