svf-lib 1.0.2055 → 1.0.2057

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.
Binary file
Binary file
@@ -432,19 +432,19 @@ public:
432
432
 
433
433
  friend BoundedDouble operator^(const BoundedDouble &lhs, const BoundedDouble &rhs)
434
434
  {
435
- int lInt = std::round(rhs._fVal), rInt = std::round(rhs._fVal);
435
+ int lInt = std::round(lhs._fVal), rInt = std::round(rhs._fVal);
436
436
  return lInt ^ rInt;
437
437
  }
438
438
 
439
439
  friend BoundedDouble operator&(const BoundedDouble &lhs, const BoundedDouble &rhs)
440
440
  {
441
- int lInt = std::round(rhs._fVal), rInt = std::round(rhs._fVal);
441
+ int lInt = std::round(lhs._fVal), rInt = std::round(rhs._fVal);
442
442
  return lInt & rInt;
443
443
  }
444
444
 
445
445
  friend BoundedDouble operator|(const BoundedDouble &lhs, const BoundedDouble &rhs)
446
446
  {
447
- int lInt = std::round(rhs._fVal), rInt = std::round(rhs._fVal);
447
+ int lInt = std::round(lhs._fVal), rInt = std::round(rhs._fVal);
448
448
  return lInt | rInt;
449
449
  }
450
450
 
Binary file
@@ -432,19 +432,19 @@ public:
432
432
 
433
433
  friend BoundedDouble operator^(const BoundedDouble &lhs, const BoundedDouble &rhs)
434
434
  {
435
- int lInt = std::round(rhs._fVal), rInt = std::round(rhs._fVal);
435
+ int lInt = std::round(lhs._fVal), rInt = std::round(rhs._fVal);
436
436
  return lInt ^ rInt;
437
437
  }
438
438
 
439
439
  friend BoundedDouble operator&(const BoundedDouble &lhs, const BoundedDouble &rhs)
440
440
  {
441
- int lInt = std::round(rhs._fVal), rInt = std::round(rhs._fVal);
441
+ int lInt = std::round(lhs._fVal), rInt = std::round(rhs._fVal);
442
442
  return lInt & rInt;
443
443
  }
444
444
 
445
445
  friend BoundedDouble operator|(const BoundedDouble &lhs, const BoundedDouble &rhs)
446
446
  {
447
- int lInt = std::round(rhs._fVal), rInt = std::round(rhs._fVal);
447
+ int lInt = std::round(lhs._fVal), rInt = std::round(rhs._fVal);
448
448
  return lInt | rInt;
449
449
  }
450
450
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "svf-lib",
3
- "version": "1.0.2055",
3
+ "version": "1.0.2057",
4
4
  "description": "SVF's npm support",
5
5
  "main": "index.js",
6
6
  "scripts": {