3
3
import math
4
4
from typing import Any
5
5
6
+ from pytest import approx , raises
7
+
6
8
from protosym .core .exceptions import BadRuleError
7
9
from protosym .core .sym import (
8
10
AtomFunc ,
20
22
star ,
21
23
)
22
24
from protosym .core .tree import Tree
23
- from pytest import approx , raises
24
25
25
26
26
27
class Expr (Sym ):
@@ -41,17 +42,19 @@ def __call__(self, *args: Expr) -> Expr:
41
42
return Expr (self .rep (* args_rep ))
42
43
43
44
44
- def _make_atoms () -> tuple [
45
- SymAtomType [Expr , int ],
46
- SymAtomType [Expr , str ],
47
- Expr ,
48
- Expr ,
49
- Expr ,
50
- Expr ,
51
- Expr ,
52
- Expr ,
53
- Expr ,
54
- ]:
45
+ def _make_atoms () -> (
46
+ tuple [
47
+ SymAtomType [Expr , int ],
48
+ SymAtomType [Expr , str ],
49
+ Expr ,
50
+ Expr ,
51
+ Expr ,
52
+ Expr ,
53
+ Expr ,
54
+ Expr ,
55
+ Expr ,
56
+ ]
57
+ ):
55
58
"""Set up a Sym subclass and create some atoms etc."""
56
59
Integer = Expr .new_atom ("Integer" , int )
57
60
Function = Expr .new_atom ("Function" , str )
@@ -105,15 +108,15 @@ def test_Sym_types() -> None:
105
108
assert type (cos ) is Expr
106
109
assert type (Add ) is Expr
107
110
assert type (cos .rep ) is Tree
108
- assert type (a ) == type (b ) == Expr
111
+ assert type (a ) is type (b ) is Expr
109
112
110
113
111
114
def test_Sym_evaluator () -> None :
112
115
"""Test creating a str-evaluator for Sym."""
113
116
Integer , Function , cos , sin , Add , one , a , b , x = _make_atoms ()
114
117
115
118
to_str = Expr .new_evaluator ("to_str" , str )
116
- assert type (to_str ) == SymEvaluator
119
+ assert type (to_str ) is SymEvaluator
117
120
assert repr (to_str ) == repr (to_str ) == "to_str"
118
121
119
122
to_str [Integer [a ]] = PyFunc1 [int , str ](str )(a )
0 commit comments