Skip to content

3.0

Compare
Choose a tag to compare
@JedS6391 JedS6391 released this 04 Nov 01:44
· 200 commits to develop since this release

Version 3.0 has some significant changes, primarily towards the facilitation of handling programs that have different output targets (e.g. single-output, multiple-output, custom).

The full set of changes is as described below:

Breaking changes:

  • Most of the core components in the system now require an extra type parameter: TOutput. This is used to determine what type of output the programs have, enabling programs with single and multiple outputs
  • Addition of classes/helpers to aid in handling programs with different numbers of outputs

The version has been bumped to 3.0 to reflect these breaking changes.

Enhancements/Additions:

  • New ExclusiveOr bitwise operation
  • Allow operations to be serialised with a toString method for easier program translation
  • New example problem FullAdder to demonstrate the use of multiple-output programs

Bug fixes:

  • Fix an issue where the Or operation was incorrectly performing a logical and
  • Address a logic error in the Island Migration implementation that could cause problems with certain configurations

Acknowledgements:

  • @HongyuJerryWang -- contributions to the implementation of multiple program outputs, full adder example, new operations, and bug fixes.