Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Temporary fix for problem with slices and cachemain | Nao Pross | 2024-06-18 | 3 | -4/+32 |
| | | | | | For some reason in python version older than 3.12 slices are not hashable and so they cannot be used as dictionary keys | ||||
* | Comments | Nao Pross | 2024-06-17 | 4 | -5/+9 |
| | |||||
* | Fix bug in PolyMatrixAsAffineExpression.monomials_eval_all | Nao Pross | 2024-06-17 | 1 | -10/+4 |
| | |||||
* | Add HessianExpr | Nao Pross | 2024-06-17 | 5 | -4/+138 |
| | |||||
* | Fix bug in MonomialIndex.__lt__ | Nao Pross | 2024-06-15 | 1 | -5/+11 |
| | |||||
* | Fix bug in NegationExpr, typo in AffineExpression | Nao Pross | 2024-06-08 | 2 | -8/+8 |
| | |||||
* | Add more __str__ methods | Nao Pross | 2024-06-08 | 1 | -2/+15 |
| | |||||
* | Fix bugs in expression.from_ and expression.__init__ | Nao Pross | 2024-06-07 | 3 | -52/+21 |
| | | | | | | | Now shapes are either complete expression or complete tuples of integers adding a mix (5, e) with e being an expression was adding needless complexity everywhere, so a case like (5, e) becomes vstack(FromNumber(5), e)) and the entire shape is an expression | ||||
* | Fix bug in MaxExpr | Nao Pross | 2024-06-07 | 1 | -1/+1 |
| | |||||
* | Add more __str__ methods to expression mixins | Nao Pross | 2024-06-07 | 1 | -0/+6 |
| | |||||
* | Avoid using unpack operator in subscript for backwards compatibility | Nao Pross | 2024-06-07 | 5 | -5/+5 |
| | | | | Was introduced only in python 3.11 | ||||
* | Remove trailing \n when printing PolyMatrixImpl | Nao Pross | 2024-06-07 | 1 | -3/+3 |
| | |||||
* | Add more __str__ methods to PolyMatrix for debugging | Nao Pross | 2024-06-07 | 4 | -8/+41 |
| | |||||
* | Add more __str__ methods to Impl classes | Nao Pross | 2024-06-07 | 1 | -0/+15 |
| | |||||
* | Fix bug when working with new shapes (e, 5) where e is an expression | Nao Pross | 2024-06-07 | 2 | -7/+66 |
| | |||||
* | Fix odd behaviour of MaxExpr | Nao Pross | 2024-06-06 | 2 | -25/+82 |
| | | | | | It was not possible to do M.max().max() to get the maxim element across all rows and columns. now you can. | ||||
* | Re-add ExpressionState.get_name and fix to_sympy | Nao Pross | 2024-06-06 | 2 | -1/+21 |
| | |||||
* | Fix bug in from_name | Nao Pross | 2024-06-06 | 1 | -0/+10 |
| | |||||
* | Allow construction from mixed tuples in from_any | Nao Pross | 2024-06-06 | 1 | -12/+34 |
| | | | | | In other words from_any((1, x, y)) with x and y of any type in FromSupportedTypes (not necessarily the same) works. | ||||
* | Allow shape argument of variables to be (int, ExpressionMixin) etc. | Nao Pross | 2024-06-05 | 4 | -11/+36 |
| | |||||
* | Fix bug from renaming | Nao Pross | 2024-06-05 | 1 | -8/+2 |
| | | | | Caused by commit 1e86d0946280b05e7ee41bb772041e234ec6d8e7 | ||||
* | Fix bug in CombinationsExpr | Nao Pross | 2024-06-05 | 1 | -4/+4 |
| | |||||
* | Fix bug in arange() | Nao Pross | 2024-06-05 | 1 | -3/+5 |
| | |||||
* | Separate symbols from variables to avoid shape problems | Nao Pross | 2024-06-04 | 11 | -163/+144 |
| | | | | | | | | | 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)) | ||||
* | Introduce PolyMatrix.variables() to retrieve all variables | Nao Pross | 2024-06-02 | 1 | -1/+25 |
| | |||||
* | Create helper PolyDict.terms_of_degree(d) | Nao Pross | 2024-06-02 | 1 | -0/+6 |
| | |||||
* | Give better name to member of BroadcastPolyMatrix | Nao Pross | 2024-06-02 | 2 | -3/+4 |
| | |||||
* | Allow any iterable as argument of poly.block_diag | Nao Pross | 2024-05-28 | 1 | -3/+2 |
| | |||||
* | Rewrite BlockDiagExpr with BlockPolyMatrix | Nao Pross | 2024-05-28 | 3 | -86/+32 |
| | |||||
* | Create poly.what_is to inspect variable that have been given names with ↵ | Nao Pross | 2024-05-27 | 2 | -1/+22 |
| | | | | poly.give_name | ||||
* | Fix bug with shapes | Nao Pross | 2024-05-27 | 2 | -6/+10 |
| | |||||
* | Improve polymatrix.ones and zeros | Nao Pross | 2024-05-27 | 1 | -4/+29 |
| | |||||
* | Add missing check for degrees in CombinationsExpr | Nao Pross | 2024-05-27 | 1 | -1/+7 |
| | |||||
* | Fix bug in SubtractionExpr | Nao Pross | 2024-05-27 | 1 | -1/+1 |
| | |||||
* | Expose polymatrix.ones and polymatrix.zeros to user | Nao Pross | 2024-05-27 | 3 | -2/+11 |
| | |||||
* | Update comments and some __str__ methods | Nao Pross | 2024-05-27 | 2 | -4/+8 |
| | |||||
* | Expose more form_* functions to users | Nao Pross | 2024-05-27 | 1 | -5/+13 |
| | |||||
* | Create NamedExpr and polymatrix.give_name to give shorter names to expressions | Nao Pross | 2024-05-27 | 5 | -0/+54 |
| | |||||
* | Fix pretty printing of PolyMatrix objects | Nao Pross | 2024-05-27 | 1 | -1/+6 |
| | |||||
* | Fix bug in Expression.__sub__, update other operator overloadings | Nao Pross | 2024-05-27 | 1 | -45/+41 |
| | | | | | Again, for pretty printing it is annyong to see that -2 * x becomes x * (-2) | ||||
* | Create NegationExpr for pretty printing | Nao Pross | 2024-05-27 | 4 | -8/+50 |
| | |||||
* | Clean up AdditionExpr, create SubtractinExpr for pretty printing | Nao Pross | 2024-05-27 | 5 | -11/+100 |
| | |||||
* | Fix bug in .diff() and add DerivativeExpr.__str__ | Nao Pross | 2024-05-27 | 2 | -3/+6 |
| | |||||
* | Add mypy as (optional) dev dependency, limit python version to < 4.0 | Nao Pross | 2024-05-27 | 1 | -1/+5 |
| | |||||
* | Add comment and exception for problematic edge case in from_any() | Nao Pross | 2024-05-27 | 1 | -0/+25 |
| | |||||
* | Fix bug in ParametrizeExprMixin | Nao Pross | 2024-05-27 | 1 | -1/+1 |
| | |||||
* | Fix bug in ExpressionState.get_variable_from_name_or | Nao Pross | 2024-05-27 | 1 | -1/+1 |
| | |||||
* | Fix bug in CombinationExprMixin | Nao Pross | 2024-05-27 | 1 | -3/+3 |
| | |||||
* | Create poly.arange and ARangeExprMixin | Nao Pross | 2024-05-27 | 6 | -4/+126 |
| | |||||
* | Create pretty printing functions for some polymatrix types | Nao Pross | 2024-05-26 | 3 | -3/+87 |
| |