61
61
Any ,
62
62
Iterable ,
63
63
Sequence ,
64
- TypeGuard ,
65
64
TypeVar ,
66
65
Self ,
67
66
Union ,
@@ -464,7 +463,7 @@ def py_value(self):
464
463
return None
465
464
466
465
467
- def is_ast (a : Any ) -> TypeGuard [ AstRef ] :
466
+ def is_ast (a : Any ) -> bool :
468
467
"""Return `True` if `a` is an AST node.
469
468
470
469
>>> is_ast(10)
@@ -660,7 +659,7 @@ def __hash__(self):
660
659
return AstRef .__hash__ (self )
661
660
662
661
663
- def is_sort (s : Any ) -> TypeGuard [ SortRef ] :
662
+ def is_sort (s : Any ) -> bool :
664
663
"""Return `True` if `s` is a Z3 sort.
665
664
666
665
>>> is_sort(IntSort())
@@ -1641,7 +1640,7 @@ def py_value(self):
1641
1640
1642
1641
1643
1642
1644
- def is_bool (a : Any ) -> TypeGuard [ BoolRef ] :
1643
+ def is_bool (a : Any ) -> bool :
1645
1644
"""Return `True` if `a` is a Z3 Boolean expression.
1646
1645
1647
1646
>>> p = Bool('p')
@@ -1659,7 +1658,7 @@ def is_bool(a : Any) -> TypeGuard[BoolRef]:
1659
1658
return isinstance (a , BoolRef )
1660
1659
1661
1660
1662
- def is_true (a : Any ) -> TypeGuard [ BoolRef ] :
1661
+ def is_true (a : Any ) -> bool :
1663
1662
"""Return `True` if `a` is the Z3 true expression.
1664
1663
1665
1664
>>> p = Bool('p')
@@ -1677,7 +1676,7 @@ def is_true(a : Any) -> TypeGuard[BoolRef]:
1677
1676
return is_app_of (a , Z3_OP_TRUE )
1678
1677
1679
1678
1680
- def is_false (a : Any ) -> TypeGuard [ BoolRef ] :
1679
+ def is_false (a : Any ) -> bool :
1681
1680
"""Return `True` if `a` is the Z3 false expression.
1682
1681
1683
1682
>>> p = Bool('p')
@@ -1691,7 +1690,7 @@ def is_false(a : Any) -> TypeGuard[BoolRef]:
1691
1690
return is_app_of (a , Z3_OP_FALSE )
1692
1691
1693
1692
1694
- def is_and (a : Any ) -> TypeGuard [ BoolRef ] :
1693
+ def is_and (a : Any ) -> bool :
1695
1694
"""Return `True` if `a` is a Z3 and expression.
1696
1695
1697
1696
>>> p, q = Bools('p q')
@@ -1703,7 +1702,7 @@ def is_and(a : Any) -> TypeGuard[BoolRef]:
1703
1702
return is_app_of (a , Z3_OP_AND )
1704
1703
1705
1704
1706
- def is_or (a : Any ) -> TypeGuard [ BoolRef ] :
1705
+ def is_or (a : Any ) -> bool :
1707
1706
"""Return `True` if `a` is a Z3 or expression.
1708
1707
1709
1708
>>> p, q = Bools('p q')
@@ -1715,7 +1714,7 @@ def is_or(a : Any) -> TypeGuard[BoolRef]:
1715
1714
return is_app_of (a , Z3_OP_OR )
1716
1715
1717
1716
1718
- def is_implies (a : Any ) -> TypeGuard [ BoolRef ] :
1717
+ def is_implies (a : Any ) -> bool :
1719
1718
"""Return `True` if `a` is a Z3 implication expression.
1720
1719
1721
1720
>>> p, q = Bools('p q')
@@ -1727,7 +1726,7 @@ def is_implies(a : Any) -> TypeGuard[BoolRef]:
1727
1726
return is_app_of (a , Z3_OP_IMPLIES )
1728
1727
1729
1728
1730
- def is_not (a : Any ) -> TypeGuard [ BoolRef ] :
1729
+ def is_not (a : Any ) -> bool :
1731
1730
"""Return `True` if `a` is a Z3 not expression.
1732
1731
1733
1732
>>> p = Bool('p')
@@ -1739,7 +1738,7 @@ def is_not(a : Any) -> TypeGuard[BoolRef]:
1739
1738
return is_app_of (a , Z3_OP_NOT )
1740
1739
1741
1740
1742
- def is_eq (a : Any ) -> TypeGuard [ BoolRef ] :
1741
+ def is_eq (a : Any ) -> bool :
1743
1742
"""Return `True` if `a` is a Z3 equality expression.
1744
1743
1745
1744
>>> x, y = Ints('x y')
@@ -1749,7 +1748,7 @@ def is_eq(a : Any) -> TypeGuard[BoolRef]:
1749
1748
return is_app_of (a , Z3_OP_EQ )
1750
1749
1751
1750
1752
- def is_distinct (a : Any ) -> TypeGuard [ BoolRef ] :
1751
+ def is_distinct (a : Any ) -> bool :
1753
1752
"""Return `True` if `a` is a Z3 distinct expression.
1754
1753
1755
1754
>>> x, y, z = Ints('x y z')
@@ -2444,7 +2443,7 @@ def cast(self, val):
2444
2443
_z3_assert (False , msg % self )
2445
2444
2446
2445
2447
- def is_arith_sort (s : Any ) -> TypeGuard [ ArithSortRef ] :
2446
+ def is_arith_sort (s : Any ) -> bool :
2448
2447
"""Return `True` if s is an arithmetical sort (type).
2449
2448
2450
2449
>>> is_arith_sort(IntSort())
@@ -2766,7 +2765,7 @@ def is_arith(a):
2766
2765
return isinstance (a , ArithRef )
2767
2766
2768
2767
2769
- def is_int (a ) -> TypeGuard [ ArithRef ] :
2768
+ def is_int (a ) -> bool :
2770
2769
"""Return `True` if `a` is an integer expression.
2771
2770
2772
2771
>>> x = Int('x')
@@ -2872,7 +2871,7 @@ def is_algebraic_value(a):
2872
2871
return is_arith (a ) and a .is_real () and _is_algebraic (a .ctx , a .as_ast ())
2873
2872
2874
2873
2875
- def is_add (a : Any ) -> TypeGuard [ ArithRef ] :
2874
+ def is_add (a : Any ) -> bool :
2876
2875
"""Return `True` if `a` is an expression of the form b + c.
2877
2876
2878
2877
>>> x, y = Ints('x y')
@@ -2884,7 +2883,7 @@ def is_add(a : Any) -> TypeGuard[ArithRef]:
2884
2883
return is_app_of (a , Z3_OP_ADD )
2885
2884
2886
2885
2887
- def is_mul (a : Any ) -> TypeGuard [ ArithRef ] :
2886
+ def is_mul (a : Any ) -> bool :
2888
2887
"""Return `True` if `a` is an expression of the form b * c.
2889
2888
2890
2889
>>> x, y = Ints('x y')
@@ -2896,7 +2895,7 @@ def is_mul(a : Any) -> TypeGuard[ArithRef]:
2896
2895
return is_app_of (a , Z3_OP_MUL )
2897
2896
2898
2897
2899
- def is_sub (a : Any ) -> TypeGuard [ ArithRef ] :
2898
+ def is_sub (a : Any ) -> bool :
2900
2899
"""Return `True` if `a` is an expression of the form b - c.
2901
2900
2902
2901
>>> x, y = Ints('x y')
@@ -2908,7 +2907,7 @@ def is_sub(a : Any) -> TypeGuard[ArithRef]:
2908
2907
return is_app_of (a , Z3_OP_SUB )
2909
2908
2910
2909
2911
- def is_div (a : Any ) -> TypeGuard [ ArithRef ] :
2910
+ def is_div (a : Any ) -> bool :
2912
2911
"""Return `True` if `a` is an expression of the form b / c.
2913
2912
2914
2913
>>> x, y = Reals('x y')
@@ -2925,7 +2924,7 @@ def is_div(a : Any) -> TypeGuard[ArithRef]:
2925
2924
return is_app_of (a , Z3_OP_DIV )
2926
2925
2927
2926
2928
- def is_idiv (a : Any ) -> TypeGuard [ ArithRef ] :
2927
+ def is_idiv (a : Any ) -> bool :
2929
2928
"""Return `True` if `a` is an expression of the form b div c.
2930
2929
2931
2930
>>> x, y = Ints('x y')
@@ -2937,7 +2936,7 @@ def is_idiv(a : Any) -> TypeGuard[ArithRef]:
2937
2936
return is_app_of (a , Z3_OP_IDIV )
2938
2937
2939
2938
2940
- def is_mod (a : Any ) -> TypeGuard [ ArithRef ] :
2939
+ def is_mod (a : Any ) -> bool :
2941
2940
"""Return `True` if `a` is an expression of the form b % c.
2942
2941
2943
2942
>>> x, y = Ints('x y')
@@ -2949,7 +2948,7 @@ def is_mod(a : Any) -> TypeGuard[ArithRef]:
2949
2948
return is_app_of (a , Z3_OP_MOD )
2950
2949
2951
2950
2952
- def is_le (a : Any ) -> TypeGuard [ ArithRef ] :
2951
+ def is_le (a : Any ) -> bool :
2953
2952
"""Return `True` if `a` is an expression of the form b <= c.
2954
2953
2955
2954
>>> x, y = Ints('x y')
@@ -2961,7 +2960,7 @@ def is_le(a : Any) -> TypeGuard[ArithRef]:
2961
2960
return is_app_of (a , Z3_OP_LE )
2962
2961
2963
2962
2964
- def is_lt (a : Any ) -> TypeGuard [ ArithRef ] :
2963
+ def is_lt (a : Any ) -> bool :
2965
2964
"""Return `True` if `a` is an expression of the form b < c.
2966
2965
2967
2966
>>> x, y = Ints('x y')
@@ -2973,7 +2972,7 @@ def is_lt(a : Any) -> TypeGuard[ArithRef]:
2973
2972
return is_app_of (a , Z3_OP_LT )
2974
2973
2975
2974
2976
- def is_ge (a : Any ) -> TypeGuard [ ArithRef ] :
2975
+ def is_ge (a : Any ) -> bool :
2977
2976
"""Return `True` if `a` is an expression of the form b >= c.
2978
2977
2979
2978
>>> x, y = Ints('x y')
@@ -2985,7 +2984,7 @@ def is_ge(a : Any) -> TypeGuard[ArithRef]:
2985
2984
return is_app_of (a , Z3_OP_GE )
2986
2985
2987
2986
2988
- def is_gt (a : Any ) -> TypeGuard [ ArithRef ] :
2987
+ def is_gt (a : Any ) -> bool :
2989
2988
"""Return `True` if `a` is an expression of the form b > c.
2990
2989
2991
2990
>>> x, y = Ints('x y')
@@ -3009,7 +3008,7 @@ def is_is_int(a : Any) -> bool:
3009
3008
return is_app_of (a , Z3_OP_IS_INT )
3010
3009
3011
3010
3012
- def is_to_real (a : Any ) -> TypeGuard [ ArithRef ] :
3011
+ def is_to_real (a : Any ) -> bool :
3013
3012
"""Return `True` if `a` is an expression of the form ToReal(b).
3014
3013
3015
3014
>>> x = Int('x')
@@ -3024,7 +3023,7 @@ def is_to_real(a : Any) -> TypeGuard[ArithRef]:
3024
3023
return is_app_of (a , Z3_OP_TO_REAL )
3025
3024
3026
3025
3027
- def is_to_int (a : Any ) -> TypeGuard [ ArithRef ] :
3026
+ def is_to_int (a : Any ) -> bool :
3028
3027
"""Return `True` if `a` is an expression of the form ToInt(b).
3029
3028
3030
3029
>>> x = Real('x')
@@ -4700,7 +4699,7 @@ def is_array_sort(a):
4700
4699
return Z3_get_sort_kind (a .ctx .ref (), Z3_get_sort (a .ctx .ref (), a .ast )) == Z3_ARRAY_SORT
4701
4700
4702
4701
4703
- def is_array (a : Any ) -> TypeGuard [ ArrayRef ] :
4702
+ def is_array (a : Any ) -> bool :
4704
4703
"""Return `True` if `a` is a Z3 array expression.
4705
4704
4706
4705
>>> a = Array('a', IntSort(), IntSort())
@@ -11151,15 +11150,15 @@ def is_seq(a):
11151
11150
return isinstance (a , SeqRef )
11152
11151
11153
11152
11154
- def is_string (a : Any ) -> TypeGuard [ SeqRef ] :
11153
+ def is_string (a : Any ) -> bool :
11155
11154
"""Return `True` if `a` is a Z3 string expression.
11156
11155
>>> print (is_string(StringVal("ab")))
11157
11156
True
11158
11157
"""
11159
11158
return isinstance (a , SeqRef ) and a .is_string ()
11160
11159
11161
11160
11162
- def is_string_value (a : Any ) -> TypeGuard [ SeqRef ] :
11161
+ def is_string_value (a : Any ) -> bool :
11163
11162
"""return 'True' if 'a' is a Z3 string constant expression.
11164
11163
>>> print (is_string_value(StringVal("a")))
11165
11164
True
0 commit comments