mosekcomodel 0.5.0

Library for Conic Optimization Modeling with Mosek
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
# Designs to reconsider

## References and move
Currently, we build Exprs by moving operands into the Expr structure. Consider using instead references:
- PROS:
  - Smaller memory use per expression
  - Resuse same sub-expression without copying
  - Won't have to clone operands.
- CONS:
  - Less clean syntax,
  - More complicated lifetimes of expressions, especially in the helper
    functions for things like multiplication and addition