From 544dac318478fb3e8e85158f5d56a22b317971a2 Mon Sep 17 00:00:00 2001 From: Yingjie Wang Date: Mon, 10 Nov 2025 17:20:02 -0500 Subject: [PATCH] fix: about init.h --- src/init.c | 1 + src/init.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/init.c b/src/init.c index 7a7426f..bfdfd90 100644 --- a/src/init.c +++ b/src/init.c @@ -3,6 +3,7 @@ #include #include #include "common.h" +#include "init.h" #define MAX_DEPTH 15 diff --git a/src/init.h b/src/init.h index d59e39e..6863160 100644 --- a/src/init.h +++ b/src/init.h @@ -1,2 +1,2 @@ double chi(double b); -int init(double bmax, double rela_err_limit); +int init(double bmax, double rela_err_limit, int *size, double *x, double *y);