Math
Passes¶
oqd_core.compiler.math.passes
¶
Rules¶
oqd_core.compiler.math.rules
¶
PrintMathExpr
¶
Bases: ConversionRule
This prints MathExpr
objects. Verbosity level can be given as an attribute.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
model
|
MathExpr
|
The rule only acts on |
required |
Returns:
Name | Type | Description |
---|---|---|
string |
str
|
|
Assumptions
None
Example
MathAdd(expr1 = 2, expr2 = 3) => str(2 + 3)
Source code in oqd-core/src/oqd_core/compiler/math/rules.py
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 |
|
DistributeMathExpr
¶
Bases: RewriteRule
This distributes MathExpr
objects.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
model
|
MathExpr
|
The rule only acts on |
required |
Returns:
Name | Type | Description |
---|---|---|
model |
MathExpr
|
|
Assumptions
None
Example
MathStr(string = '3 * (2 + 1)') => MathStr(string = '3 * 2 + 3 * 1')
Source code in oqd-core/src/oqd_core/compiler/math/rules.py
PartitionMathExpr
¶
Bases: RewriteRule
This separates real and complex portions of MathExpr
objects.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
model
|
MathExpr
|
The rule only acts on |
required |
Returns:
Name | Type | Description |
---|---|---|
model |
MathExpr
|
|
Assumptions
Example
- MathStr(string = '1 + 1j + 2') => MathStr(string = '1 + 2 + 1j')
- MathStr(string = '1 * 1j * 2') => MathStr(string = '1j * 1 * 2')
Source code in oqd-core/src/oqd_core/compiler/math/rules.py
ProperOrderMathExpr
¶
Bases: RewriteRule
This rearranges bracketing of MathExpr
objects.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
model
|
MathExpr
|
The rule only acts on |
required |
Returns:
Name | Type | Description |
---|---|---|
model |
MathExpr
|
|
Assumptions
Example
- MathStr(string = '2 * (3 * 5)') => MathStr(string = '(2 * 3) * 5')
Source code in oqd-core/src/oqd_core/compiler/math/rules.py
PruneMathExpr
¶
Bases: RewriteRule
This is constant fold operation where scalar addition, multiplication and power are simplified
Source code in oqd-core/src/oqd_core/compiler/math/rules.py
SimplifyMathExpr
¶
Bases: RewriteRule
This simplified MathExpr objects
Source code in oqd-core/src/oqd_core/compiler/math/rules.py
EvaluateMathExpr
¶
Bases: ConversionRule
This evalaluates MathExpr objects