New Features
- Add C++ `PartialProdNode`.
- Add `PartialProd` symbol.
- Add `axis` keyword argument to `ArraySymbol.prod()` method.
- Add integral, max and min to `ConcatenateNode`. See [\192](https://github.com/dwavesystems/dwave-optimization/issues/192).
- Support both lvalue and rvalue ranges in the constructor of the C++
`ArrayOutputMixin` class.
- Rework C++ `ReshapeNode` constructors to be more general.
- Support inferring the shape of one axis when reshaping array symbols
by providing `-1` for the dimension\'s shape.
- Support reshaping non-contiguous array symbols.
- Add C++ `CopyNode`. See [\16](https://github.com/dwavesystems/dwave-optimization/issues/16).
- Add `Copy` symbol. See [\16](https://github.com/dwavesystems/dwave-optimization/issues/16).
Bug Fixes {Release Notes_0.5.0-6_Bug Fixes}
- Previously, ``Constant`` symbols could be created from
data that contained NaNs or infinite float values. Since these
values, especially NaN, can cause issues during propagation when not
expected, they could cause the model to exhibit incorrect behavior.
As such, providing these values to initialize a ``Constant`` symbol is now disallowed.
- Add missing C++ `ReshapeNode::max()`, `::min()`, and `::integral()`
methods. Thereby allowing reshaped arrays to be used as indices.