Rename read_u/write_u to read_vec/write_vec

This commit is contained in:
2023-04-24 12:12:20 -04:00
parent 23e61c143a
commit 2b1b66f8f1
4 changed files with 35 additions and 35 deletions

View File

@@ -71,7 +71,7 @@ int uk(
}
// save final entry to savefile
write_u_bin(u, K1, K2, savefile);
write_vec_bin(u, K1, K2, savefile);
ns_free_tmps(u, tmp1, tmp2, tmp3, fft1, fft2, ifft);
return(0);
@@ -188,9 +188,9 @@ int eea(
// save final entry to savefile
if(savefile==stderr || savefile==stdout){
write_u(u, K1, K2, savefile);
write_vec(u, K1, K2, savefile);
} else {
write_u_bin(u, K1, K2, savefile);
write_vec_bin(u, K1, K2, savefile);
}
ns_free_tmps(u, tmp1, tmp2, tmp3, fft1, fft2, ifft);
@@ -233,7 +233,7 @@ int quiet(
}
// save final entry to savefile
write_u(u, K1, K2, savefile);
write_vec(u, K1, K2, savefile);
ns_free_tmps(u, tmp1, tmp2, tmp3, fft1, fft2, ifft);
return(0);