From 89c438e149a91fffa74b2669f7e0cd05abc3420f Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Thu, 20 Apr 2023 14:06:43 +0100 Subject: Declare all dsfs as a dedicated type name 'DSF'. In this commit, 'DSF' is simply a typedef for 'int', so that the new declaration form 'DSF *' translates to the same type 'int *' that dsfs have always had. So all we're doing here is mechanically changing type declarations throughout the code. --- unfinished/separate.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'unfinished/separate.c') diff --git a/unfinished/separate.c b/unfinished/separate.c index b064f18..fdee409 100644 --- a/unfinished/separate.c +++ b/unfinished/separate.c @@ -189,7 +189,7 @@ struct solver_scratch { /* * Tracks connectedness between squares. */ - int *dsf; + DSF *dsf; /* * size[dsf_canonify(dsf, yx)] tracks the size of the @@ -514,7 +514,7 @@ static unsigned char *generate(int w, int h, int k, random_state *rs) gen_lock = snewn(wh, bool); do { - int *dsf = divvy_rectangle(w, h, k, rs); + DSF *dsf = divvy_rectangle(w, h, k, rs); /* * Go through the dsf and find the indices of all the -- cgit v1.1