tarf_monte_carlo 2.3.7 → 2.3.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/ext/tarf_monte_carlo/tarf_monte_carlo.c +1 -1
- data/lib/tarf_monte_carlo/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7e7fdc1214db4216d6a17bac9f30ae54b7ddc220a07203c70e618f16310528b0
|
|
4
|
+
data.tar.gz: 70bd1b80810315434d82b16ac6a7ac234b708dd3dbbfea136d499222a1b584f5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2b93b9e151ea91bc5c89d8eb908e6332664333df3379010433e3b95d29da3efeee3aacadf43d8c0b36b8ca1c91ea1a21e4232d4473d6597a9a413a7d53e2ae57
|
|
7
|
+
data.tar.gz: c1cd6399185706860bd6efc1fc025a7b191672015dbe1504339e6456e0385a27a7d2808352cdbc3b9ae441c7c8b6cc86779f64aeda94c98eee608c03d62c7ee4
|
|
@@ -180,7 +180,6 @@ VALUE method_run_monte_carlo( VALUE self, VALUE args ) {
|
|
|
180
180
|
// Store spot and spot dash
|
|
181
181
|
//
|
|
182
182
|
if( (sim_count + 2) % INTERVAL == 0 ) {
|
|
183
|
-
rb_p(rb_str_new2("True condition"));
|
|
184
183
|
metrics[ point_pos ][ leg ] = Spot;
|
|
185
184
|
metrics[ point_pos + 2 ][ leg ] = Spot_dash;
|
|
186
185
|
}
|
|
@@ -321,6 +320,7 @@ VALUE method_run_monte_carlo( VALUE self, VALUE args ) {
|
|
|
321
320
|
// increment metric storing point by 4
|
|
322
321
|
//
|
|
323
322
|
if( (sim_count + 2) % INTERVAL == 0 ) {
|
|
323
|
+
rb_p(rb_str_new2("True condition"));
|
|
324
324
|
point_pos += 4;
|
|
325
325
|
}
|
|
326
326
|
}
|