proof-of-portfolio 0.0.90__py3-none-any.whl → 0.0.91__py3-none-any.whl

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.
@@ -1,2 +1,2 @@
1
1
  # This file is auto-generated during build
2
- __version__ = "0.0.90"
2
+ __version__ = "0.0.91"
@@ -51,7 +51,8 @@ pub fn omega(
51
51
  } else {
52
52
  OMEGA_LOSS_MINIMUM
53
53
  };
54
- ((positive_sum * RATIO_SCALE_FACTOR) / effective_denominator) as i64
54
+ let final_calc = ((positive_sum as u128) * (RATIO_SCALE_FACTOR as u128)) / (effective_denominator as u128);
55
+ final_calc as i64
55
56
  } else {
56
57
  let mut positive_sum: u64 = 0;
57
58
  let mut negative_sum: u64 = 0;