From 2b1b66f8f123beb6bec68db251d61d9f291efee1 Mon Sep 17 00:00:00 2001 From: Ian Jauslin Date: Mon, 24 Apr 2023 12:12:20 -0400 Subject: Rename read_u/write_u to read_vec/write_vec --- src/init.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/init.c') diff --git a/src/init.c b/src/init.c index e4b6065..cce97d2 100644 --- a/src/init.c +++ b/src/init.c @@ -89,7 +89,7 @@ int init_file_txt ( int K2, FILE* initfile ){ - read_u(u0, K1, K2, initfile); + read_vec(u0, K1, K2, initfile); return 0; } // binary input @@ -99,6 +99,6 @@ int init_file_bin ( int K2, FILE* initfile ){ - read_u_bin(u0, K1, K2, initfile); + read_vec_bin(u0, K1, K2, initfile); return 0; } -- cgit v1.2.3-54-g00ecf