summaryrefslogtreecommitdiff
path: root/src/measurements.hpp
diff options
context:
space:
mode:
authorJaron Kent-Dobias <jaron@kent-dobias.com>2019-01-24 19:01:18 -0500
committerJaron Kent-Dobias <jaron@kent-dobias.com>2019-01-24 19:01:18 -0500
commite3b663588a30ec4f05afe50c260982bd44a1bb2b (patch)
tree0563b21d7a25a7bb99e906abf1ad1f63afb0e335 /src/measurements.hpp
parentc83636a1b56b331cf4ea16450dcf637e6e9fae8a (diff)
downloadfuse_networks-e3b663588a30ec4f05afe50c260982bd44a1bb2b.tar.gz
fuse_networks-e3b663588a30ec4f05afe50c260982bd44a1bb2b.tar.bz2
fuse_networks-e3b663588a30ec4f05afe50c260982bd44a1bb2b.zip
style changes
Diffstat (limited to 'src/measurements.hpp')
-rw-r--r--src/measurements.hpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/measurements.hpp b/src/measurements.hpp
index aa41fd1..ba52720 100644
--- a/src/measurements.hpp
+++ b/src/measurements.hpp
@@ -25,11 +25,11 @@ class ma : public hooks {
double *fftw_reverse_out;
fftw_plan forward_plan;
fftw_plan reverse_plan;
- unsigned int N;
+ unsigned N;
double Lx;
double Ly;
- unsigned int Mx;
- unsigned int My;
+ unsigned Mx;
+ unsigned My;
double beta;
Graph G;
// std::ofstream stress_file;
@@ -57,13 +57,13 @@ class ma : public hooks {
long double lv;
- std::list<std::list<unsigned int>> avalanches;
+ std::list<std::list<unsigned>> avalanches;
- ma(double Lx, double Ly, unsigned int Mx, unsigned int My, double beta, unsigned Ncum);
+ ma(double Lx, double Ly, unsigned Mx, unsigned My, double beta, unsigned Ncum);
~ma();
void pre_fracture(const network &) override;
- void bond_broken(const network& net, const current_info& cur, unsigned int i) override;
+ void bond_broken(const network& net, const current_info& cur, unsigned i) override;
void post_fracture(network &n) override;
};