| tRemove extra newlines - werner - cellular automata simulation of wind-driven s… | |
| git clone git://src.adamsgaard.dk/werner | |
| Log | |
| Files | |
| Refs | |
| LICENSE | |
| --- | |
| commit 86e595d2ead5676cd78ee73a3b77c4f44930ca2c | |
| parent 22bf595b04d71db5a6a301146a1c977f750e2215 | |
| Author: Anders Damsgaard <[email protected]> | |
| Date: Mon, 6 Jan 2020 11:38:25 +0100 | |
| Remove extra newlines | |
| Diffstat: | |
| M initrnd.c | 2 -- | |
| M iterate.c | 1 - | |
| M werner.c | 2 -- | |
| 3 files changed, 0 insertions(+), 5 deletions(-) | |
| --- | |
| diff --git a/initrnd.c b/initrnd.c | |
| t@@ -7,10 +7,8 @@ | |
| #include "wernerparams.h" | |
| #include "werner.h" | |
| - | |
| int main(int argc, char** argv) | |
| { | |
| - | |
| // Allocate matrix Z: number of sand slabs | |
| gsl_matrix* Z = gsl_matrix_alloc(rows, cols); | |
| diff --git a/iterate.c b/iterate.c | |
| t@@ -7,7 +7,6 @@ | |
| #include "wernerparams.h" | |
| #include "werner.h" | |
| - | |
| int main(int argc, char** argv) | |
| { | |
| // check if the user specified the number of times to iterate | |
| diff --git a/werner.c b/werner.c | |
| t@@ -166,10 +166,8 @@ void find_max_slope_neighbor_depo( | |
| *col_max = j; | |
| } | |
| } | |
| - | |
| } | |
| - | |
| // Check and perform avalanche into cell if slope exceeds limit | |
| void avalanche_erosion( | |
| gsl_matrix* Z, // sand slab values |