Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Derive per county patch library #10

Merged
merged 10 commits into from
Jun 25, 2020
Prev Previous commit
Next Next commit
fix whitespace
  • Loading branch information
petrasovaa committed May 20, 2020
commit 306b05e560279156fef036843254570ae48e7768
4 changes: 2 additions & 2 deletions r.futures/r.futures.pga/inputs.c
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ void read_patch_sizes(struct PatchSizes *patch_info, double discount_factor)
for ( int i = 0; i < s; i++) {
// increment the count of the patches for that area
if (strcmp(tokens[i], "") != 0 ) {
patch_info->patch_count[i]++;
patch_info->patch_count[i]++;
}
}
}
Expand Down Expand Up @@ -472,7 +472,7 @@ void read_patch_sizes(struct PatchSizes *patch_info, double discount_factor)
}
}
line++;
}
}
}
}
free(size_buffer);
Expand Down