|
6 | 6 | ==== |
7 | 7 | See :gg:`1`. |
8 | 8 |
|
| 9 | +v4.1.0 (13 Dec 2019, @ankostis): ChainMap Solution for PINs, stable TOPOLOGICAL sort |
| 10 | +===================================================================================== |
| 11 | +|v410-flowchart| |
| 12 | + |
| 13 | ++ FIX(NET): TOPOLOGICALLY-sort now break ties respecting operations insertion order. |
| 14 | + |
| 15 | ++ ENH(NET): new :class:`.Solution` class to collect all computation values, |
| 16 | + based on a :class:`collections.ChainMap` to distinguish outputs per operation executed: |
| 17 | + |
| 18 | + + ENH(NETOP): ``compute()`` return :class:`.Solution`, consolidating: |
| 19 | + |
| 20 | + + :term:`overwrites`, |
| 21 | + + ``executed`` operations, and |
| 22 | + + the generating :term:`plan`. |
| 23 | + |
| 24 | + + drop(net): ``_PinInstruction`` class is not needed. |
| 25 | + + drop(netop): `overwrites_collector` parameter; now in :meth:`.Solution.overwrites()`. |
| 26 | + + ENH(plot): ``Solution`` is also a :class:`.Plotter`; e.g. use ``sol.plot(...)```. |
| 27 | + |
| 28 | ++ DROP(plot): `executed` arg from plotting; now embeded in `solution`. |
| 29 | + |
| 30 | ++ ENH(PLOT.jupyter,doc): allow to set jupyter graph-styling selectively; |
| 31 | + fix instructions for jupyter cell-resizing. |
| 32 | + |
| 33 | ++ fix(plan): time-keeping worked only for sequential execution, not parallel. |
| 34 | + Refactor it to happen centrally. |
| 35 | + |
| 36 | ++ enh(NET,.TC): Add PREDICATE argument also for ``compile()``. |
| 37 | + |
| 38 | ++ FEAT(DOC): add GLOSSARY as new :ref:`arch` section, linked from API HEADERS. |
| 39 | + |
| 40 | + |
| 41 | + |
9 | 42 | v4.0.1 (12 Dec 2019, @ankostis): bugfix |
10 | 43 | ======================================= |
11 | 44 | + FIX(plan): ``plan.repr()`` was failing on empty plans. |
@@ -434,6 +467,9 @@ First public release in PyPi & GitHub. |
434 | 467 | :alt: sample graphkit plot |
435 | 468 | :width: 120px |
436 | 469 | :align: bottom |
| 470 | +.. |v410-flowchart| image:: docs/source/images/GraphtikFlowchart-v4.1.0.svg |
| 471 | + :alt: graphtik-v4.1.0 flowchart |
| 472 | + :scale: 75% |
437 | 473 | .. |v130-flowchart| image:: docs/source/images/GraphkitFlowchart-v1.3.0.svg |
438 | 474 | :alt: graphkit-v1.3.0 flowchart |
439 | 475 | :scale: 75% |
|
0 commit comments