svf-lib 1.0.2014 → 1.0.2016

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
@@ -205,14 +205,14 @@ public:
205
205
  /// Return the lower bound
206
206
  const BoundedInt &lb() const
207
207
  {
208
- assert(!this->isBottom());
208
+ assert(!this->isBottom() && "bottom interval does not have lower bound");
209
209
  return this->_lb;
210
210
  }
211
211
 
212
212
  /// Return the upper bound
213
213
  const BoundedInt &ub() const
214
214
  {
215
- assert(!this->isBottom());
215
+ assert(!this->isBottom() && "bottom interval does not have upper bound");
216
216
  return this->_ub;
217
217
  }
218
218
 
Binary file
@@ -414,6 +414,12 @@ public:
414
414
  return _head;
415
415
  }
416
416
 
417
+ /// Get all wto components in WTO cycle
418
+ const WTOComponentRefList& getWTOComponents() const
419
+ {
420
+ return _components;
421
+ }
422
+
417
423
  /// Begin iterator over the components
418
424
  Iterator begin() const
419
425
  {
@@ -579,7 +585,12 @@ public:
579
585
  }
580
586
  }
581
587
 
582
- /// Begin iterator over the components
588
+ /// Get all wto components in WTO
589
+ const WTOComponentRefList& getWTOComponents() const
590
+ {
591
+ return _components;
592
+ }
593
+
583
594
  /// Begin iterator over the components
584
595
  Iterator begin() const
585
596
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "svf-lib",
3
- "version": "1.0.2014",
3
+ "version": "1.0.2016",
4
4
  "description": "SVF's npm support",
5
5
  "main": "index.js",
6
6
  "scripts": {