| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
| |
In other words from_any((1, x, y)) with x and y of any type in
FromSupportedTypes (not necessarily the same) works.
|
| |
|
|
|
|
| |
Caused by commit 1e86d0946280b05e7ee41bb772041e234ec6d8e7
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
Variables are now expression that have a shape and contain a symbol.
The symbol in its own is not a variable, as the shape is unknown, but
this information can is stored in the state object. So it is possible
to reconstruct a variable by doing
init_variable_expr(sym, state.get_shape(sym))
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
poly.give_name
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
Again, for pretty printing it is annyong to see that -2 * x becomes
x * (-2)
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
Does this, combined with ShapeExpr make ParametrieExpr obsolete?
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|