File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -1746,6 +1746,16 @@ class sva_sequence_throughout_exprt : public binary_exprt
1746
1746
: binary_exprt(std::move(op0), ID_sva_sequence_throughout, std::move(op1))
1747
1747
{
1748
1748
}
1749
+
1750
+ const exprt &sequence () const
1751
+ {
1752
+ return op1 ();
1753
+ }
1754
+
1755
+ exprt &sequence ()
1756
+ {
1757
+ return op1 ();
1758
+ }
1749
1759
};
1750
1760
1751
1761
static inline const sva_sequence_throughout_exprt &
@@ -1780,6 +1790,16 @@ class sva_sequence_first_match_exprt : public binary_exprt
1780
1790
std::move(action))
1781
1791
{
1782
1792
}
1793
+
1794
+ const exprt &sequence () const
1795
+ {
1796
+ return op0 ();
1797
+ }
1798
+
1799
+ exprt &sequence ()
1800
+ {
1801
+ return op0 ();
1802
+ }
1783
1803
};
1784
1804
1785
1805
static inline const sva_sequence_first_match_exprt &
You can’t perform that action at this time.
0 commit comments