Skip to content

Latest commit

 

History

History
1064 lines (896 loc) · 49.6 KB

ChangeLog.rst

File metadata and controls

1064 lines (896 loc) · 49.6 KB
.. cpp:namespace:: mod
.. py:currentmodule:: mod

Changes

develop

New Features

Bugs Fixed

v0.15.0 (2024-01-26)

Incompatible Changes

New Features

Bugs Fixed

v0.14.0 (2022-11-29)

Incompatible Changes

Doc, several pages have changed URL:

  • libmod/libmod.html to libmod/index.html
  • pymod/pymod.html to pymod/index.html
  • postmod/postmod.html to postmod/index.html
  • modWrapper/modWrapper.html to exe/index.html
  • epim/epim.html to epim/index.html
  • dataDesc/dataDesc.html to formats/index.html
  • dgStrat/dgStrat.html to dgStrat/index.html
  • As default, a Python package is now installed with pip which enables import of mod without extra PYTHONPATH manipulation. This may potentially clash with other packages of the same name. Use -DBUILD_PY_MOD_PIP=off for CMake to disable this (see :ref:`compiling`).
  • Due to a change in escaping of # characters in DG vertex/hyperedge labels when printing, some custom labels with additional escaping may need adjustment. See also the bug fix entry regarding this.
  • Bump Boost version required to 1.76 or higher to avoid an incompatibility with Python 3.10 (boostorg/python#344).

New Features

Bugs Fixed

v0.13.0 (2021-07-08)

Incompatible Changes

New Features

Bugs Fixed

Other

v0.12.0 (2021-01-18)

Incompatible Changes

New Features

Bugs Fixed

Other

  • Doc, rearrange and deduplicate documentation for graph interfaces in PyMØD. Introduce the :ref:`py-protocols` section which documents common protocols that several classes implement. The documentation of the following classes has been simplified by mostly referring to these protocols:
  • Doc, improve documentation of the graph interfaces of :py:class:`Rule`.

v0.11.0 (2020-08-31)

Incompatible Changes

New Features

Bugs Fixed

Other

v0.10.0 (2020-02-05)

Incompatible Changes

New Features

Bugs Fixed

Other

  • Various fixes for documentation formatting including new themeing.
  • Installation, highlight the more relevant CMAKE_PREFIX_PATH instead of CMAKE_PROGRAM_PATH.
  • Bump recommended lower bound on GCC version to 6.1 in the documentation.
  • Updated documentation for :cpp:class:`mod::Derivation`/:py:class:`Derivation`.
  • Documentation, added explicit example section.

v0.9.0 (2019-08-02)

Incompatible Changes

New Features

Bugs Fixed

  • Fixed off-by-one error in DG dump loading, dgDump/dg::DG::dump.
  • Fixed issues with auto in function signatures which is not yet in the C++ standard.

Other

v0.8.0 (2019-04-04)

Incompatible Changes

  • Now requires v0.3 of GraphCanon (and PermGroup).
  • graph::Graph::getMolarMass/Graph.molarMass has been removed.
  • Python interface: remove auto-generated hash-functions from all classes. Note, most code broken by this was already silemtly broken.
  • Python interface: consistently disable all custom attributes on all classes.
  • Removed dg::Strategy::GraphState::getHyperEdges/DGStratGraphState.hyperEdges. Use the graph interface of :cpp:any:`dg::DG`/:py:obj:`DG` instead.
  • All atoms, including hydrogens, are now present with ids in strings from :cpp:any:`graph::Graph::getSmilesWithIds`/:py:obj:`Graph.smilesWithIds`.
  • :cpp:any:`dg::DG::print`/:py:obj:`DG.print` now returns a pair of strings, instead of just one string. The first entry is the old return value. The second entry is the tex-file to depend on for layout coordinates.
  • SMILES parsing: disallow isotope 0 as it is equivalent to not specifying an isotope.
  • All classes in the Python interface without a custom hash function has their hash function removed. This is to prevent inconsistencies between hash and equality.

New Features

Bugs Fixed

Other

  • Now compiles with -fno-stack-protector (some OS distributions messes with default flags).
  • The Makefile from mod --get-latex now cleans .vrb, .snm, and .nav files as well.

v0.7.0 (2018-03-08)

Incompatible Changes

  • Boost >= 1.64 is now required.
  • Two new libraries, GraphCanon and PermGroup, are now required dependencies.
  • Sphinx 1.7.1 is now required for building the documentation.
  • :cpp:any:`dg::DG::HyperEdge::print`/:py:obj:`DGHyperEdge.print` now also takes an argument for colouring vertices/edges that are not matched by the rule. The default is now that matched vertices/edges are the default colour, while those that are not matched are grey.
  • Most of the outer interface headers have now been moved to subfolders, and their content has been moved to corresponding namespaces. Several classes has been slightly renamed during the move, and some headers has been split into multiple header files.
  • The previously deprecated class DerivationRef has now been removed along with DG.derivations in the Python interface.
  • The previously deprecated method DG.vertexGraphs in the Python interface has been removed.

New Features

Experimental New Features

Bugs Fixed

Other

  • The documentation now has a "Known Issues" section, describing an issue where post-processing may fail if pdflatex has been upgraded after installation

v0.6.0 (2016-12-22)

Incompatible Changes

  • A C++14 compiler is now required (e.g., GCC 5.1 or later).
  • The required Boost version is now either 1.59 or at least 1.61. Version 1.60 do not work due to boostorg/python#56.
  • Make filenames in post-processing more Latex friendly.
  • Rules specified in GML using constrainAdj must now enclose the operator in double quotes.
  • DG: remove most of the interface related to DerivationRef. Use the graph interface instead. E.g.,
  • Move the graph interface for DG and Graph into separate headers: DGGraphInterface.h and GraphGraphInterface.h.
  • Move GraphPrinter into a separate header.
  • Move DGPrinter and DGPrintData into a separate header.
  • All SBML features have been removed from the library.
  • The deprecated DG::printMatrix function has been removed.
  • dg::DG::calc/DG.calc will no longer print a message when it is done.
  • :cpp:any:`dg::DG::print`/:py:obj:`DG.print` by default now only prints the hypergraph rendering. (For now, set Config::DG::printNonHyper to enable printing of the non-hypergraph rendering)
  • :cpp:any:`graph::Graph::print`/:py:obj:`Graph.print` and :cpp:any:`rule::Rule::print`/:py:obj:`Rule.print` will now emit only one depiction when the two printers are equal.
  • :cpp:any:`rule::Rule::print`/:py:obj:`Rule.print`, change the default colours used to indicate changes. Now different colours are used in L, K, R.
  • :py:obj:`DGHyperEdge.print`, change the default match colour.
  • Add < operator to vertices and edges of Graph, Rule, and DG.

New Features

  • :cpp:any:`rule::Rule::makeInverse`/:py:obj:`Rule.makeInverse`.
  • Reimplementation of GML parsing. It is now less strict with respect to ordering.
  • Rule application constraint that checks the shortest path between two given vertices.
  • Interactive mode for the wrapper script (option -i). It will use IPython as interpreter if it is available.
  • The molecule model now includes radicals. The SMILES format has been extended to support radicals as well.
  • Plugin infrastructure to load additional Python modules when using the wrapper script.
  • Graph interface for rules: for a rule L \leftarrow K\rightarrow R, the three graphs can be accessed. The rule it self acts as the graph that is the pushout of the rule span.
  • Graph loading: the ids used in GML and GraphDFS, as well as the class labels in SMILES can now be converted into vertices for the loaded graphs. If the class labels of a SMILES string are not unique, then none of them are available for querying.
  • Add -v as alias for --version in the wrapper script.
  • Add quite mode, -q, to the wrapper script.
  • Add :cpp:any:`graph::Printer::setRotation`/:py:obj:`GraphPrinter.rotation`. Internally computed coordinates will be rotated by the set amount of degrees.

Bugs Fixed

  • operator<< for Derivation: only try to print the rule if there is one.
  • Properly throw an exception when graph GML parsing fails.
  • Don't throw an exception while throwing an exception when graphs are disconnected.
  • Fix bug in checking of certain constrainAdj during certain types of rule composition.
  • Properly handle empty vertex/hyperedge ranges for DGs. Thanks to Robert Haas for reporting.

v0.5.0 (2016-03-07)

Initial public version.