fix: pass **x instead

This is because when I pass *x then it's just a copy.
This commit is contained in:
2025-11-11 02:01:26 -05:00
parent 544dac3184
commit 0221a0aa25
2 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -1,2 +1,2 @@
double chi(double b);
int init(double bmax, double rela_err_limit, int *size, double *x, double *y);
int init(double bmax, double rela_err_limit, int *size, double **x, double **y);